Class TagKeysGrpc.TagKeysStub

  • Enclosing class:
    TagKeysGrpc

    public static final class TagKeysGrpc.TagKeysStub
    extends io.grpc.stub.AbstractAsyncStub<TagKeysGrpc.TagKeysStub>
    A stub to allow clients to do asynchronous rpc calls to service TagKeys.
     Allow users to create and manage tag keys.
     
    • Nested Class Summary

      • Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub

        io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected TagKeysGrpc.TagKeysStub build​(io.grpc.Channel channel, io.grpc.CallOptions callOptions)  
      void createTagKey​(CreateTagKeyRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
      Creates a new TagKey.
      void deleteTagKey​(DeleteTagKeyRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
      Deletes a TagKey.
      void getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request, io.grpc.stub.StreamObserver<com.google.iam.v1.Policy> responseObserver)
      Gets the access control policy for a TagKey.
      void getNamespacedTagKey​(GetNamespacedTagKeyRequest request, io.grpc.stub.StreamObserver<TagKey> responseObserver)
      Retrieves a TagKey by its namespaced name.
      void getTagKey​(GetTagKeyRequest request, io.grpc.stub.StreamObserver<TagKey> responseObserver)
      Retrieves a TagKey.
      void listTagKeys​(ListTagKeysRequest request, io.grpc.stub.StreamObserver<ListTagKeysResponse> responseObserver)
      Lists all TagKeys for a parent resource.
      void setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request, io.grpc.stub.StreamObserver<com.google.iam.v1.Policy> responseObserver)
      Sets the access control policy on a TagKey, replacing any existing policy.
      void testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request, io.grpc.stub.StreamObserver<com.google.iam.v1.TestIamPermissionsResponse> responseObserver)
      Returns permissions that a caller has on the specified TagKey.
      void updateTagKey​(UpdateTagKeyRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
      Updates the attributes of the TagKey resource.
      • Methods inherited from class io.grpc.stub.AbstractAsyncStub

        newStub, newStub
      • Methods inherited from class io.grpc.stub.AbstractStub

        getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
    • Method Detail

      • getTagKey

        public void getTagKey​(GetTagKeyRequest request,
                              io.grpc.stub.StreamObserver<TagKey> responseObserver)
         Retrieves a TagKey. This method will return `PERMISSION_DENIED` if the
         key does not exist or the user does not have permission to view it.
         
      • getNamespacedTagKey

        public void getNamespacedTagKey​(GetNamespacedTagKeyRequest request,
                                        io.grpc.stub.StreamObserver<TagKey> responseObserver)
         Retrieves a TagKey by its namespaced name.
         This method will return `PERMISSION_DENIED` if the key does not exist
         or the user does not have permission to view it.
         
      • createTagKey

        public void createTagKey​(CreateTagKeyRequest request,
                                 io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
         Creates a new TagKey. If another request with the same parameters is
         sent while the original request is in process, the second request
         will receive an error. A maximum of 1000 TagKeys can exist under a parent
         at any given time.
         
      • updateTagKey

        public void updateTagKey​(UpdateTagKeyRequest request,
                                 io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
         Updates the attributes of the TagKey resource.
         
      • deleteTagKey

        public void deleteTagKey​(DeleteTagKeyRequest request,
                                 io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
         Deletes a TagKey. The TagKey cannot be deleted if it has any child
         TagValues.
         
      • getIamPolicy

        public void getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request,
                                 io.grpc.stub.StreamObserver<com.google.iam.v1.Policy> responseObserver)
         Gets the access control policy for a TagKey. The returned policy may be
         empty if no such policy or resource exists. The `resource` field should
         be the TagKey's resource name. For example, "tagKeys/1234".
         The caller must have
         `cloudresourcemanager.googleapis.com/tagKeys.getIamPolicy` permission on
         the specified TagKey.
         
      • setIamPolicy

        public void setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request,
                                 io.grpc.stub.StreamObserver<com.google.iam.v1.Policy> responseObserver)
         Sets the access control policy on a TagKey, replacing any existing
         policy. The `resource` field should be the TagKey's resource name.
         For example, "tagKeys/1234".
         The caller must have `resourcemanager.tagKeys.setIamPolicy` permission
         on the identified tagValue.
         
      • testIamPermissions

        public void testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request,
                                       io.grpc.stub.StreamObserver<com.google.iam.v1.TestIamPermissionsResponse> responseObserver)
         Returns permissions that a caller has on the specified TagKey.
         The `resource` field should be the TagKey's resource name.
         For example, "tagKeys/1234".
         There are no permissions required for making this API call.