annotations.io.fabric8.kubernetes.api.model.PodFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Nested;
import io.fabric8.common.Fluent;
public class PodFluent> implements Fluent{
private Pod.ApiVersion apiVersion ;
private String kind ;
private ObjectMeta metadata ;
private PodSpec spec ;
private PodStatus status ;
private Map additionalProperties = new HashMap();
public Pod.ApiVersion getApiVersion(){
return this.apiVersion;
}
public T withApiVersion(Pod.ApiVersion apiVersion){
this.apiVersion=apiVersion; return (T) this;
}
public String getKind(){
return this.kind;
}
public T withKind(String kind){
this.kind=kind; return (T) this;
}
public ObjectMeta getMetadata(){
return this.metadata;
}
public T withMetadata(ObjectMeta metadata){
this.metadata=metadata; return (T) this;
}
public PodSpec getSpec(){
return this.spec;
}
public T withSpec(PodSpec spec){
this.spec=spec; return (T) this;
}
public PodStatus getStatus(){
return this.status;
}
public T withStatus(PodStatus status){
this.status=status; return (T) this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties(Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public MetadataNested withNewMetadata(){
return new MetadataNested();
}
public SpecNested withNewSpec(){
return new SpecNested();
}
public T addToAdditionalProperties(String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
public class MetadataNested extends ObjectMetaFluent> implements Nested{
private final ObjectMetaBuilder builder = new ObjectMetaBuilder(this);
public N and(){
return (N) PodFluent.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
public class SpecNested extends PodSpecFluent> implements Nested{
private final PodSpecBuilder builder = new PodSpecBuilder(this);
public N and(){
return (N) PodFluent.this.withSpec(builder.build());
}
public N endSpec(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy