Class GatewayStatusAddress
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayStatusAddress
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<GatewayStatusAddressBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class GatewayStatusAddress extends Object implements io.fabric8.kubernetes.api.builder.Editable<GatewayStatusAddressBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
GatewayStatusAddress describes a network address that is bound to a Gateway.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GatewayStatusAddress()
No args constructor for use in serializationGatewayStatusAddress(String type, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GatewayStatusAddressBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getType()
Type of the address.String
getValue()
Value of the address.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setType(String type)
Type of the address.void
setValue(String value)
Value of the address.GatewayStatusAddressBuilder
toBuilder()
-
-
-
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 GatewayStatusAddressBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<GatewayStatusAddressBuilder>
-
toBuilder
public GatewayStatusAddressBuilder toBuilder()
-
-