Package k8s.io.api.core.v1
Interface Generated.ResourceClaimOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.ResourceClaim,Generated.ResourceClaim.Builder
- Enclosing class:
- Generated
public static interface Generated.ResourceClaimOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used.com.google.protobuf.ByteStringgetNameBytes()Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used.StringgetRequest()Request is the name chosen for a request in the referenced claim.com.google.protobuf.ByteStringgetRequestBytes()Request is the name chosen for a request in the referenced claim.booleanhasName()Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used.booleanhasRequest()Request is the name chosen for a request in the referenced claim.-
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 must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
optional string name = 1;- Returns:
- The bytes for name.
-
hasRequest
boolean hasRequest()
Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request. +optional
optional string request = 2;- Returns:
- Whether the request field is set.
-
getRequest
String getRequest()
Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request. +optional
optional string request = 2;- Returns:
- The request.
-
getRequestBytes
com.google.protobuf.ByteString getRequestBytes()
Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request. +optional
optional string request = 2;- Returns:
- The bytes for request.
-
-