Module: Google::Cloud::Talent::V4::Completion::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/talent/v4/completion/paths.rb
Overview
Path helper methods for the Completion API.
Instance Method Summary collapse
-
#company_path(project:, tenant:, company:) ⇒ ::String
Create a fully-qualified Company resource string.
-
#tenant_path(project:, tenant:) ⇒ ::String
Create a fully-qualified Tenant resource string.
Instance Method Details
#company_path(project:, tenant:, company:) ⇒ ::String
Create a fully-qualified Company resource string.
The resource will be in the following format:
projects/{project}/tenants/{tenant}/companies/{company}
39 40 41 42 43 44 |
# File 'lib/google/cloud/talent/v4/completion/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:) ⇒ ::String
Create a fully-qualified Tenant resource string.
The resource will be in the following format:
projects/{project}/tenants/{tenant}
57 58 59 60 61 |
# File 'lib/google/cloud/talent/v4/completion/paths.rb', line 57 def tenant_path project:, tenant: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/tenants/#{tenant}" end |