io.kubernetes.client.openapi.models.V1IngressSpecFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Iterator;
import java.util.List;
import java.lang.Boolean;
import java.util.Collection;
import java.lang.Object;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1IngressSpecFluentImpl> extends BaseFluent implements V1IngressSpecFluent{
public V1IngressSpecFluentImpl() {
}
public V1IngressSpecFluentImpl(V1IngressSpec instance) {
if (instance != null) {
this.withDefaultBackend(instance.getDefaultBackend());
this.withIngressClassName(instance.getIngressClassName());
this.withRules(instance.getRules());
this.withTls(instance.getTls());
}
}
private V1IngressBackendBuilder defaultBackend;
private String ingressClassName;
private ArrayList rules;
private ArrayList tls;
/**
* This method has been deprecated, please use method buildDefaultBackend instead.
* @return The buildable object.
*/
@Deprecated
public V1IngressBackend getDefaultBackend() {
return this.defaultBackend!=null ?this.defaultBackend.build():null;
}
public V1IngressBackend buildDefaultBackend() {
return this.defaultBackend!=null ?this.defaultBackend.build():null;
}
public A withDefaultBackend(V1IngressBackend defaultBackend) {
_visitables.get("defaultBackend").remove(this.defaultBackend);
if (defaultBackend!=null){ this.defaultBackend= new V1IngressBackendBuilder(defaultBackend); _visitables.get("defaultBackend").add(this.defaultBackend);} else { this.defaultBackend = null; _visitables.get("defaultBackend").remove(this.defaultBackend); } return (A) this;
}
public Boolean hasDefaultBackend() {
return this.defaultBackend != null;
}
public V1IngressSpecFluentImpl.DefaultBackendNested withNewDefaultBackend() {
return new V1IngressSpecFluentImpl.DefaultBackendNestedImpl();
}
public V1IngressSpecFluentImpl.DefaultBackendNested withNewDefaultBackendLike(V1IngressBackend item) {
return new V1IngressSpecFluentImpl.DefaultBackendNestedImpl(item);
}
public V1IngressSpecFluentImpl.DefaultBackendNested editDefaultBackend() {
return withNewDefaultBackendLike(getDefaultBackend());
}
public V1IngressSpecFluentImpl.DefaultBackendNested editOrNewDefaultBackend() {
return withNewDefaultBackendLike(getDefaultBackend() != null ? getDefaultBackend(): new V1IngressBackendBuilder().build());
}
public V1IngressSpecFluentImpl.DefaultBackendNested editOrNewDefaultBackendLike(V1IngressBackend item) {
return withNewDefaultBackendLike(getDefaultBackend() != null ? getDefaultBackend(): item);
}
public String getIngressClassName() {
return this.ingressClassName;
}
public A withIngressClassName(String ingressClassName) {
this.ingressClassName=ingressClassName; return (A) this;
}
public Boolean hasIngressClassName() {
return this.ingressClassName != null;
}
public A addToRules(int index,V1IngressRule item) {
if (this.rules == null) {this.rules = new ArrayList();}
V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);
if (index < 0 || index >= rules.size()) { _visitables.get("rules").add(builder); rules.add(builder); } else { _visitables.get("rules").add(index, builder); rules.add(index, builder);}
return (A)this;
}
public A setToRules(int index,V1IngressRule item) {
if (this.rules == null) {this.rules = new ArrayList();}
V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);
if (index < 0 || index >= rules.size()) { _visitables.get("rules").add(builder); rules.add(builder); } else { _visitables.get("rules").set(index, builder); rules.set(index, builder);}
return (A)this;
}
public A addToRules(io.kubernetes.client.openapi.models.V1IngressRule... items) {
if (this.rules == null) {this.rules = new ArrayList();}
for (V1IngressRule item : items) {V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);_visitables.get("rules").add(builder);this.rules.add(builder);} return (A)this;
}
public A addAllToRules(Collection items) {
if (this.rules == null) {this.rules = new ArrayList();}
for (V1IngressRule item : items) {V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);_visitables.get("rules").add(builder);this.rules.add(builder);} return (A)this;
}
public A removeFromRules(io.kubernetes.client.openapi.models.V1IngressRule... items) {
for (V1IngressRule item : items) {V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);_visitables.get("rules").remove(builder);if (this.rules != null) {this.rules.remove(builder);}} return (A)this;
}
public A removeAllFromRules(Collection items) {
for (V1IngressRule item : items) {V1IngressRuleBuilder builder = new V1IngressRuleBuilder(item);_visitables.get("rules").remove(builder);if (this.rules != null) {this.rules.remove(builder);}} return (A)this;
}
public A removeMatchingFromRules(Predicate predicate) {
if (rules == null) return (A) this;
final Iterator each = rules.iterator();
final List visitables = _visitables.get("rules");
while (each.hasNext()) {
V1IngressRuleBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
/**
* This method has been deprecated, please use method buildRules instead.
* @return The buildable object.
*/
@Deprecated
public List getRules() {
return rules != null ? build(rules) : null;
}
public List buildRules() {
return rules != null ? build(rules) : null;
}
public V1IngressRule buildRule(int index) {
return this.rules.get(index).build();
}
public V1IngressRule buildFirstRule() {
return this.rules.get(0).build();
}
public V1IngressRule buildLastRule() {
return this.rules.get(rules.size() - 1).build();
}
public V1IngressRule buildMatchingRule(Predicate predicate) {
for (V1IngressRuleBuilder item: rules) { if(predicate.test(item)){ return item.build();} } return null;
}
public Boolean hasMatchingRule(Predicate predicate) {
for (V1IngressRuleBuilder item: rules) { if(predicate.test(item)){ return true;} } return false;
}
public A withRules(List rules) {
if (this.rules != null) { _visitables.get("rules").clear();}
if (rules != null) {this.rules = new ArrayList(); for (V1IngressRule item : rules){this.addToRules(item);}} else { this.rules = null;} return (A) this;
}
public A withRules(io.kubernetes.client.openapi.models.V1IngressRule... rules) {
if (this.rules != null) {this.rules.clear(); _visitables.remove("rules"); }
if (rules != null) {for (V1IngressRule item :rules){ this.addToRules(item);}} return (A) this;
}
public Boolean hasRules() {
return rules != null && !rules.isEmpty();
}
public V1IngressSpecFluentImpl.RulesNested addNewRule() {
return new V1IngressSpecFluentImpl.RulesNestedImpl();
}
public V1IngressSpecFluentImpl.RulesNested addNewRuleLike(V1IngressRule item) {
return new V1IngressSpecFluentImpl.RulesNestedImpl(-1, item);
}
public V1IngressSpecFluentImpl.RulesNested setNewRuleLike(int index,V1IngressRule item) {
return new V1IngressSpecFluentImpl.RulesNestedImpl(index, item);
}
public V1IngressSpecFluentImpl.RulesNested editRule(int index) {
if (rules.size() <= index) throw new RuntimeException("Can't edit rules. Index exceeds size.");
return setNewRuleLike(index, buildRule(index));
}
public V1IngressSpecFluentImpl.RulesNested editFirstRule() {
if (rules.size() == 0) throw new RuntimeException("Can't edit first rules. The list is empty.");
return setNewRuleLike(0, buildRule(0));
}
public V1IngressSpecFluentImpl.RulesNested editLastRule() {
int index = rules.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last rules. The list is empty.");
return setNewRuleLike(index, buildRule(index));
}
public V1IngressSpecFluentImpl.RulesNested editMatchingRule(Predicate predicate) {
int index = -1;
for (int i=0;i();}
V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);
if (index < 0 || index >= tls.size()) { _visitables.get("tls").add(builder); tls.add(builder); } else { _visitables.get("tls").add(index, builder); tls.add(index, builder);}
return (A)this;
}
public A setToTls(int index,V1IngressTLS item) {
if (this.tls == null) {this.tls = new ArrayList();}
V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);
if (index < 0 || index >= tls.size()) { _visitables.get("tls").add(builder); tls.add(builder); } else { _visitables.get("tls").set(index, builder); tls.set(index, builder);}
return (A)this;
}
public A addToTls(io.kubernetes.client.openapi.models.V1IngressTLS... items) {
if (this.tls == null) {this.tls = new ArrayList();}
for (V1IngressTLS item : items) {V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);_visitables.get("tls").add(builder);this.tls.add(builder);} return (A)this;
}
public A addAllToTls(Collection items) {
if (this.tls == null) {this.tls = new ArrayList();}
for (V1IngressTLS item : items) {V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);_visitables.get("tls").add(builder);this.tls.add(builder);} return (A)this;
}
public A removeFromTls(io.kubernetes.client.openapi.models.V1IngressTLS... items) {
for (V1IngressTLS item : items) {V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);_visitables.get("tls").remove(builder);if (this.tls != null) {this.tls.remove(builder);}} return (A)this;
}
public A removeAllFromTls(Collection items) {
for (V1IngressTLS item : items) {V1IngressTLSBuilder builder = new V1IngressTLSBuilder(item);_visitables.get("tls").remove(builder);if (this.tls != null) {this.tls.remove(builder);}} return (A)this;
}
public A removeMatchingFromTls(Predicate predicate) {
if (tls == null) return (A) this;
final Iterator each = tls.iterator();
final List visitables = _visitables.get("tls");
while (each.hasNext()) {
V1IngressTLSBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
/**
* This method has been deprecated, please use method buildTls instead.
* @return The buildable object.
*/
@Deprecated
public List getTls() {
return tls != null ? build(tls) : null;
}
public List buildTls() {
return tls != null ? build(tls) : null;
}
public V1IngressTLS buildTl(int index) {
return this.tls.get(index).build();
}
public V1IngressTLS buildFirstTl() {
return this.tls.get(0).build();
}
public V1IngressTLS buildLastTl() {
return this.tls.get(tls.size() - 1).build();
}
public V1IngressTLS buildMatchingTl(Predicate predicate) {
for (V1IngressTLSBuilder item: tls) { if(predicate.test(item)){ return item.build();} } return null;
}
public Boolean hasMatchingTl(Predicate predicate) {
for (V1IngressTLSBuilder item: tls) { if(predicate.test(item)){ return true;} } return false;
}
public A withTls(List tls) {
if (this.tls != null) { _visitables.get("tls").clear();}
if (tls != null) {this.tls = new ArrayList(); for (V1IngressTLS item : tls){this.addToTls(item);}} else { this.tls = null;} return (A) this;
}
public A withTls(io.kubernetes.client.openapi.models.V1IngressTLS... tls) {
if (this.tls != null) {this.tls.clear(); _visitables.remove("tls"); }
if (tls != null) {for (V1IngressTLS item :tls){ this.addToTls(item);}} return (A) this;
}
public Boolean hasTls() {
return tls != null && !tls.isEmpty();
}
public V1IngressSpecFluentImpl.TlsNested addNewTl() {
return new V1IngressSpecFluentImpl.TlsNestedImpl();
}
public V1IngressSpecFluentImpl.TlsNested addNewTlLike(V1IngressTLS item) {
return new V1IngressSpecFluentImpl.TlsNestedImpl(-1, item);
}
public V1IngressSpecFluentImpl.TlsNested setNewTlLike(int index,V1IngressTLS item) {
return new V1IngressSpecFluentImpl.TlsNestedImpl(index, item);
}
public V1IngressSpecFluentImpl.TlsNested editTl(int index) {
if (tls.size() <= index) throw new RuntimeException("Can't edit tls. Index exceeds size.");
return setNewTlLike(index, buildTl(index));
}
public V1IngressSpecFluentImpl.TlsNested editFirstTl() {
if (tls.size() == 0) throw new RuntimeException("Can't edit first tls. The list is empty.");
return setNewTlLike(0, buildTl(0));
}
public V1IngressSpecFluentImpl.TlsNested editLastTl() {
int index = tls.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last tls. The list is empty.");
return setNewTlLike(index, buildTl(index));
}
public V1IngressSpecFluentImpl.TlsNested editMatchingTl(Predicate predicate) {
int index = -1;
for (int i=0;i extends V1IngressBackendFluentImpl> implements V1IngressSpecFluentImpl.DefaultBackendNested,Nested{
DefaultBackendNestedImpl(V1IngressBackend item) {
this.builder = new V1IngressBackendBuilder(this, item);
}
DefaultBackendNestedImpl() {
this.builder = new V1IngressBackendBuilder(this);
}
V1IngressBackendBuilder builder;
public N and() {
return (N) V1IngressSpecFluentImpl.this.withDefaultBackend(builder.build());
}
public N endDefaultBackend() {
return and();
}
}
class RulesNestedImpl extends V1IngressRuleFluentImpl> implements V1IngressSpecFluentImpl.RulesNested,Nested{
RulesNestedImpl(int index,V1IngressRule item) {
this.index = index;
this.builder = new V1IngressRuleBuilder(this, item);
}
RulesNestedImpl() {
this.index = -1;
this.builder = new V1IngressRuleBuilder(this);
}
V1IngressRuleBuilder builder;
int index;
public N and() {
return (N) V1IngressSpecFluentImpl.this.setToRules(index,builder.build());
}
public N endRule() {
return and();
}
}
class TlsNestedImpl extends V1IngressTLSFluentImpl> implements V1IngressSpecFluentImpl.TlsNested,Nested{
TlsNestedImpl(int index,V1IngressTLS item) {
this.index = index;
this.builder = new V1IngressTLSBuilder(this, item);
}
TlsNestedImpl() {
this.index = -1;
this.builder = new V1IngressTLSBuilder(this);
}
V1IngressTLSBuilder builder;
int index;
public N and() {
return (N) V1IngressSpecFluentImpl.this.setToTls(index,builder.build());
}
public N endTl() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy