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

io.kubernetes.client.openapi.models.CoreV1EventFluentImpl 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.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.StringBuffer;
import java.time.OffsetDateTime;
import java.lang.Object;

public class CoreV1EventFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements CoreV1EventFluent {

    private String action;
    private String apiVersion;
    private Integer count;
    private OffsetDateTime eventTime;
    private OffsetDateTime firstTimestamp;
    private V1ObjectReferenceBuilder involvedObject;
    private String kind;
    private OffsetDateTime lastTimestamp;
    private String message;
    private V1ObjectMetaBuilder metadata;
    private String reason;
    private V1ObjectReferenceBuilder related;
    private String reportingComponent;
    private String reportingInstance;
    private CoreV1EventSeriesBuilder series;
    private V1EventSourceBuilder source;
    private String type;

    public CoreV1EventFluentImpl() { 
    }


    public CoreV1EventFluentImpl(CoreV1Event instance) { 
        this.withAction(instance.getAction());

        this.withApiVersion(instance.getApiVersion());

        this.withCount(instance.getCount());

        this.withEventTime(instance.getEventTime());

        this.withFirstTimestamp(instance.getFirstTimestamp());

        this.withInvolvedObject(instance.getInvolvedObject());

        this.withKind(instance.getKind());

        this.withLastTimestamp(instance.getLastTimestamp());

        this.withMessage(instance.getMessage());

        this.withMetadata(instance.getMetadata());

        this.withReason(instance.getReason());

        this.withRelated(instance.getRelated());

        this.withReportingComponent(instance.getReportingComponent());

        this.withReportingInstance(instance.getReportingInstance());

        this.withSeries(instance.getSeries());

        this.withSource(instance.getSource());

        this.withType(instance.getType());

    }


    public String getAction() {
        return this.action;
    }

    public A withAction(String action) {
        this.action=action; return (A) this;
    }

    public Boolean hasAction() {
        return this.action != null;
    }

    public A withNewAction(String arg1) {
        return (A)withAction(new String(arg1));
    }

    public A withNewAction(StringBuilder arg1) {
        return (A)withAction(new String(arg1));
    }

    public A withNewAction(StringBuffer arg1) {
        return (A)withAction(new String(arg1));
    }

    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 Integer getCount() {
        return this.count;
    }

    public A withCount(Integer count) {
        this.count=count; return (A) this;
    }

    public Boolean hasCount() {
        return this.count != null;
    }

    public OffsetDateTime getEventTime() {
        return this.eventTime;
    }

    public A withEventTime(OffsetDateTime eventTime) {
        this.eventTime=eventTime; return (A) this;
    }

    public Boolean hasEventTime() {
        return this.eventTime != null;
    }

    public OffsetDateTime getFirstTimestamp() {
        return this.firstTimestamp;
    }

    public A withFirstTimestamp(OffsetDateTime firstTimestamp) {
        this.firstTimestamp=firstTimestamp; return (A) this;
    }

    public Boolean hasFirstTimestamp() {
        return this.firstTimestamp != null;
    }

    
/**
 * This method has been deprecated, please use method buildInvolvedObject instead.
 * @return The buildable object.
 */
@Deprecated public V1ObjectReference getInvolvedObject() {
        return this.involvedObject!=null?this.involvedObject.build():null;
    }

    public V1ObjectReference buildInvolvedObject() {
        return this.involvedObject!=null?this.involvedObject.build():null;
    }

    public A withInvolvedObject(V1ObjectReference involvedObject) {
        _visitables.get("involvedObject").remove(this.involvedObject);
        if (involvedObject!=null){ this.involvedObject= new V1ObjectReferenceBuilder(involvedObject); _visitables.get("involvedObject").add(this.involvedObject);} return (A) this;
    }

    public Boolean hasInvolvedObject() {
        return this.involvedObject != null;
    }

    public CoreV1EventFluent.InvolvedObjectNested withNewInvolvedObject() {
        return new InvolvedObjectNestedImpl();
    }

