Class TagValuesGrpc.TagValuesBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<TagValuesGrpc.TagValuesBlockingStub>
-
- com.google.cloud.resourcemanager.v3.TagValuesGrpc.TagValuesBlockingStub
-
- Enclosing class:
- TagValuesGrpc
public static final class TagValuesGrpc.TagValuesBlockingStub extends io.grpc.stub.AbstractBlockingStub<TagValuesGrpc.TagValuesBlockingStub>
A stub to allow clients to do synchronous 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.TagValuesBlockingStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
com.google.longrunning.Operation
createTagValue(CreateTagValueRequest request)
Creates a TagValue as a child of the specified TagKey.com.google.longrunning.Operation
deleteTagValue(DeleteTagValueRequest request)
Deletes a TagValue.com.google.iam.v1.Policy
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a TagValue.TagValue
getNamespacedTagValue(GetNamespacedTagValueRequest request)
Retrieves a TagValue by its namespaced name.TagValue
getTagValue(GetTagValueRequest request)
Retrieves a TagValue.ListTagValuesResponse
listTagValues(ListTagValuesRequest request)
Lists all TagValues for a specific TagKey.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.iam.v1.TestIamPermissionsResponse
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified TagValue.com.google.longrunning.Operation
updateTagValue(UpdateTagValueRequest request)
Updates the attributes of the TagValue resource.
-
-
-
Method Detail
-
build
protected TagValuesGrpc.TagValuesBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<TagValuesGrpc.TagValuesBlockingStub>
-
listTagValues
public ListTagValuesResponse listTagValues(ListTagValuesRequest request)
Lists all TagValues for a specific TagKey.
-
getTagValue
public 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 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.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.longrunning.Operation updateTagValue(UpdateTagValueRequest request)
Updates the attributes of the TagValue resource.
-
deleteTagValue
public com.google.longrunning.Operation deleteTagValue(DeleteTagValueRequest request)
Deletes a TagValue. The TagValue cannot have any bindings when it is deleted.
-
getIamPolicy
public 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.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.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.
-
-