Module: Google::Cloud::RecaptchaEnterprise::V1beta1::RecaptchaEnterpriseService::Paths

Extended by:
Paths
Included in:
Client, Paths, Rest::Client
Defined in:
lib/google/cloud/recaptcha_enterprise/v1beta1/recaptcha_enterprise_service/paths.rb

Overview

Path helper methods for the RecaptchaEnterpriseService API.

Instance Method Summary collapse

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}

Parameters:

  • project (String)
  • assessment (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


38
39
40
41
42
# File 'lib/google/cloud/recaptcha_enterprise/v1beta1/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

#project_path(project:) ⇒ ::String

Create a fully-qualified Project resource string.

The resource will be in the following format:

projects/{project}

Parameters:

  • project (String)

Returns:

  • (::String)


54
55
56
# File 'lib/google/cloud/recaptcha_enterprise/v1beta1/recaptcha_enterprise_service/paths.rb', line 54

def project_path project:
  "projects/#{project}"
end