Class ListenerSetStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.gatewayapi.v1.ListenerSetStatus
-
- All Implemented Interfaces:
Editable<ListenerSetStatusBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ListenerSetStatus extends Object implements Editable<ListenerSetStatusBuilder>, KubernetesResource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListenerSetStatus()No args constructor for use in serializationListenerSetStatus(List<Condition> conditions, List<ListenerEntryStatus> listeners)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListenerSetStatusBuilderedit()Map<String,Object>getAdditionalProperties()List<Condition>getConditions()Conditions describe the current conditions of the ListenerSet.List<ListenerEntryStatus>getListeners()Listeners provide status for each unique listener port defined in the Spec.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetConditions(List<Condition> conditions)Conditions describe the current conditions of the ListenerSet.voidsetListeners(List<ListenerEntryStatus> listeners)Listeners provide status for each unique listener port defined in the Spec.ListenerSetStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
ListenerSetStatus
public ListenerSetStatus()
No args constructor for use in serialization
-
ListenerSetStatus
public ListenerSetStatus(List<Condition> conditions, List<ListenerEntryStatus> listeners)
-
-
Method Detail
-
getConditions
public List<Condition> getConditions()
Conditions describe the current conditions of the ListenerSet.Implementations MUST express ListenerSet conditions using the `ListenerSetConditionType` and `ListenerSetConditionReason` constants so that operators and tools can converge on a common vocabulary to describe ListenerSet state.
Known condition types are:
* "Accepted" * "Programmed"
-
setConditions
public void setConditions(List<Condition> conditions)
Conditions describe the current conditions of the ListenerSet.Implementations MUST express ListenerSet conditions using the `ListenerSetConditionType` and `ListenerSetConditionReason` constants so that operators and tools can converge on a common vocabulary to describe ListenerSet state.
Known condition types are:
* "Accepted" * "Programmed"
-
getListeners
public List<ListenerEntryStatus> getListeners()
Listeners provide status for each unique listener port defined in the Spec.
-
setListeners
public void setListeners(List<ListenerEntryStatus> listeners)
Listeners provide status for each unique listener port defined in the Spec.
-
edit
public ListenerSetStatusBuilder edit()
- Specified by:
editin interfaceEditable<ListenerSetStatusBuilder>
-
toBuilder
public ListenerSetStatusBuilder toBuilder()
-
-