Module: Google::Cloud::Talent::V4beta1::Completion::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/talent/v4beta1/completion/paths.rb
Overview
Path helper methods for the Completion API.
Instance Method Summary collapse
-
#company_path(**args) ⇒ ::String
Create a fully-qualified Company resource string.
-
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
-
#tenant_path(project:, tenant:) ⇒ ::String
Create a fully-qualified Tenant resource string.
Instance Method Details
#company_path(project: , tenant: , company: ) ⇒ ::String #company_path(project: , company: ) ⇒ ::String
Create a fully-qualified Company resource string.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/google/cloud/talent/v4beta1/completion/paths.rb', line 48 def company_path **args resources = { "company:project:tenant" => (proc do |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), "company:project" => (proc do |project:, company:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/companies/#{company}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
The resource will be in the following format:
projects/{project}
78 79 80 |
# File 'lib/google/cloud/talent/v4beta1/completion/paths.rb', line 78 def project_path project: "projects/#{project}" 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}
93 94 95 96 97 |
# File 'lib/google/cloud/talent/v4beta1/completion/paths.rb', line 93 def tenant_path project:, tenant: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/tenants/#{tenant}" end |