Reference documentation and code samples for the Resource Manager V3 API class Google::Cloud::ResourceManager::V3::TagKeys::Client.
Client for the TagKeys service.
Allow users to create and manage tag keys.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::ConfigurationConfigure the TagKeys Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all TagKeys clients ::Google::Cloud::ResourceManager::V3::TagKeys::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::ConfigurationConfigure the TagKeys Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_tag_key
def create_tag_key(request, options = nil) -> ::Gapic::Operation
def create_tag_key(tag_key: nil, validate_only: nil) -> ::Gapic::OperationCreates 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.
def create_tag_key(request, options = nil) -> ::Gapic::Operationcreate_tag_key via a request object, either of type
CreateTagKeyRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::CreateTagKeyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_tag_key(tag_key: nil, validate_only: nil) -> ::Gapic::Operationcreate_tag_key via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
tag_key (::Google::Cloud::ResourceManager::V3::TagKey, ::Hash) — Required. The TagKey to be created. Only fields
short_name,description, andparentare considered during the creation request. - validate_only (::Boolean) — Optional. Set to true to perform validations necessary for creating the resource, but not actually perform the action.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::CreateTagKeyRequest.new # Call the create_tag_key method. result = client.create_tag_key request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_tag_key
def delete_tag_key(request, options = nil) -> ::Gapic::Operation
def delete_tag_key(name: nil, validate_only: nil, etag: nil) -> ::Gapic::OperationDeletes a TagKey. The TagKey cannot be deleted if it has any child TagValues.
def delete_tag_key(request, options = nil) -> ::Gapic::Operationdelete_tag_key via a request object, either of type
DeleteTagKeyRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::DeleteTagKeyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_tag_key(name: nil, validate_only: nil, etag: nil) -> ::Gapic::Operationdelete_tag_key via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The resource name of a TagKey to be deleted in the format
tagKeys/123. The TagKey cannot be a parent of any existing TagValues or it will not be deleted successfully. - validate_only (::Boolean) — Optional. Set as true to perform validations necessary for deletion, but not actually perform the action.
- etag (::String) — Optional. The etag known to the client for the expected state of the TagKey. This is to be used for optimistic concurrency.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::DeleteTagKeyRequest.new # Call the delete_tag_key method. result = client.delete_tag_key request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#get_iam_policy
def get_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
def get_iam_policy(resource: nil, options: nil) -> ::Google::Iam::V1::PolicyGets 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.
def get_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policyget_iam_policy via a request object, either of type
Iam::V1::GetIamPolicyRequest or an equivalent Hash.
- request (::Google::Iam::V1::GetIamPolicyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_iam_policy(resource: nil, options: nil) -> ::Google::Iam::V1::Policyget_iam_policy via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
-
options (::Google::Iam::V1::GetPolicyOptions, ::Hash) — OPTIONAL: A
GetPolicyOptionsobject for specifying options toGetIamPolicy.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::Policy)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::GetIamPolicyRequest.new # Call the get_iam_policy method. result = client.get_iam_policy request # The returned object is of type Google::Iam::V1::Policy. p result
#get_namespaced_tag_key
def get_namespaced_tag_key(request, options = nil) -> ::Google::Cloud::ResourceManager::V3::TagKey
def get_namespaced_tag_key(name: nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyRetrieves 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.
def get_namespaced_tag_key(request, options = nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyget_namespaced_tag_key via a request object, either of type
GetNamespacedTagKeyRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::GetNamespacedTagKeyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_namespaced_tag_key(name: nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyget_namespaced_tag_key via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. A namespaced tag key name in the format
{parentId}/{tagKeyShort}, such as42/foofor a key with short name "foo" under the organization with ID 42 orr2-d2/barfor a key with short name "bar" under the projectr2-d2.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::ResourceManager::V3::TagKey)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::GetNamespacedTagKeyRequest.new # Call the get_namespaced_tag_key method. result = client.get_namespaced_tag_key request # The returned object is of type Google::Cloud::ResourceManager::V3::TagKey. p result
#get_tag_key
def get_tag_key(request, options = nil) -> ::Google::Cloud::ResourceManager::V3::TagKey
def get_tag_key(name: nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyRetrieves a TagKey. This method will return PERMISSION_DENIED if the
key does not exist or the user does not have permission to view it.
def get_tag_key(request, options = nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyget_tag_key via a request object, either of type
GetTagKeyRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::GetTagKeyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_tag_key(name: nil) -> ::Google::Cloud::ResourceManager::V3::TagKeyget_tag_key via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. A resource name in the format
tagKeys/{id}, such astagKeys/123.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::ResourceManager::V3::TagKey)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::GetTagKeyRequest.new # Call the get_tag_key method. result = client.get_tag_key request # The returned object is of type Google::Cloud::ResourceManager::V3::TagKey. p result
#initialize
def initialize() { |config| ... } -> ClientCreate a new TagKeys client object.
- (config) — Configure the TagKeys client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a client using a custom configuration client = ::Google::Cloud::ResourceManager::V3::TagKeys::Client.new do |config| config.timeout = 10.0 end
#list_tag_keys
def list_tag_keys(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>
def list_tag_keys(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>Lists all TagKeys for a parent resource.
def list_tag_keys(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>list_tag_keys via a request object, either of type
ListTagKeysRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::ListTagKeysRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_tag_keys(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>list_tag_keys via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The resource name of the TagKey's parent.
Must be of the form
organizations/{org_id}orprojects/{project_id}orprojects/{project_number} - page_size (::Integer) — Optional. The maximum number of TagKeys to return in the response. The server allows a maximum of 300 TagKeys to return. If unspecified, the server will use 100 as the default.
-
page_token (::String) — Optional. A pagination token returned from a previous call to
ListTagKeythat indicates where this listing should continue from.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::ResourceManager::V3::TagKey>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::ListTagKeysRequest.new # Call the list_tag_keys method. result = client.list_tag_keys request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::ResourceManager::V3::TagKey. p item end
#logger
def logger() -> LoggerThe logger used for request/response debug logging.
- (Logger)
#operations_client
def operations_client() -> ::Google::Cloud::ResourceManager::V3::TagKeys::OperationsGet the associated client for long-running operations.
#set_iam_policy
def set_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policy
def set_iam_policy(resource: nil, policy: nil, update_mask: nil) -> ::Google::Iam::V1::PolicySets 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.
def set_iam_policy(request, options = nil) -> ::Google::Iam::V1::Policyset_iam_policy via a request object, either of type
Iam::V1::SetIamPolicyRequest or an equivalent Hash.
- request (::Google::Iam::V1::SetIamPolicyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def set_iam_policy(resource: nil, policy: nil, update_mask: nil) -> ::Google::Iam::V1::Policyset_iam_policy via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
-
policy (::Google::Iam::V1::Policy, ::Hash) — REQUIRED: The complete policy to be applied to the
resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them. -
update_mask (::Google::Protobuf::FieldMask, ::Hash) — OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only
the fields in the mask will be modified. If no mask is provided, the
following default mask is used:
paths: "bindings, etag"
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::Policy)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::SetIamPolicyRequest.new # Call the set_iam_policy method. result = client.set_iam_policy request # The returned object is of type Google::Iam::V1::Policy. p result
#test_iam_permissions
def test_iam_permissions(request, options = nil) -> ::Google::Iam::V1::TestIamPermissionsResponse
def test_iam_permissions(resource: nil, permissions: nil) -> ::Google::Iam::V1::TestIamPermissionsResponseReturns 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.
def test_iam_permissions(request, options = nil) -> ::Google::Iam::V1::TestIamPermissionsResponsetest_iam_permissions via a request object, either of type
Iam::V1::TestIamPermissionsRequest or an equivalent Hash.
- request (::Google::Iam::V1::TestIamPermissionsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def test_iam_permissions(resource: nil, permissions: nil) -> ::Google::Iam::V1::TestIamPermissionsResponsetest_iam_permissions via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- resource (::String) — REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.
-
permissions (::Array<::String>) — The set of permissions to check for the
resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Iam::V1::TestIamPermissionsResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Iam::V1::TestIamPermissionsRequest.new # Call the test_iam_permissions method. result = client.test_iam_permissions request # The returned object is of type Google::Iam::V1::TestIamPermissionsResponse. p result
#universe_domain
def universe_domain() -> StringThe effective universe domain
- (String)
#update_tag_key
def update_tag_key(request, options = nil) -> ::Gapic::Operation
def update_tag_key(tag_key: nil, update_mask: nil, validate_only: nil) -> ::Gapic::OperationUpdates the attributes of the TagKey resource.
def update_tag_key(request, options = nil) -> ::Gapic::Operationupdate_tag_key via a request object, either of type
UpdateTagKeyRequest or an equivalent Hash.
- request (::Google::Cloud::ResourceManager::V3::UpdateTagKeyRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_tag_key(tag_key: nil, update_mask: nil, validate_only: nil) -> ::Gapic::Operationupdate_tag_key via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
tag_key (::Google::Cloud::ResourceManager::V3::TagKey, ::Hash) — Required. The new definition of the TagKey. Only the
descriptionandetagfields can be updated by this request. If theetagfield is not empty, it must match theetagfield of the existing tag key. Otherwise,ABORTEDwill be returned. -
update_mask (::Google::Protobuf::FieldMask, ::Hash) — Fields to be updated. The mask may only contain
descriptionoretag. If omitted entirely, bothdescriptionandetagare assumed to be significant. - validate_only (::Boolean) — Set as true to perform validations necessary for updating the resource, but not actually perform the action.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/resource_manager/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ResourceManager::V3::TagKeys::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::ResourceManager::V3::UpdateTagKeyRequest.new # Call the update_tag_key method. result = client.update_tag_key request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end