Class TagValuesGrpc.TagValuesFutureStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractFutureStub<TagValuesGrpc.TagValuesFutureStub>
-
- com.google.cloud.resourcemanager.v3.TagValuesGrpc.TagValuesFutureStub
-
- Enclosing class:
- TagValuesGrpc
public static final class TagValuesGrpc.TagValuesFutureStub extends io.grpc.stub.AbstractFutureStub<TagValuesGrpc.TagValuesFutureStub>
A stub to allow clients to do ListenableFuture-style rpc calls to service TagValues.Allow users to create and manage tag values.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected TagValuesGrpc.TagValuesFutureStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
createTagValue(CreateTagValueRequest request)
Creates a TagValue as a child of the specified TagKey.com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
deleteTagValue(DeleteTagValueRequest request)
Deletes a TagValue.com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.Policy>
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a TagValue.com.google.common.util.concurrent.ListenableFuture<TagValue>
getNamespacedTagValue(GetNamespacedTagValueRequest request)
Retrieves a TagValue by its namespaced name.com.google.common.util.concurrent.ListenableFuture<TagValue>
getTagValue(GetTagValueRequest request)
Retrieves a TagValue.com.google.common.util.concurrent.ListenableFuture<ListTagValuesResponse>
listTagValues(ListTagValuesRequest request)
Lists all TagValues for a specific TagKey.com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.Policy>
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on a TagValue, replacing any existing policy.com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.TestIamPermissionsResponse>
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified TagValue.com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
updateTagValue(UpdateTagValueRequest request)
Updates the attributes of the TagValue resource.
-
-
-
Method Detail
-
build
protected TagValuesGrpc.TagValuesFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<TagValuesGrpc.TagValuesFutureStub>
-
listTagValues
public com.google.common.util.concurrent.ListenableFuture<ListTagValuesResponse> listTagValues(ListTagValuesRequest request)
Lists all TagValues for a specific TagKey.
-
getTagValue
public com.google.common.util.concurrent.ListenableFuture<TagValue> getTagValue(GetTagValueRequest request)
Retrieves a TagValue. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it.
-
getNamespacedTagValue
public com.google.common.util.concurrent.ListenableFuture<TagValue> getNamespacedTagValue(GetNamespacedTagValueRequest request)
Retrieves a TagValue by its namespaced name. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it.
-
createTagValue
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> createTagValue(CreateTagValueRequest request)
Creates a TagValue as a child of the specified TagKey. If a 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 TagValues can exist under a TagKey at any given time.
-
updateTagValue
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> updateTagValue(UpdateTagValueRequest request)
Updates the attributes of the TagValue resource.
-
deleteTagValue
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> deleteTagValue(DeleteTagValueRequest request)
Deletes a TagValue. The TagValue cannot have any bindings when it is deleted.
-
getIamPolicy
public com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.Policy> getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a TagValue. The returned policy may be empty if no such policy or resource exists. The `resource` field should be the TagValue's resource name. For example: `tagValues/1234`. The caller must have the `cloudresourcemanager.googleapis.com/tagValues.getIamPolicy` permission on the identified TagValue to get the access control policy.
-
setIamPolicy
public com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.Policy> setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on a TagValue, replacing any existing policy. The `resource` field should be the TagValue's resource name. For example: `tagValues/1234`. The caller must have `resourcemanager.tagValues.setIamPolicy` permission on the identified tagValue.
-
testIamPermissions
public com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.TestIamPermissionsResponse> testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified TagValue. The `resource` field should be the TagValue's resource name. For example: `tagValues/1234`. There are no permissions required for making this API call.
-
-