Module: Google::Cloud::Bigquery::DataPolicies::V1::DataPolicyService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/bigquery/data_policies/v1/data_policy_service/paths.rb
Overview
Path helper methods for the DataPolicyService API.
Instance Method Summary collapse
-
#data_policy_path(project:, location:, data_policy:) ⇒ ::String
Create a fully-qualified DataPolicy resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
Instance Method Details
#data_policy_path(project:, location:, data_policy:) ⇒ ::String
Create a fully-qualified DataPolicy resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/dataPolicies/{data_policy}
40 41 42 43 44 45 |
# File 'lib/google/cloud/bigquery/data_policies/v1/data_policy_service/paths.rb', line 40 def data_policy_path project:, location:, data_policy: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/dataPolicies/#{data_policy}" end |
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
The resource will be in the following format:
projects/{project}/locations/{location}
58 59 60 61 62 |
# File 'lib/google/cloud/bigquery/data_policies/v1/data_policy_service/paths.rb', line 58 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end |