Package io.fabric8.kubernetes.api.model
Class ReplicationControllerStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.ReplicationControllerStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ReplicationControllerStatusBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ReplicationControllerStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<ReplicationControllerStatusBuilder>, KubernetesResource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReplicationControllerStatus()
No args constructor for use in serializationReplicationControllerStatus(Integer availableReplicas, List<ReplicationControllerCondition> conditions, Integer fullyLabeledReplicas, Long observedGeneration, Integer readyReplicas, Integer replicas)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReplicationControllerStatusBuilder
edit()
Map<String,Object>
getAdditionalProperties()
Integer
getAvailableReplicas()
List<ReplicationControllerCondition>
getConditions()
Integer
getFullyLabeledReplicas()
Long
getObservedGeneration()
Integer
getReadyReplicas()
Integer
getReplicas()
void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setAvailableReplicas(Integer availableReplicas)
void
setConditions(List<ReplicationControllerCondition> conditions)
void
setFullyLabeledReplicas(Integer fullyLabeledReplicas)
void
setObservedGeneration(Long observedGeneration)
void
setReadyReplicas(Integer readyReplicas)
void
setReplicas(Integer replicas)
ReplicationControllerStatusBuilder
toBuilder()
-
-
-
Method Detail
-
getAvailableReplicas
public Integer getAvailableReplicas()
-
setAvailableReplicas
public void setAvailableReplicas(Integer availableReplicas)
-
getConditions
public List<ReplicationControllerCondition> getConditions()
-
setConditions
public void setConditions(List<ReplicationControllerCondition> conditions)
-
getFullyLabeledReplicas
public Integer getFullyLabeledReplicas()
-
setFullyLabeledReplicas
public void setFullyLabeledReplicas(Integer fullyLabeledReplicas)
-
getObservedGeneration
public Long getObservedGeneration()
-
setObservedGeneration
public void setObservedGeneration(Long observedGeneration)
-
getReadyReplicas
public Integer getReadyReplicas()
-
setReadyReplicas
public void setReadyReplicas(Integer readyReplicas)
-
getReplicas
public Integer getReplicas()
-
setReplicas
public void setReplicas(Integer replicas)
-
edit
public ReplicationControllerStatusBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<ReplicationControllerStatusBuilder>
-
toBuilder
public ReplicationControllerStatusBuilder toBuilder()
-
-