BigQuery Data Policy Service V1 API - Class Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client (v0.10.0)
Stay organized with collections
Save and categorize content based on your preferences.
Reference documentation and code samples for the BigQuery Data Policy Service V1 API class Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.
REST client for the DataPolicyService service.
Data Policy Service provides APIs for managing the label-policy bindings.
Inherits
- Object
Methods
.configure
defself.configure(){|config|...}->Client::ConfigurationConfigure the DataPolicyService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all DataPolicyService clients ::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.configuredo|config| config.timeout=10.0 end
#configure
defconfigure(){|config|...}->Client::ConfigurationConfigure the DataPolicyService 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_data_policy
defcreate_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy
defcreate_data_policy(parent:nil,data_policy:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyCreates a new data policy under a project with the given dataPolicyId
(used as the display name), policy tag, and data policy type.
defcreate_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicycreate_data_policy via a request object, either of type
CreateDataPolicyRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::CreateDataPolicyRequest, ::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.
defcreate_data_policy(parent:nil,data_policy:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicycreate_data_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).
-
parent (::String) — Required. Resource name of the project that the data policy will belong to.
The format is
projects/{project_number}/locations/{location_id}. -
data_policy (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy, ::Hash) — Required. The data policy to create. The
namefield does not need to be provided for the data policy creation.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::CreateDataPolicyRequest.new # Call the create_data_policy method. result=client.create_data_policyrequest # The returned object is of type Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy. presult
#delete_data_policy
defdelete_data_policy(request,options=nil)->::Google::Protobuf::Empty
defdelete_data_policy(name:nil)->::Google::Protobuf::EmptyDeletes the data policy specified by its resource name.
defdelete_data_policy(request,options=nil)->::Google::Protobuf::Emptydelete_data_policy via a request object, either of type
Google::Cloud::Bigquery::DataPolicies::V1::DeleteDataPolicyRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::DeleteDataPolicyRequest, ::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.
defdelete_data_policy(name:nil)->::Google::Protobuf::Emptydelete_data_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).
-
name (::String) — Required. Resource name of the data policy to delete. Format is
projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Protobuf::Empty)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::DeleteDataPolicyRequest.new # Call the delete_data_policy method. result=client.delete_data_policyrequest # The returned object is of type Google::Protobuf::Empty. presult
#get_data_policy
defget_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy
defget_data_policy(name:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyGets the data policy specified by its resource name.
defget_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyget_data_policy via a request object, either of type
GetDataPolicyRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::GetDataPolicyRequest, ::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.
defget_data_policy(name:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyget_data_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).
-
name (::String) — Required. Resource name of the requested data policy. Format is
projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::GetDataPolicyRequest.new # Call the get_data_policy method. result=client.get_data_policyrequest # The returned object is of type Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy. presult
#get_iam_policy
defget_iam_policy(request,options=nil)->::Google::Iam::V1::Policy
defget_iam_policy(resource:nil,options:nil)->::Google::Iam::V1::PolicyGets the IAM policy for the specified data policy.
defget_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.
defget_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.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Iam::V1::Policy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::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_policyrequest # The returned object is of type Google::Iam::V1::Policy. presult
#initialize
definitialize(){|config|...}->ClientCreate a new DataPolicyService REST client object.
- (config) — Configure the DataPolicyService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client=::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a client using a custom configuration client=::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.newdo|config| config.timeout=10.0 end
#list_data_policies
deflist_data_policies(request,options=nil)->::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>
deflist_data_policies(parent:nil,page_size:nil,page_token:nil,filter:nil)->::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>List all of the data policies in the specified parent project.
deflist_data_policies(request,options=nil)->::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>list_data_policies via a request object, either of type
ListDataPoliciesRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::ListDataPoliciesRequest, ::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.
deflist_data_policies(parent:nil,page_size:nil,page_token:nil,filter:nil)->::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>list_data_policies 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. Resource name of the project for which to list data policies.
Format is
projects/{project_number}/locations/{location_id}. - page_size (::Integer) — The maximum number of data policies to return. Must be a value between 1 and 1000. If not set, defaults to 50.
-
page_token (::String) — The
nextPageTokenvalue returned from a previous list request, if any. If not set, defaults to an empty string. - filter (::String) — Filters the data policies by policy tags that they are associated with. Currently filter only supports "policy_tag" based filtering and OR based predicates. Sample filter can be "policy_tag: projects/1/locations/us/taxonomies/2/policyTags/3". You may also use wildcard such as "policy_tag: projects/1/locations/us/taxonomies/2*". Please note that OR predicates cannot be used with wildcard filters.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::ListDataPoliciesRequest.new # Call the list_data_policies method. result=client.list_data_policiesrequest # 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.eachdo|item| # Each element is of type ::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy. pitem end
#logger
deflogger()->LoggerThe logger used for request/response debug logging.
- (Logger)
#rename_data_policy
defrename_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy
defrename_data_policy(name:nil,new_data_policy_id:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyRenames the id (display name) of the specified data policy.
defrename_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyrename_data_policy via a request object, either of type
RenameDataPolicyRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::RenameDataPolicyRequest, ::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.
defrename_data_policy(name:nil,new_data_policy_id:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyrename_data_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).
-
name (::String) — Required. Resource name of the data policy to rename. The format is
projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id} - new_data_policy_id (::String) — Required. The new data policy id.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::RenameDataPolicyRequest.new # Call the rename_data_policy method. result=client.rename_data_policyrequest # The returned object is of type Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy. presult
#set_iam_policy
defset_iam_policy(request,options=nil)->::Google::Iam::V1::Policy
defset_iam_policy(resource:nil,policy:nil,update_mask:nil)->::Google::Iam::V1::PolicySets the IAM policy for the specified data policy.
defset_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.
defset_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"
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Iam::V1::Policy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::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_policyrequest # The returned object is of type Google::Iam::V1::Policy. presult
#test_iam_permissions
deftest_iam_permissions(request,options=nil)->::Google::Iam::V1::TestIamPermissionsResponse
deftest_iam_permissions(resource:nil,permissions:nil)->::Google::Iam::V1::TestIamPermissionsResponseReturns the caller's permission on the specified data policy resource.
deftest_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.
deftest_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.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Iam::V1::TestIamPermissionsResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::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_permissionsrequest # The returned object is of type Google::Iam::V1::TestIamPermissionsResponse. presult
#universe_domain
defuniverse_domain()->StringThe effective universe domain
- (String)
#update_data_policy
defupdate_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy
defupdate_data_policy(data_policy:nil,update_mask:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyUpdates the metadata for an existing data policy. The target data policy can be specified by the resource name.
defupdate_data_policy(request,options=nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyupdate_data_policy via a request object, either of type
UpdateDataPolicyRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::DataPolicies::V1::UpdateDataPolicyRequest, ::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.
defupdate_data_policy(data_policy:nil,update_mask:nil)->::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyupdate_data_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).
-
data_policy (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy, ::Hash) — Required. Update the data policy's metadata.
The target data policy is determined by the
namefield. Other fields are updated to the specified values based on the field masks. -
update_mask (::Google::Protobuf::FieldMask, ::Hash) — The update mask applies to the resource. For the
FieldMaskdefinition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all of the fields that are allowed to update.Updates to the
nameanddataPolicyIdfields are not allowed.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require"google/cloud/bigquery/data_policies/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::DataPolicies::V1::UpdateDataPolicyRequest.new # Call the update_data_policy method. result=client.update_data_policyrequest # The returned object is of type Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy. presult