Package k8s.io.api.core.v1
Interface Generated.PodResourceClaimStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.PodResourceClaimStatus,Generated.PodResourceClaimStatus.Builder
- Enclosing class:
- Generated
public static interface Generated.PodResourceClaimStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Name uniquely identifies this resource claim inside the pod.com.google.protobuf.ByteStringgetNameBytes()Name uniquely identifies this resource claim inside the pod.StringgetResourceClaimName()ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.com.google.protobuf.ByteStringgetResourceClaimNameBytes()ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.booleanhasName()Name uniquely identifies this resource claim inside the pod.booleanhasResourceClaimName()ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
optional string name = 1;- Returns:
- The bytes for name.
-
hasResourceClaimName
boolean hasResourceClaimName()
ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. If this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case. +optional
optional string resourceClaimName = 2;- Returns:
- Whether the resourceClaimName field is set.
-
getResourceClaimName
String getResourceClaimName()
ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. If this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case. +optional
optional string resourceClaimName = 2;- Returns:
- The resourceClaimName.
-
getResourceClaimNameBytes
com.google.protobuf.ByteString getResourceClaimNameBytes()
ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. If this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case. +optional
optional string resourceClaimName = 2;- Returns:
- The bytes for resourceClaimName.
-
-