    public CoreV1EventFluent.InvolvedObjectNested withNewInvolvedObjectLike(V1ObjectReference item) {
        return new InvolvedObjectNestedImpl(item);
    }

    public CoreV1EventFluent.InvolvedObjectNested editInvolvedObject() {
        return withNewInvolvedObjectLike(getInvolvedObject());
    }

    public CoreV1EventFluent.InvolvedObjectNested editOrNewInvolvedObject() {
        return withNewInvolvedObjectLike(getInvolvedObject() != null ? getInvolvedObject(): new V1ObjectReferenceBuilder().build());
    }

    public CoreV1EventFluent.InvolvedObjectNested editOrNewInvolvedObjectLike(V1ObjectReference item) {
        return withNewInvolvedObjectLike(getInvolvedObject() != null ? getInvolvedObject(): item);
    }

    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));
    }

    public OffsetDateTime getLastTimestamp() {
        return this.lastTimestamp;
    }

    public A withLastTimestamp(OffsetDateTime lastTimestamp) {
        this.lastTimestamp=lastTimestamp; return (A) this;
    }

    public Boolean hasLastTimestamp() {
        return this.lastTimestamp != null;
    }

    public String getMessage() {
        return this.message;
    }

    public A withMessage(String message) {
        this.message=message; return (A) this;
    }

    public Boolean hasMessage() {
        return this.message != null;
    }

    public A withNewMessage(String arg1) {
        return (A)withMessage(new String(arg1));
    }

    public A withNewMessage(StringBuilder arg1) {
        return (A)withMessage(new String(arg1));
    }

    public A withNewMessage(StringBuffer arg1) {
        return (A)withMessage(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 CoreV1EventFluent.MetadataNested withNewMetadata() {
        return new MetadataNestedImpl();
    }

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

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

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

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

    public String getReason() {
        return this.reason;
    }

    public A withReason(String reason) {
        this.reason=reason; return (A) this;
    }

    public Boolean hasReason() {
        return this.reason != null;
    }

    public A withNewReason(String arg1) {
        return (A)withReason(new String(arg1));
    }

    public A withNewReason(StringBuilder arg1) {
        return (A)withReason(new String(arg1));
    }

    public A withNewReason(StringBuffer arg1) {
        return (A)withReason(new String(arg1));
    }

    
/**
 * This method has been deprecated, please use method buildRelated instead.
 * @return The buildable object.
 */
@Deprecated public V1ObjectReference getRelated() {
        return this.related!=null?this.related.build():null;
    }

    public V1ObjectReference buildRelated() {
        return this.related!=null?this.related.build():null;
    }

    public A withRelated(V1ObjectReference related) {
        _visitables.get("related").remove(this.related);
        if (related!=null){ this.related= new V1ObjectReferenceBuilder(related); _visitables.get("related").add(this.related);} return (A) this;
    }

    public Boolean hasRelated() {
        return this.related != null;
    }

    public CoreV1EventFluent.RelatedNested withNewRelated() {
        return new RelatedNestedImpl();
    }

    public CoreV1EventFluent.RelatedNested withNewRelatedLike(V1ObjectReference item) {
        return new RelatedNestedImpl(item);
    }

    public CoreV1EventFluent.RelatedNested editRelated() {
        return withNewRelatedLike(getRelated());
    }

    public CoreV1EventFluent.RelatedNested editOrNewRelated() {
        return withNewRelatedLike(getRelated() != null ? getRelated(): new V1ObjectReferenceBuilder().build());
    }

    public CoreV1EventFluent.RelatedNested editOrNewRelatedLike(V1ObjectReference item) {
        return withNewRelatedLike(getRelated() != null ? getRelated(): item);
    }

    public String getReportingComponent() {
        return this.reportingComponent;
    }

    public A withReportingComponent(String reportingComponent) {
        this.reportingComponent=reportingComponent; return (A) this;
    }

    public Boolean hasReportingComponent() {
        return this.reportingComponent != null;
    }

    public A withNewReportingComponent(String arg1) {
        return (A)withReportingComponent(new String(arg1));
    }

    public A withNewReportingComponent(StringBuilder arg1) {
        return (A)withReportingComponent(new String(arg1));
    }

    public A withNewReportingComponent(StringBuffer arg1) {
        return (A)withReportingComponent(new String(arg1));
    }

    public String getReportingInstance() {
        return this.reportingInstance;
    }

    public A withReportingInstance(String reportingInstance) {
        this.reportingInstance=reportingInstance; return (A) this;
    }

    public Boolean hasReportingInstance() {
        return this.reportingInstance != null;
    }

    public A withNewReportingInstance(String arg1) {
        return (A)withReportingInstance(new String(arg1));
    }

    public A withNewReportingInstance(StringBuilder arg1) {
        return (A)withReportingInstance(new String(arg1));
    }

    public A withNewReportingInstance(StringBuffer arg1) {
        return (A)withReportingInstance(new String(arg1));
    }

    
/**
 * This method has been deprecated, please use method buildSeries instead.
 * @return The buildable object.
 */
@Deprecated public CoreV1EventSeries getSeries() {
        return this.series!=null?this.series.build():null;
    }

    public CoreV1EventSeries buildSeries() {
        return this.series!=null?this.series.build():null;
    }

    public A withSeries(CoreV1EventSeries series) {
        _visitables.get("series").remove(this.series);
        if (series!=null){ this.series= new CoreV1EventSeriesBuilder(series); _visitables.get("series").add(this.series);} return (A) this;
    }

    public Boolean hasSeries() {
        return this.series != null;
    }

    public CoreV1EventFluent.SeriesNested withNewSeries() {
        return new SeriesNestedImpl();
    }

    public CoreV1EventFluent.SeriesNested withNewSeriesLike(CoreV1EventSeries item) {
        return new SeriesNestedImpl(item);
    }

    public CoreV1EventFluent.SeriesNested editSeries() {
        return withNewSeriesLike(getSeries());
    }

    public CoreV1EventFluent.SeriesNested editOrNewSeries() {
        return withNewSeriesLike(getSeries() != null ? getSeries(): new CoreV1EventSeriesBuilder().build());
    }

    public CoreV1EventFluent.SeriesNested editOrNewSeriesLike(CoreV1EventSeries item) {
        return withNewSeriesLike(getSeries() != null ? getSeries(): item);
    }

    
/**
 * This method has been deprecated, please use method buildSource instead.
 * @return The buildable object.
 */
@Deprecated public V1EventSource getSource() {
        return this.source!=null?this.source.build():null;
    }

    public V1EventSource buildSource() {
        return this.source!=null?this.source.build():null;
    }

    public A withSource(V1EventSource source) {
        _visitables.get("source").remove(this.source);
        if (source!=null){ this.source= new V1EventSourceBuilder(source); _visitables.get("source").add(this.source);} return (A) this;
    }

    public Boolean hasSource() {
        return this.source != null;
    }

    public CoreV1EventFluent.SourceNested withNewSource() {
        return new SourceNestedImpl();
    }

    public CoreV1EventFluent.SourceNested withNewSourceLike(V1EventSource item) {
        return new SourceNestedImpl(item);
    }

    public CoreV1EventFluent.SourceNested editSource() {
        return withNewSourceLike(getSource());
    }

    public CoreV1EventFluent.SourceNested editOrNewSource() {
        return withNewSourceLike(getSource() != null ? getSource(): new V1EventSourceBuilder().build());
    }

    public CoreV1EventFluent.SourceNested editOrNewSourceLike(V1EventSource item) {
        return withNewSourceLike(getSource() != null ? getSource(): item);
    }

    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;
        CoreV1EventFluentImpl that = (CoreV1EventFluentImpl) o;
        if (action != null ? !action.equals(that.action) :that.action != null) return false;
        if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
        if (count != null ? !count.equals(that.count) :that.count != null) return false;
        if (eventTime != null ? !eventTime.equals(that.eventTime) :that.eventTime != null) return false;
        if (firstTimestamp != null ? !firstTimestamp.equals(that.firstTimestamp) :that.firstTimestamp != null) return false;
        if (involvedObject != null ? !involvedObject.equals(that.involvedObject) :that.involvedObject != null) return false;
        if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
        if (lastTimestamp != null ? !lastTimestamp.equals(that.lastTimestamp) :that.lastTimestamp != null) return false;
        if (message != null ? !message.equals(that.message) :that.message != null) return false;
        if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
        if (reason != null ? !reason.equals(that.reason) :that.reason != null) return false;
        if (related != null ? !related.equals(that.related) :that.related != null) return false;
        if (reportingComponent != null ? !reportingComponent.equals(that.reportingComponent) :that.reportingComponent != null) return false;
        if (reportingInstance != null ? !reportingInstance.equals(that.reportingInstance) :that.reportingInstance != null) return false;
        if (series != null ? !series.equals(that.series) :that.series != null) return false;
        if (source != null ? !source.equals(that.source) :that.source != 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(action,  apiVersion,  count,  eventTime,  firstTimestamp,  involvedObject,  kind,  lastTimestamp,  message,  metadata,  reason,  related,  reportingComponent,  reportingInstance,  series,  source,  type,  super.hashCode());
    }

    public class InvolvedObjectNestedImpl extends V1ObjectReferenceFluentImpl> implements CoreV1EventFluent.InvolvedObjectNested,io.kubernetes.client.fluent.Nested {
        private final V1ObjectReferenceBuilder builder;

        InvolvedObjectNestedImpl(V1ObjectReference item) {
            this.builder = new V1ObjectReferenceBuilder(this, item);
        }

        InvolvedObjectNestedImpl() {
            this.builder = new V1ObjectReferenceBuilder(this);
        }

        public N and() {
             return (N) CoreV1EventFluentImpl.this.withInvolvedObject(builder.build());
        }

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


    public class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements CoreV1EventFluent.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) CoreV1EventFluentImpl.this.withMetadata(builder.build());
        }

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


    public class RelatedNestedImpl extends V1ObjectReferenceFluentImpl> implements CoreV1EventFluent.RelatedNested,io.kubernetes.client.fluent.Nested {
        private final V1ObjectReferenceBuilder builder;

        RelatedNestedImpl(V1ObjectReference item) {
            this.builder = new V1ObjectReferenceBuilder(this, item);
        }

        RelatedNestedImpl() {
            this.builder = new V1ObjectReferenceBuilder(this);
        }

        public N and() {
             return (N) CoreV1EventFluentImpl.this.withRelated(builder.build());
        }

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


    public class SeriesNestedImpl extends CoreV1EventSeriesFluentImpl> implements CoreV1EventFluent.SeriesNested,io.kubernetes.client.fluent.Nested {
        private final CoreV1EventSeriesBuilder builder;

        SeriesNestedImpl(CoreV1EventSeries item) {
            this.builder = new CoreV1EventSeriesBuilder(this, item);
        }

        SeriesNestedImpl() {
            this.builder = new CoreV1EventSeriesBuilder(this);
        }

        public N and() {
             return (N) CoreV1EventFluentImpl.this.withSeries(builder.build());
        }

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


    public class SourceNestedImpl extends V1EventSourceFluentImpl> implements CoreV1EventFluent.SourceNested,io.kubernetes.client.fluent.Nested {
        private final V1EventSourceBuilder builder;

        SourceNestedImpl(V1EventSource item) {
            this.builder = new V1EventSourceBuilder(this, item);
        }

        SourceNestedImpl() {
            this.builder = new V1EventSourceBuilder(this);
        }

        public N and() {
             return (N) CoreV1EventFluentImpl.this.withSource(builder.build());
        }

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy