io.kubernetes.client.openapi.models.V1IngressClassSpecFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.StringBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import java.lang.Boolean;
public interface V1IngressClassSpecFluent> extends Fluent {
public String getController();
public A withController(String controller);
public Boolean hasController();
public A withNewController(String arg1);
public A withNewController(StringBuilder arg1);
public A withNewController(StringBuffer arg1);
/**
* This method has been deprecated, please use method buildParameters instead.
* @return The buildable object.
*/
@Deprecated public V1TypedLocalObjectReference getParameters();
public V1TypedLocalObjectReference buildParameters();
public A withParameters(V1TypedLocalObjectReference parameters);
public Boolean hasParameters();
public V1IngressClassSpecFluent.ParametersNested withNewParameters();
public V1IngressClassSpecFluent.ParametersNested withNewParametersLike(V1TypedLocalObjectReference item);
public V1IngressClassSpecFluent.ParametersNested editParameters();
public V1IngressClassSpecFluent.ParametersNested editOrNewParameters();
public V1IngressClassSpecFluent.ParametersNested editOrNewParametersLike(V1TypedLocalObjectReference item);
public interface ParametersNested extends io.kubernetes.client.fluent.Nested,V1TypedLocalObjectReferenceFluent> {
public N and();
public N endParameters(); }
}