Class GatewayStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<GatewayStatusBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class GatewayStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<GatewayStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
GatewayStatus defines the observed state of Gateway.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GatewayStatus()
No args constructor for use in serializationGatewayStatus(List<GatewayStatusAddress> addresses, List<io.fabric8.kubernetes.api.model.Condition> conditions, List<ListenerStatus> listeners)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GatewayStatusBuilder
edit()
Map<String,Object>
getAdditionalProperties()
List<GatewayStatusAddress>
getAddresses()
Addresses lists the network addresses that have been bound to the Gateway.List<io.fabric8.kubernetes.api.model.Condition>
getConditions()
Conditions describe the current conditions of the Gateway.List<ListenerStatus>
getListeners()
Listeners provide status for each unique listener port defined in the Spec.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setAddresses(List<GatewayStatusAddress> addresses)
Addresses lists the network addresses that have been bound to the Gateway.void
setConditions(List<io.fabric8.kubernetes.api.model.Condition> conditions)
Conditions describe the current conditions of the Gateway.void
setListeners(List<ListenerStatus> listeners)
Listeners provide status for each unique listener port defined in the Spec.GatewayStatusBuilder
toBuilder()
-
-
-
Constructor Detail
-
GatewayStatus
public GatewayStatus()
No args constructor for use in serialization
-
GatewayStatus
public GatewayStatus(List<GatewayStatusAddress> addresses, List<io.fabric8.kubernetes.api.model.Condition> conditions, List<ListenerStatus> listeners)
-
-
Method Detail
-
getAddresses
public List<GatewayStatusAddress> getAddresses()
Addresses lists the network addresses that have been bound to the Gateway.This list may differ from the addresses provided in the spec under some conditions:
* no addresses are specified, all addresses are dynamically assigned
* a combination of specified and dynamic addresses are assigned
* a specified address was unusable (e.g. already in use)
<gateway:validateIPAddress>
-
setAddresses
public void setAddresses(List<GatewayStatusAddress> addresses)
Addresses lists the network addresses that have been bound to the Gateway.This list may differ from the addresses provided in the spec under some conditions:
* no addresses are specified, all addresses are dynamically assigned
* a combination of specified and dynamic addresses are assigned
* a specified address was unusable (e.g. already in use)
<gateway:validateIPAddress>
-
getConditions
public List<io.fabric8.kubernetes.api.model.Condition> getConditions()
Conditions describe the current conditions of the Gateway.Implementations should prefer to express Gateway conditions using the `GatewayConditionType` and `GatewayConditionReason` constants so that operators and tools can converge on a common vocabulary to describe Gateway state.
Known condition types are:
* "Accepted" * "Programmed" * "Ready"
-
setConditions
public void setConditions(List<io.fabric8.kubernetes.api.model.Condition> conditions)
Conditions describe the current conditions of the Gateway.Implementations should prefer to express Gateway conditions using the `GatewayConditionType` and `GatewayConditionReason` constants so that operators and tools can converge on a common vocabulary to describe Gateway state.
Known condition types are:
* "Accepted" * "Programmed" * "Ready"
-
getListeners
public List<ListenerStatus> getListeners()
Listeners provide status for each unique listener port defined in the Spec.
-
setListeners
public void setListeners(List<ListenerStatus> listeners)
Listeners provide status for each unique listener port defined in the Spec.
-
edit
public GatewayStatusBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<GatewayStatusBuilder>
-
toBuilder
public GatewayStatusBuilder toBuilder()
-
-