Interface Kubernetes.AccessReviewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Kubernetes.AccessReview,Kubernetes.AccessReview.Builder
- Enclosing class:
- Kubernetes
public static interface Kubernetes.AccessReviewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetGroup()The API group of the resource.com.google.protobuf.ByteStringgetGroupBytes()The API group of the resource.StringgetName()The name of the resource being requested.com.google.protobuf.ByteStringgetNameBytes()The name of the resource being requested.StringgetNs()Namespace of the action being requested.com.google.protobuf.ByteStringgetNsBytes()Namespace of the action being requested.StringgetResource()The optional resource type requested.com.google.protobuf.ByteStringgetResourceBytes()The optional resource type requested.StringgetSubresource()The optional subresource type.com.google.protobuf.ByteStringgetSubresourceBytes()The optional subresource type.StringgetVerb()A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy.com.google.protobuf.ByteStringgetVerbBytes()A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy.StringgetVersion()The API version of the resource.com.google.protobuf.ByteStringgetVersionBytes()The API version of the resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getGroup
String getGroup()
The API group of the resource. "*" means all.
string group = 1;- Returns:
- The group.
-
getGroupBytes
com.google.protobuf.ByteString getGroupBytes()
The API group of the resource. "*" means all.
string group = 1;- Returns:
- The bytes for group.
-
getNs
String getNs()
Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
string ns = 2;- Returns:
- The ns.
-
getNsBytes
com.google.protobuf.ByteString getNsBytes()
Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
string ns = 2;- Returns:
- The bytes for ns.
-
getName
String getName()
The name of the resource being requested. Empty means all.
string name = 3;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the resource being requested. Empty means all.
string name = 3;- Returns:
- The bytes for name.
-
getResource
String getResource()
The optional resource type requested. "*" means all.
string resource = 4;- Returns:
- The resource.
-
getResourceBytes
com.google.protobuf.ByteString getResourceBytes()
The optional resource type requested. "*" means all.
string resource = 4;- Returns:
- The bytes for resource.
-
getSubresource
String getSubresource()
The optional subresource type.
string subresource = 5;- Returns:
- The subresource.
-
getSubresourceBytes
com.google.protobuf.ByteString getSubresourceBytes()
The optional subresource type.
string subresource = 5;- Returns:
- The bytes for subresource.
-
getVerb
String getVerb()
A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
string verb = 6;- Returns:
- The verb.
-
getVerbBytes
com.google.protobuf.ByteString getVerbBytes()
A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
string verb = 6;- Returns:
- The bytes for verb.
-
getVersion
String getVersion()
The API version of the resource. "*" means all.
string version = 7;- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The API version of the resource. "*" means all.
string version = 7;- Returns:
- The bytes for version.
-
-