io.fabric8.certmanager.api.model.acme.v1.ACMEChallengeSolverHTTP01IngressPodSpecFluent Maven / Gradle / Ivy
The newest version!
package io.fabric8.certmanager.api.model.acme.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.ArrayList;
import java.lang.String;
import io.fabric8.kubernetes.api.model.LocalObjectReferenceBuilder;
import java.util.LinkedHashMap;
import java.util.function.Predicate;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.Toleration;
import java.lang.Long;
import java.util.Iterator;
import io.fabric8.kubernetes.api.model.Affinity;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.util.Map;
import io.fabric8.kubernetes.api.model.LocalObjectReferenceFluent;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class ACMEChallengeSolverHTTP01IngressPodSpecFluent> extends BaseFluent{
public ACMEChallengeSolverHTTP01IngressPodSpecFluent() {
}
public ACMEChallengeSolverHTTP01IngressPodSpecFluent(ACMEChallengeSolverHTTP01IngressPodSpec instance) {
this.copyInstance(instance);
}
private Affinity affinity;
private ArrayList imagePullSecrets = new ArrayList();
private Map nodeSelector;
private String priorityClassName;
private String serviceAccountName;
private List tolerations = new ArrayList();
private Map additionalProperties;
protected void copyInstance(ACMEChallengeSolverHTTP01IngressPodSpec instance) {
instance = (instance != null ? instance : new ACMEChallengeSolverHTTP01IngressPodSpec());
if (instance != null) {
this.withAffinity(instance.getAffinity());
this.withImagePullSecrets(instance.getImagePullSecrets());
this.withNodeSelector(instance.getNodeSelector());
this.withPriorityClassName(instance.getPriorityClassName());
this.withServiceAccountName(instance.getServiceAccountName());
this.withTolerations(instance.getTolerations());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public Affinity getAffinity() {
return this.affinity;
}
public A withAffinity(Affinity affinity) {
this.affinity = affinity;
return (A) this;
}
public boolean hasAffinity() {
return this.affinity != null;
}
public A addToImagePullSecrets(int index,LocalObjectReference item) {
if (this.imagePullSecrets == null) {this.imagePullSecrets = new ArrayList();}
LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);
if (index < 0 || index >= imagePullSecrets.size()) { _visitables.get("imagePullSecrets").add(builder); imagePullSecrets.add(builder); } else { _visitables.get("imagePullSecrets").add(index, builder); imagePullSecrets.add(index, builder);}
return (A)this;
}
public A setToImagePullSecrets(int index,LocalObjectReference item) {
if (this.imagePullSecrets == null) {this.imagePullSecrets = new ArrayList();}
LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);
if (index < 0 || index >= imagePullSecrets.size()) { _visitables.get("imagePullSecrets").add(builder); imagePullSecrets.add(builder); } else { _visitables.get("imagePullSecrets").set(index, builder); imagePullSecrets.set(index, builder);}
return (A)this;
}
public A addToImagePullSecrets(io.fabric8.kubernetes.api.model.LocalObjectReference... items) {
if (this.imagePullSecrets == null) {this.imagePullSecrets = new ArrayList();}
for (LocalObjectReference item : items) {LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);_visitables.get("imagePullSecrets").add(builder);this.imagePullSecrets.add(builder);} return (A)this;
}
public A addAllToModelImagePullSecrets(Collection items) {
if (this.imagePullSecrets == null) {this.imagePullSecrets = new ArrayList();}
for (LocalObjectReference item : items) {LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);_visitables.get("imagePullSecrets").add(builder);this.imagePullSecrets.add(builder);} return (A)this;
}
public A removeFromImagePullSecrets(io.fabric8.kubernetes.api.model.LocalObjectReference... items) {
if (this.imagePullSecrets == null) return (A)this;
for (LocalObjectReference item : items) {LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);_visitables.get("imagePullSecrets").remove(builder); this.imagePullSecrets.remove(builder);} return (A)this;
}
public A removeAllFromModelImagePullSecrets(Collection items) {
if (this.imagePullSecrets == null) return (A)this;
for (LocalObjectReference item : items) {LocalObjectReferenceBuilder builder = new LocalObjectReferenceBuilder(item);_visitables.get("imagePullSecrets").remove(builder); this.imagePullSecrets.remove(builder);} return (A)this;
}
public A removeMatchingFromModelImagePullSecrets(Predicate predicate) {
if (imagePullSecrets == null) return (A) this;
final Iterator each = imagePullSecrets.iterator();
final List visitables = _visitables.get("imagePullSecrets");
while (each.hasNext()) {
LocalObjectReferenceBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
public List buildImagePullSecrets() {
return this.imagePullSecrets != null ? build(imagePullSecrets) : null;
}
public LocalObjectReference buildImagePullSecret(int index) {
return this.imagePullSecrets.get(index).build();
}
public LocalObjectReference buildFirstImagePullSecret() {
return this.imagePullSecrets.get(0).build();
}
public LocalObjectReference buildLastImagePullSecret() {
return this.imagePullSecrets.get(imagePullSecrets.size() - 1).build();
}
public LocalObjectReference buildMatchingImagePullSecret(Predicate predicate) {
for (LocalObjectReferenceBuilder item : imagePullSecrets) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public boolean hasMatchingImagePullSecret(Predicate predicate) {
for (LocalObjectReferenceBuilder item : imagePullSecrets) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withImagePullSecrets(List imagePullSecrets) {
if (this.imagePullSecrets != null) {
this._visitables.get("imagePullSecrets").clear();
}
if (imagePullSecrets != null) {
this.imagePullSecrets = new ArrayList();
for (LocalObjectReference item : imagePullSecrets) {
this.addToImagePullSecrets(item);
}
} else {
this.imagePullSecrets = null;
}
return (A) this;
}
public A withImagePullSecrets(io.fabric8.kubernetes.api.model.LocalObjectReference... imagePullSecrets) {
if (this.imagePullSecrets != null) {
this.imagePullSecrets.clear();
_visitables.remove("imagePullSecrets");
}
if (imagePullSecrets != null) {
for (LocalObjectReference item : imagePullSecrets) {
this.addToImagePullSecrets(item);
}
}
return (A) this;
}
public boolean hasImagePullSecrets() {
return this.imagePullSecrets != null && !this.imagePullSecrets.isEmpty();
}
public A addNewImagePullSecret(String name) {
return (A)addToImagePullSecrets(new LocalObjectReference(name));
}
public ImagePullSecretsNested addNewImagePullSecret() {
return new ImagePullSecretsNested(-1, null);
}
public ImagePullSecretsNested addNewImagePullSecretLike(LocalObjectReference item) {
return new ImagePullSecretsNested(-1, item);
}
public ImagePullSecretsNested setNewImagePullSecretLike(int index,LocalObjectReference item) {
return new ImagePullSecretsNested(index, item);
}
public ImagePullSecretsNested editImagePullSecret(int index) {
if (imagePullSecrets.size() <= index) throw new RuntimeException("Can't edit imagePullSecrets. Index exceeds size.");
return setNewImagePullSecretLike(index, buildImagePullSecret(index));
}
public ImagePullSecretsNested editFirstImagePullSecret() {
if (imagePullSecrets.size() == 0) throw new RuntimeException("Can't edit first imagePullSecrets. The list is empty.");
return setNewImagePullSecretLike(0, buildImagePullSecret(0));
}
public ImagePullSecretsNested editLastImagePullSecret() {
int index = imagePullSecrets.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last imagePullSecrets. The list is empty.");
return setNewImagePullSecretLike(index, buildImagePullSecret(index));
}
public ImagePullSecretsNested editMatchingImagePullSecret(Predicate predicate) {
int index = -1;
for (int i=0;i map) {
if(this.nodeSelector == null && map != null) { this.nodeSelector = new LinkedHashMap(); }
if(map != null) { this.nodeSelector.putAll(map);} return (A)this;
}
public A removeFromNodeSelector(String key) {
if(this.nodeSelector == null) { return (A) this; }
if(key != null && this.nodeSelector != null) {this.nodeSelector.remove(key);} return (A)this;
}
public A removeFromNodeSelector(Map map) {
if(this.nodeSelector == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.nodeSelector != null){this.nodeSelector.remove(key);}}} return (A)this;
}
public Map getNodeSelector() {
return this.nodeSelector;
}
public A withNodeSelector(Map nodeSelector) {
if (nodeSelector == null) {
this.nodeSelector = null;
} else {
this.nodeSelector = new LinkedHashMap(nodeSelector);
}
return (A) this;
}
public boolean hasNodeSelector() {
return this.nodeSelector != null;
}
public String getPriorityClassName() {
return this.priorityClassName;
}
public A withPriorityClassName(String priorityClassName) {
this.priorityClassName = priorityClassName;
return (A) this;
}
public boolean hasPriorityClassName() {
return this.priorityClassName != null;
}
public String getServiceAccountName() {
return this.serviceAccountName;
}
public A withServiceAccountName(String serviceAccountName) {
this.serviceAccountName = serviceAccountName;
return (A) this;
}
public boolean hasServiceAccountName() {
return this.serviceAccountName != null;
}
public A addToTolerations(int index,Toleration item) {
if (this.tolerations == null) {this.tolerations = new ArrayList();}
this.tolerations.add(index, item);
return (A)this;
}
public A setToTolerations(int index,Toleration item) {
if (this.tolerations == null) {this.tolerations = new ArrayList();}
this.tolerations.set(index, item); return (A)this;
}
public A addToTolerations(io.fabric8.kubernetes.api.model.Toleration... items) {
if (this.tolerations == null) {this.tolerations = new ArrayList();}
for (Toleration item : items) {this.tolerations.add(item);} return (A)this;
}
public A addAllToTolerations(Collection items) {
if (this.tolerations == null) {this.tolerations = new ArrayList();}
for (Toleration item : items) {this.tolerations.add(item);} return (A)this;
}
public A removeFromTolerations(io.fabric8.kubernetes.api.model.Toleration... items) {
if (this.tolerations == null) return (A)this;
for (Toleration item : items) { this.tolerations.remove(item);} return (A)this;
}
public A removeAllFromTolerations(Collection items) {
if (this.tolerations == null) return (A)this;
for (Toleration item : items) { this.tolerations.remove(item);} return (A)this;
}
public List getTolerations() {
return this.tolerations;
}
public Toleration getToleration(int index) {
return this.tolerations.get(index);
}
public Toleration getFirstToleration() {
return this.tolerations.get(0);
}
public Toleration getLastToleration() {
return this.tolerations.get(tolerations.size() - 1);
}
public Toleration getMatchingToleration(Predicate predicate) {
for (Toleration item : tolerations) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingToleration(Predicate predicate) {
for (Toleration item : tolerations) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withTolerations(List tolerations) {
if (tolerations != null) {
this.tolerations = new ArrayList();
for (Toleration item : tolerations) {
this.addToTolerations(item);
}
} else {
this.tolerations = null;
}
return (A) this;
}
public A withTolerations(io.fabric8.kubernetes.api.model.Toleration... tolerations) {
if (this.tolerations != null) {
this.tolerations.clear();
_visitables.remove("tolerations");
}
if (tolerations != null) {
for (Toleration item : tolerations) {
this.addToTolerations(item);
}
}
return (A) this;
}
public boolean hasTolerations() {
return this.tolerations != null && !this.tolerations.isEmpty();
}
public A addNewToleration(String effect,String key,String operator,Long tolerationSeconds,String value) {
return (A)addToTolerations(new Toleration(effect, key, operator, tolerationSeconds, value));
}
public A addToAdditionalProperties(String key,Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(String key) {
if(this.additionalProperties == null) { return (A) this; }
if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
}
public A removeFromAdditionalProperties(Map map) {
if(this.additionalProperties == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(Map additionalProperties) {
if (additionalProperties == null) {
this.additionalProperties = null;
} else {
this.additionalProperties = new LinkedHashMap(additionalProperties);
}
return (A) this;
}
public boolean hasAdditionalProperties() {
return this.additionalProperties != 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;
ACMEChallengeSolverHTTP01IngressPodSpecFluent that = (ACMEChallengeSolverHTTP01IngressPodSpecFluent) o;
if (!java.util.Objects.equals(affinity, that.affinity)) return false;
if (!java.util.Objects.equals(imagePullSecrets, that.imagePullSecrets)) return false;
if (!java.util.Objects.equals(nodeSelector, that.nodeSelector)) return false;
if (!java.util.Objects.equals(priorityClassName, that.priorityClassName)) return false;
if (!java.util.Objects.equals(serviceAccountName, that.serviceAccountName)) return false;
if (!java.util.Objects.equals(tolerations, that.tolerations)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(affinity, imagePullSecrets, nodeSelector, priorityClassName, serviceAccountName, tolerations, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (affinity != null) { sb.append("affinity:"); sb.append(affinity + ","); }
if (imagePullSecrets != null && !imagePullSecrets.isEmpty()) { sb.append("imagePullSecrets:"); sb.append(imagePullSecrets + ","); }
if (nodeSelector != null && !nodeSelector.isEmpty()) { sb.append("nodeSelector:"); sb.append(nodeSelector + ","); }
if (priorityClassName != null) { sb.append("priorityClassName:"); sb.append(priorityClassName + ","); }
if (serviceAccountName != null) { sb.append("serviceAccountName:"); sb.append(serviceAccountName + ","); }
if (tolerations != null && !tolerations.isEmpty()) { sb.append("tolerations:"); sb.append(tolerations + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
public class ImagePullSecretsNested extends LocalObjectReferenceFluent> implements Nested{
ImagePullSecretsNested(int index,LocalObjectReference item) {
this.index = index;
this.builder = new LocalObjectReferenceBuilder(this, item);
}
LocalObjectReferenceBuilder builder;
int index;
public N and() {
return (N) ACMEChallengeSolverHTTP01IngressPodSpecFluent.this.setToImagePullSecrets(index,builder.build());
}
public N endModelImagePullSecret() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy