Module: Google::Cloud::RecaptchaEnterprise::V1::RecaptchaEnterpriseService::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb
Overview
Path helper methods for the RecaptchaEnterpriseService API.
Instance Method Summary collapse
-
#assessment_path(project:, assessment:) ⇒ ::String
Create a fully-qualified Assessment resource string.
-
#firewall_policy_path(project:, firewallpolicy:) ⇒ ::String
Create a fully-qualified FirewallPolicy resource string.
-
#key_path(project:, key:) ⇒ ::String
Create a fully-qualified Key resource string.
-
#metrics_path(project:, key:) ⇒ ::String
Create a fully-qualified Metrics resource string.
-
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
-
#related_account_group_path(project:, relatedaccountgroup:) ⇒ ::String
Create a fully-qualified RelatedAccountGroup resource string.
Instance Method Details
#assessment_path(project:, assessment:) ⇒ ::String
Create a fully-qualified Assessment resource string.
The resource will be in the following format:
projects/{project}/assessments/{assessment}
38 39 40 41 42 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 38 def assessment_path project:, assessment: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/assessments/#{assessment}" end |
#firewall_policy_path(project:, firewallpolicy:) ⇒ ::String
Create a fully-qualified FirewallPolicy resource string.
The resource will be in the following format:
projects/{project}/firewallpolicies/{firewallpolicy}
55 56 57 58 59 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 55 def firewall_policy_path project:, firewallpolicy: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/firewallpolicies/#{firewallpolicy}" end |
#key_path(project:, key:) ⇒ ::String
Create a fully-qualified Key resource string.
The resource will be in the following format:
projects/{project}/keys/{key}
72 73 74 75 76 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 72 def key_path project:, key: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/keys/#{key}" end |
#metrics_path(project:, key:) ⇒ ::String
Create a fully-qualified Metrics resource string.
The resource will be in the following format:
projects/{project}/keys/{key}/metrics
89 90 91 92 93 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 89 def metrics_path project:, key: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/keys/#{key}/metrics" end |
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
The resource will be in the following format:
projects/{project}
105 106 107 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 105 def project_path project: "projects/#{project}" end |
#related_account_group_path(project:, relatedaccountgroup:) ⇒ ::String
Create a fully-qualified RelatedAccountGroup resource string.
The resource will be in the following format:
projects/{project}/relatedaccountgroups/{relatedaccountgroup}
120 121 122 123 124 |
# File 'lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/paths.rb', line 120 def project:, relatedaccountgroup: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/relatedaccountgroups/#{}" end |