Class IngressClassSpec
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.networking.v1beta1.IngressClassSpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<IngressClassSpecBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class IngressClassSpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<IngressClassSpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
IngressClassSpec provides information about the class of an Ingress.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IngressClassSpec()
No args constructor for use in serializationIngressClassSpec(String controller, IngressClassParametersReference parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngressClassSpecBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getController()
Controller refers to the name of the controller that should handle this class.IngressClassParametersReference
getParameters()
IngressClassSpec provides information about the class of an Ingress.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setController(String controller)
Controller refers to the name of the controller that should handle this class.void
setParameters(IngressClassParametersReference parameters)
IngressClassSpec provides information about the class of an Ingress.IngressClassSpecBuilder
toBuilder()
-
-
-
Constructor Detail
-
IngressClassSpec
public IngressClassSpec()
No args constructor for use in serialization
-
IngressClassSpec
public IngressClassSpec(String controller, IngressClassParametersReference parameters)
-
-
Method Detail
-
getController
public String getController()
Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
-
setController
public void setController(String controller)
Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
-
getParameters
public IngressClassParametersReference getParameters()
IngressClassSpec provides information about the class of an Ingress.
-
setParameters
public void setParameters(IngressClassParametersReference parameters)
IngressClassSpec provides information about the class of an Ingress.
-
edit
public IngressClassSpecBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<IngressClassSpecBuilder>
-
toBuilder
public IngressClassSpecBuilder toBuilder()
-
-