Class GatewayAddress
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayAddress
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<GatewayAddressBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class GatewayAddress extends Object implements io.fabric8.kubernetes.api.builder.Editable<GatewayAddressBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
GatewayAddress describes an address that can be bound to a Gateway.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GatewayAddress()No args constructor for use in serializationGatewayAddress(String type, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GatewayAddressBuilderedit()Map<String,Object>getAdditionalProperties()StringgetType()Type of the address.StringgetValue()Value of the address.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetType(String type)Type of the address.voidsetValue(String value)Value of the address.GatewayAddressBuildertoBuilder()
-
-
-
Method Detail
-
getType
public String getType()
Type of the address.
-
setType
public void setType(String type)
Type of the address.
-
getValue
public String getValue()
Value of the address. The validity of the values will depend on the type and support by the controller.Examples: `1.2.3.4`, `128::1`, `my-ip-address`.
-
setValue
public void setValue(String value)
Value of the address. The validity of the values will depend on the type and support by the controller.Examples: `1.2.3.4`, `128::1`, `my-ip-address`.
-
edit
public GatewayAddressBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<GatewayAddressBuilder>
-
toBuilder
public GatewayAddressBuilder toBuilder()
-
-