
io.kubernetes.client.models.V1alpha1PodPresetSpec Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.kubernetes.client.models.V1EnvFromSource;
import io.kubernetes.client.models.V1EnvVar;
import io.kubernetes.client.models.V1LabelSelector;
import io.kubernetes.client.models.V1Volume;
import io.kubernetes.client.models.V1VolumeMount;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* PodPresetSpec is a description of a pod preset.
*/
@ApiModel(description = "PodPresetSpec is a description of a pod preset.")
public class V1alpha1PodPresetSpec {
@SerializedName("env")
private List env = null;
@SerializedName("envFrom")
private List envFrom = null;
@SerializedName("selector")
private V1LabelSelector selector = null;
@SerializedName("volumeMounts")
private List volumeMounts = null;
@SerializedName("volumes")
private List volumes = null;
public V1alpha1PodPresetSpec env(List env) {
this.env = env;
return this;
}
public V1alpha1PodPresetSpec addEnvItem(V1EnvVar envItem) {
if (this.env == null) {
this.env = new ArrayList();
}
this.env.add(envItem);
return this;
}
/**
* Env defines the collection of EnvVar to inject into containers.
* @return env
**/
@ApiModelProperty(value = "Env defines the collection of EnvVar to inject into containers.")
public List getEnv() {
return env;
}
public void setEnv(List env) {
this.env = env;
}
public V1alpha1PodPresetSpec envFrom(List envFrom) {
this.envFrom = envFrom;
return this;
}
public V1alpha1PodPresetSpec addEnvFromItem(V1EnvFromSource envFromItem) {
if (this.envFrom == null) {
this.envFrom = new ArrayList();
}
this.envFrom.add(envFromItem);
return this;
}
/**
* EnvFrom defines the collection of EnvFromSource to inject into containers.
* @return envFrom
**/
@ApiModelProperty(value = "EnvFrom defines the collection of EnvFromSource to inject into containers.")
public List getEnvFrom() {
return envFrom;
}
public void setEnvFrom(List envFrom) {
this.envFrom = envFrom;
}
public V1alpha1PodPresetSpec selector(V1LabelSelector selector) {
this.selector = selector;
return this;
}
/**
* Selector is a label query over a set of resources, in this case pods. Required.
* @return selector
**/
@ApiModelProperty(value = "Selector is a label query over a set of resources, in this case pods. Required.")
public V1LabelSelector getSelector() {
return selector;
}
public void setSelector(V1LabelSelector selector) {
this.selector = selector;
}
public V1alpha1PodPresetSpec volumeMounts(List volumeMounts) {
this.volumeMounts = volumeMounts;
return this;
}
public V1alpha1PodPresetSpec addVolumeMountsItem(V1VolumeMount volumeMountsItem) {
if (this.volumeMounts == null) {
this.volumeMounts = new ArrayList();
}
this.volumeMounts.add(volumeMountsItem);
return this;
}
/**
* VolumeMounts defines the collection of VolumeMount to inject into containers.
* @return volumeMounts
**/
@ApiModelProperty(value = "VolumeMounts defines the collection of VolumeMount to inject into containers.")
public List getVolumeMounts() {
return volumeMounts;
}
public void setVolumeMounts(List volumeMounts) {
this.volumeMounts = volumeMounts;
}
public V1alpha1PodPresetSpec volumes(List volumes) {
this.volumes = volumes;
return this;
}
public V1alpha1PodPresetSpec addVolumesItem(V1Volume volumesItem) {
if (this.volumes == null) {
this.volumes = new ArrayList();
}
this.volumes.add(volumesItem);
return this;
}
/**
* Volumes defines the collection of Volume to inject into the pod.
* @return volumes
**/
@ApiModelProperty(value = "Volumes defines the collection of Volume to inject into the pod.")
public List getVolumes() {
return volumes;
}
public void setVolumes(List volumes) {
this.volumes = volumes;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1alpha1PodPresetSpec v1alpha1PodPresetSpec = (V1alpha1PodPresetSpec) o;
return Objects.equals(this.env, v1alpha1PodPresetSpec.env) &&
Objects.equals(this.envFrom, v1alpha1PodPresetSpec.envFrom) &&
Objects.equals(this.selector, v1alpha1PodPresetSpec.selector) &&
Objects.equals(this.volumeMounts, v1alpha1PodPresetSpec.volumeMounts) &&
Objects.equals(this.volumes, v1alpha1PodPresetSpec.volumes);
}
@Override
public int hashCode() {
return Objects.hash(env, envFrom, selector, volumeMounts, volumes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1alpha1PodPresetSpec {\n");
sb.append(" env: ").append(toIndentedString(env)).append("\n");
sb.append(" envFrom: ").append(toIndentedString(envFrom)).append("\n");
sb.append(" selector: ").append(toIndentedString(selector)).append("\n");
sb.append(" volumeMounts: ").append(toIndentedString(volumeMounts)).append("\n");
sb.append(" volumes: ").append(toIndentedString(volumes)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy