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
      String getGroup()
      The API group of the resource.
      com.google.protobuf.ByteString getGroupBytes()
      The API group of the resource.
      String getName()
      The name of the resource being requested.
      com.google.protobuf.ByteString getNameBytes()
      The name of the resource being requested.
      String getNs()
      Namespace of the action being requested.
      com.google.protobuf.ByteString getNsBytes()
      Namespace of the action being requested.
      String getResource()
      The optional resource type requested.
      com.google.protobuf.ByteString getResourceBytes()
      The optional resource type requested.
      String getSubresource()
      The optional subresource type.
      com.google.protobuf.ByteString getSubresourceBytes()
      The optional subresource type.
      String getVerb()
      A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy.
      com.google.protobuf.ByteString getVerbBytes()
      A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy.
      String getVersion()
      The API version of the resource.
      com.google.protobuf.ByteString getVersionBytes()
      The API version of the resource.
      • 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

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