Package k8s.io.api.core.v1
Interface Generated.ResourceQuotaStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.ResourceQuotaStatus,Generated.ResourceQuotaStatus.Builder
- Enclosing class:
- Generated
public static interface Generated.ResourceQuotaStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsHard(String key)Hard is the set of enforced hard limits for each named resource.booleancontainsUsed(String key)Used is the current observed total usage of the resource in the namespace.Map<String,Generated.Quantity>getHard()Deprecated.intgetHardCount()Hard is the set of enforced hard limits for each named resource.Map<String,Generated.Quantity>getHardMap()Hard is the set of enforced hard limits for each named resource.Generated.QuantitygetHardOrDefault(String key, Generated.Quantity defaultValue)Hard is the set of enforced hard limits for each named resource.Generated.QuantitygetHardOrThrow(String key)Hard is the set of enforced hard limits for each named resource.Map<String,Generated.Quantity>getUsed()Deprecated.intgetUsedCount()Used is the current observed total usage of the resource in the namespace.Map<String,Generated.Quantity>getUsedMap()Used is the current observed total usage of the resource in the namespace.Generated.QuantitygetUsedOrDefault(String key, Generated.Quantity defaultValue)Used is the current observed total usage of the resource in the namespace.Generated.QuantitygetUsedOrThrow(String key)Used is the current observed total usage of the resource in the namespace.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHardCount
int getHardCount()
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
-
containsHard
boolean containsHard(String key)
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
-
getHard
@Deprecated Map<String,Generated.Quantity> getHard()
Deprecated.UsegetHardMap()instead.
-
getHardMap
Map<String,Generated.Quantity> getHardMap()
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
-
getHardOrDefault
Generated.Quantity getHardOrDefault(String key, Generated.Quantity defaultValue)
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
-
getHardOrThrow
Generated.Quantity getHardOrThrow(String key)
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
-
getUsedCount
int getUsedCount()
Used is the current observed total usage of the resource in the namespace. +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
-
containsUsed
boolean containsUsed(String key)
Used is the current observed total usage of the resource in the namespace. +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
-
getUsed
@Deprecated Map<String,Generated.Quantity> getUsed()
Deprecated.UsegetUsedMap()instead.
-
getUsedMap
Map<String,Generated.Quantity> getUsedMap()
Used is the current observed total usage of the resource in the namespace. +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
-
getUsedOrDefault
Generated.Quantity getUsedOrDefault(String key, Generated.Quantity defaultValue)
Used is the current observed total usage of the resource in the namespace. +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
-
getUsedOrThrow
Generated.Quantity getUsedOrThrow(String key)
Used is the current observed total usage of the resource in the namespace. +optional
map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
-
-