Interface Generated.PodResourceClaimStatusOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getName()
      Name uniquely identifies this resource claim inside the pod.
      com.google.protobuf.ByteString getNameBytes()
      Name uniquely identifies this resource claim inside the pod.
      String getResourceClaimName()
      ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.
      com.google.protobuf.ByteString getResourceClaimNameBytes()
      ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.
      boolean hasName()
      Name uniquely identifies this resource claim inside the pod.
      boolean hasResourceClaimName()
      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.MessageLiteOrBuilder

        isInitialized
      • 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.