io.kubernetes.client.openapi.models.V1CronJobSpecFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Integer;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Long;
import java.lang.Object;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1CronJobSpecFluent> extends BaseFluent{
public V1CronJobSpecFluent() {
}
public V1CronJobSpecFluent(V1CronJobSpec instance) {
this.copyInstance(instance);
}
private String concurrencyPolicy;
private Integer failedJobsHistoryLimit;
private V1JobTemplateSpecBuilder jobTemplate;
private String schedule;
private Long startingDeadlineSeconds;
private Integer successfulJobsHistoryLimit;
private Boolean suspend;
private String timeZone;
protected void copyInstance(V1CronJobSpec instance) {
instance = (instance != null ? instance : new V1CronJobSpec());
if (instance != null) {
this.withConcurrencyPolicy(instance.getConcurrencyPolicy());
this.withFailedJobsHistoryLimit(instance.getFailedJobsHistoryLimit());
this.withJobTemplate(instance.getJobTemplate());
this.withSchedule(instance.getSchedule());
this.withStartingDeadlineSeconds(instance.getStartingDeadlineSeconds());
this.withSuccessfulJobsHistoryLimit(instance.getSuccessfulJobsHistoryLimit());
this.withSuspend(instance.getSuspend());
this.withTimeZone(instance.getTimeZone());
}
}
public String getConcurrencyPolicy() {
return this.concurrencyPolicy;
}
public A withConcurrencyPolicy(String concurrencyPolicy) {
this.concurrencyPolicy = concurrencyPolicy;
return (A) this;
}
public boolean hasConcurrencyPolicy() {
return this.concurrencyPolicy != null;
}
public Integer getFailedJobsHistoryLimit() {
return this.failedJobsHistoryLimit;
}
public A withFailedJobsHistoryLimit(Integer failedJobsHistoryLimit) {
this.failedJobsHistoryLimit = failedJobsHistoryLimit;
return (A) this;
}
public boolean hasFailedJobsHistoryLimit() {
return this.failedJobsHistoryLimit != null;
}
public V1JobTemplateSpec buildJobTemplate() {
return this.jobTemplate != null ? this.jobTemplate.build() : null;
}
public A withJobTemplate(V1JobTemplateSpec jobTemplate) {
this._visitables.remove("jobTemplate");
if (jobTemplate != null) {
this.jobTemplate = new V1JobTemplateSpecBuilder(jobTemplate);
this._visitables.get("jobTemplate").add(this.jobTemplate);
} else {
this.jobTemplate = null;
this._visitables.get("jobTemplate").remove(this.jobTemplate);
}
return (A) this;
}
public boolean hasJobTemplate() {
return this.jobTemplate != null;
}
public JobTemplateNested withNewJobTemplate() {
return new JobTemplateNested(null);
}
public JobTemplateNested withNewJobTemplateLike(V1JobTemplateSpec item) {
return new JobTemplateNested(item);
}
public JobTemplateNested editJobTemplate() {
return withNewJobTemplateLike(java.util.Optional.ofNullable(buildJobTemplate()).orElse(null));
}
public JobTemplateNested editOrNewJobTemplate() {
return withNewJobTemplateLike(java.util.Optional.ofNullable(buildJobTemplate()).orElse(new V1JobTemplateSpecBuilder().build()));
}
public JobTemplateNested editOrNewJobTemplateLike(V1JobTemplateSpec item) {
return withNewJobTemplateLike(java.util.Optional.ofNullable(buildJobTemplate()).orElse(item));
}
public String getSchedule() {
return this.schedule;
}
public A withSchedule(String schedule) {
this.schedule = schedule;
return (A) this;
}
public boolean hasSchedule() {
return this.schedule != null;
}
public Long getStartingDeadlineSeconds() {
return this.startingDeadlineSeconds;
}
public A withStartingDeadlineSeconds(Long startingDeadlineSeconds) {
this.startingDeadlineSeconds = startingDeadlineSeconds;
return (A) this;
}
public boolean hasStartingDeadlineSeconds() {
return this.startingDeadlineSeconds != null;
}
public Integer getSuccessfulJobsHistoryLimit() {
return this.successfulJobsHistoryLimit;
}
public A withSuccessfulJobsHistoryLimit(Integer successfulJobsHistoryLimit) {
this.successfulJobsHistoryLimit = successfulJobsHistoryLimit;
return (A) this;
}
public boolean hasSuccessfulJobsHistoryLimit() {
return this.successfulJobsHistoryLimit != null;
}
public Boolean getSuspend() {
return this.suspend;
}
public A withSuspend(Boolean suspend) {
this.suspend = suspend;
return (A) this;
}
public boolean hasSuspend() {
return this.suspend != null;
}
public String getTimeZone() {
return this.timeZone;
}
public A withTimeZone(String timeZone) {
this.timeZone = timeZone;
return (A) this;
}
public boolean hasTimeZone() {
return this.timeZone != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1CronJobSpecFluent that = (V1CronJobSpecFluent) o;
if (!java.util.Objects.equals(concurrencyPolicy, that.concurrencyPolicy)) return false;
if (!java.util.Objects.equals(failedJobsHistoryLimit, that.failedJobsHistoryLimit)) return false;
if (!java.util.Objects.equals(jobTemplate, that.jobTemplate)) return false;
if (!java.util.Objects.equals(schedule, that.schedule)) return false;
if (!java.util.Objects.equals(startingDeadlineSeconds, that.startingDeadlineSeconds)) return false;
if (!java.util.Objects.equals(successfulJobsHistoryLimit, that.successfulJobsHistoryLimit)) return false;
if (!java.util.Objects.equals(suspend, that.suspend)) return false;
if (!java.util.Objects.equals(timeZone, that.timeZone)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(concurrencyPolicy, failedJobsHistoryLimit, jobTemplate, schedule, startingDeadlineSeconds, successfulJobsHistoryLimit, suspend, timeZone, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (concurrencyPolicy != null) { sb.append("concurrencyPolicy:"); sb.append(concurrencyPolicy + ","); }
if (failedJobsHistoryLimit != null) { sb.append("failedJobsHistoryLimit:"); sb.append(failedJobsHistoryLimit + ","); }
if (jobTemplate != null) { sb.append("jobTemplate:"); sb.append(jobTemplate + ","); }
if (schedule != null) { sb.append("schedule:"); sb.append(schedule + ","); }
if (startingDeadlineSeconds != null) { sb.append("startingDeadlineSeconds:"); sb.append(startingDeadlineSeconds + ","); }
if (successfulJobsHistoryLimit != null) { sb.append("successfulJobsHistoryLimit:"); sb.append(successfulJobsHistoryLimit + ","); }
if (suspend != null) { sb.append("suspend:"); sb.append(suspend + ","); }
if (timeZone != null) { sb.append("timeZone:"); sb.append(timeZone); }
sb.append("}");
return sb.toString();
}
public A withSuspend() {
return withSuspend(true);
}
public class JobTemplateNested extends V1JobTemplateSpecFluent> implements Nested{
JobTemplateNested(V1JobTemplateSpec item) {
this.builder = new V1JobTemplateSpecBuilder(this, item);
}
V1JobTemplateSpecBuilder builder;
public N and() {
return (N) V1CronJobSpecFluent.this.withJobTemplate(builder.build());
}
public N endJobTemplate() {
return and();
}
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy