Module: Google::Cloud::Talent::V4beta1::ProfileService::Paths

Extended by:
Paths
Included in:
Client, Paths
Defined in:
lib/google/cloud/talent/v4beta1/profile_service/paths.rb

Overview

Path helper methods for the ProfileService API.

Instance Method Summary collapse

Instance Method Details

#profile_path(project:, tenant:, profile:) ⇒ ::String

Create a fully-qualified Profile resource string.

The resource will be in the following format:

projects/{project}/tenants/{tenant}/profiles/{profile}

Parameters:

  • project (String)
  • tenant (String)
  • profile (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


39
40
41
42
43
44
# File 'lib/google/cloud/talent/v4beta1/profile_service/paths.rb', line 39

def profile_path project:, tenant:, profile:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "tenant cannot contain /" if tenant.to_s.include? "/"

  "projects/#{project}/tenants/#{tenant}/profiles/#{profile}"
end

#tenant_path(project:, tenant:) ⇒ ::String

Create a fully-qualified Tenant resource string.

The resource will be in the following format:

projects/{project}/tenants/{tenant}

Parameters:

  • project (String)
  • tenant (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


57
58
59
60
61
# File 'lib/google/cloud/talent/v4beta1/profile_service/paths.rb', line 57

def tenant_path project:, tenant:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

  "projects/#{project}/tenants/#{tenant}"
end