All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1SecretFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import java.lang.StringBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;

public class V1SecretFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1SecretFluent {

    private String apiVersion;
    private Map data;
    private Boolean immutable;
    private String kind;
    private V1ObjectMetaBuilder metadata;
    private Map stringData;
    private String type;

    public V1SecretFluentImpl() { 
    }


    public V1SecretFluentImpl(V1Secret instance) { 
        this.withApiVersion(instance.getApiVersion());

        this.withData(instance.getData());

        this.withImmutable(instance.getImmutable());

        this.withKind(instance.getKind());

        this.withMetadata(instance.getMetadata());

        this.withStringData(instance.getStringData());

        this.withType(instance.getType());

    }


    public String getApiVersion() {
        return this.apiVersion;
    }

    public A withApiVersion(String apiVersion) {
        this.apiVersion=apiVersion; return (A) this;
    }

    public Boolean hasApiVersion() {
        return this.apiVersion != null;
    }

    public A withNewApiVersion(String arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuilder arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuffer arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A addToData(String key,byte[] value) {
        if(this.data == null && key != null && value != null) { this.data = new LinkedHashMap(); }
        if(key != null && value != null) {this.data.put(key, value);} return (A)this;
    }

    public A addToData(Map map) {
        if(this.data == null && map != null) { this.data = new LinkedHashMap(); }
        if(map != null) { this.data.putAll(map);} return (A)this;
    }

    public A removeFromData(String key) {
        if(this.data == null) { return (A) this; }
        if(key != null && this.data != null) {this.data.remove(key);} return (A)this;
    }

    public A removeFromData(Map map) {
        if(this.data == null) { return (A) this; }
        if(map != null) { for(Object key : map.keySet()) {if (this.data != null){this.data.remove(key);}}} return (A)this;
    }

    public Map getData() {
        return this.data;
    }

    public A withData(Map data) {
        if (data == null) { this.data =  null;} else {this.data = new LinkedHashMap(data);} return (A) this;
    }

    public Boolean hasData() {
        return this.data != null;
    }

    public Boolean isImmutable() {
        return this.immutable;
    }

    public A withImmutable(Boolean immutable) {
        this.immutable=immutable; return (A) this;
    }

    public Boolean hasImmutable() {
        return this.immutable != null;
    }

    public A withNewImmutable(String arg1) {
        return (A)withImmutable(new Boolean(arg1));
    }

    public A withNewImmutable(boolean arg1) {
        return (A)withImmutable(new Boolean(arg1));
    }

    public String getKind() {
        return this.kind;
    }

    public A withKind(String kind) {
        this.kind=kind; return (A) this;
    }

    public Boolean hasKind() {
        return this.kind != null;
    }

    public A withNewKind(String arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuilder arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuffer arg1) {
        return (A)withKind(new String(arg1));
    }

    
/**
 * This method has been deprecated, please use method buildMetadata instead.
 * @return The buildable object.
 */
@Deprecated public V1ObjectMeta getMetadata() {
        return this.metadata!=null?this.metadata.build():null;
    }

    public V1ObjectMeta buildMetadata() {
        return this.metadata!=null?this.metadata.build():null;
    }

    public A withMetadata(V1ObjectMeta metadata) {
        _visitables.get("metadata").remove(this.metadata);
        if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} return (A) this;
    }

    public Boolean hasMetadata() {
        return this.metadata != null;
    }

    public V1SecretFluent.MetadataNested withNewMetadata() {
        return new MetadataNestedImpl();
    }

    public V1SecretFluent.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
        return new MetadataNestedImpl(item);
    }

    public V1SecretFluent.MetadataNested editMetadata() {
        return withNewMetadataLike(getMetadata());
    }

    public V1SecretFluent.MetadataNested editOrNewMetadata() {
        return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
    }

    public V1SecretFluent.MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
        return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
    }

    public A addToStringData(String key,String value) {
        if(this.stringData == null && key != null && value != null) { this.stringData = new LinkedHashMap(); }
        if(key != null && value != null) {this.stringData.put(key, value);} return (A)this;
    }

    public A addToStringData(Map map) {
        if(this.stringData == null && map != null) { this.stringData = new LinkedHashMap(); }
        if(map != null) { this.stringData.putAll(map);} return (A)this;
    }

    public A removeFromStringData(String key) {
        if(this.stringData == null) { return (A) this; }
        if(key != null && this.stringData != null) {this.stringData.remove(key);} return (A)this;
    }

    public A removeFromStringData(Map map) {
        if(this.stringData == null) { return (A) this; }
        if(map != null) { for(Object key : map.keySet()) {if (this.stringData != null){this.stringData.remove(key);}}} return (A)this;
    }

    public Map getStringData() {
        return this.stringData;
    }

    public A withStringData(Map stringData) {
        if (stringData == null) { this.stringData =  null;} else {this.stringData = new LinkedHashMap(stringData);} return (A) this;
    }

    public Boolean hasStringData() {
        return this.stringData != null;
    }

    public String getType() {
        return this.type;
    }

    public A withType(String type) {
        this.type=type; return (A) this;
    }

    public Boolean hasType() {
        return this.type != null;
    }

    public A withNewType(String arg1) {
        return (A)withType(new String(arg1));
    }

    public A withNewType(StringBuilder arg1) {
        return (A)withType(new String(arg1));
    }

    public A withNewType(StringBuffer arg1) {
        return (A)withType(new String(arg1));
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        V1SecretFluentImpl that = (V1SecretFluentImpl) o;
        if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
        if (data != null ? !data.equals(that.data) :that.data != null) return false;
        if (immutable != null ? !immutable.equals(that.immutable) :that.immutable != null) return false;
        if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
        if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
        if (stringData != null ? !stringData.equals(that.stringData) :that.stringData != null) return false;
        if (type != null ? !type.equals(that.type) :that.type != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(apiVersion,  data,  immutable,  kind,  metadata,  stringData,  type,  super.hashCode());
    }

    public class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1SecretFluent.MetadataNested,io.kubernetes.client.fluent.Nested {
        private final V1ObjectMetaBuilder builder;

        MetadataNestedImpl(V1ObjectMeta item) {
            this.builder = new V1ObjectMetaBuilder(this, item);
        }

        MetadataNestedImpl() {
            this.builder = new V1ObjectMetaBuilder(this);
        }

        public N and() {
             return (N) V1SecretFluentImpl.this.withMetadata(builder.build());
        }

        public N endMetadata() {
             return and();
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy