Class ResourcePoolStatusRequestStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.resource.v1alpha3.ResourcePoolStatusRequestStatus
-
- All Implemented Interfaces:
Editable<ResourcePoolStatusRequestStatusBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ResourcePoolStatusRequestStatus extends Object implements Editable<ResourcePoolStatusRequestStatusBuilder>, KubernetesResource
ResourcePoolStatusRequestStatus contains the calculated pool status information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourcePoolStatusRequestStatus()No args constructor for use in serializationResourcePoolStatusRequestStatus(List<Condition> conditions, Integer poolCount, List<PoolStatus> pools)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourcePoolStatusRequestStatusBuilderedit()Map<String,Object>getAdditionalProperties()List<Condition>getConditions()Conditions provide information about the state of the request.IntegergetPoolCount()PoolCount is the total number of pools that matched the filter criteria, regardless of truncation.List<PoolStatus>getPools()Pools contains the first `spec.limit` matching pools, sorted by driver then pool name.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetConditions(List<Condition> conditions)Conditions provide information about the state of the request.voidsetPoolCount(Integer poolCount)PoolCount is the total number of pools that matched the filter criteria, regardless of truncation.voidsetPools(List<PoolStatus> pools)Pools contains the first `spec.limit` matching pools, sorted by driver then pool name.ResourcePoolStatusRequestStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
ResourcePoolStatusRequestStatus
public ResourcePoolStatusRequestStatus()
No args constructor for use in serialization
-
ResourcePoolStatusRequestStatus
public ResourcePoolStatusRequestStatus(List<Condition> conditions, Integer poolCount, List<PoolStatus> pools)
-
-
Method Detail
-
getConditions
public List<Condition> getConditions()
Conditions provide information about the state of the request. A condition with type=Complete or type=Failed will always be set when the status is populated.Known condition types: - "Complete": True when the request has been processed successfully - "Failed": True when the request could not be processed
-
setConditions
public void setConditions(List<Condition> conditions)
Conditions provide information about the state of the request. A condition with type=Complete or type=Failed will always be set when the status is populated.Known condition types: - "Complete": True when the request has been processed successfully - "Failed": True when the request could not be processed
-
getPoolCount
public Integer getPoolCount()
PoolCount is the total number of pools that matched the filter criteria, regardless of truncation. This helps users understand how many pools exist even when the response is truncated. A value of 0 means no pools matched the filter criteria.
-
setPoolCount
public void setPoolCount(Integer poolCount)
PoolCount is the total number of pools that matched the filter criteria, regardless of truncation. This helps users understand how many pools exist even when the response is truncated. A value of 0 means no pools matched the filter criteria.
-
getPools
public List<PoolStatus> getPools()
Pools contains the first `spec.limit` matching pools, sorted by driver then pool name. If `len(pools) < poolCount`, the list was truncated. When omitted, no pools matched the request filters.
-
setPools
public void setPools(List<PoolStatus> pools)
Pools contains the first `spec.limit` matching pools, sorted by driver then pool name. If `len(pools) < poolCount`, the list was truncated. When omitted, no pools matched the request filters.
-
edit
public ResourcePoolStatusRequestStatusBuilder edit()
- Specified by:
editin interfaceEditable<ResourcePoolStatusRequestStatusBuilder>
-
toBuilder
public ResourcePoolStatusRequestStatusBuilder toBuilder()
-
-