module Google::Cloud::Talent::V4::CompanyService::Paths
Path helper methods for the CompanyService
API.
Public Instance Methods
company_path(project:, tenant:, company: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/")
click to toggle source
Create a fully-qualified Company
resource string.
The resource will be in the following format:
`projects/{project}/tenants/{tenant}/companies/{company}`
@param project [String] @param tenant [String] @param company [String]
@return [::String]
# File lib/google/cloud/talent/v4/company_service/paths.rb, line 39 def company_path project:, tenant:, company: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "tenant cannot contain /" if tenant.to_s.include? "/" "projects/#{project}/tenants/#{tenant}/companies/#{company}" end
tenant_path(project:, tenant: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/")
click to toggle source
Create a fully-qualified Tenant resource string.
The resource will be in the following format:
`projects/{project}/tenants/{tenant}`
@param project [String] @param tenant [String]
@return [::String]
# File lib/google/cloud/talent/v4/company_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