module Google::Cloud::Talent::V4beta1::ApplicationService::Paths

Path helper methods for the ApplicationService API.

Public Instance Methods

application_path(project:, tenant:, profile:, application: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/") click to toggle source

Create a fully-qualified Application resource string.

The resource will be in the following format:

`projects/{project}/tenants/{tenant}/profiles/{profile}/applications/{application}`

@param project [String] @param tenant [String] @param profile [String] @param application [String]

@return [::String]

# File lib/google/cloud/talent/v4beta1/application_service/paths.rb, line 40
def application_path project:, tenant:, profile:, application:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "tenant cannot contain /" if tenant.to_s.include? "/"
  raise ::ArgumentError, "profile cannot contain /" if profile.to_s.include? "/"

  "projects/#{project}/tenants/#{tenant}/profiles/#{profile}/applications/#{application}"
end
company_path(**args) click to toggle source

Create a fully-qualified Company resource string.

@overload company_path(project:, tenant:, company:)

The resource will be in the following format:

`projects/{project}/tenants/{tenant}/companies/{company}`

@param project [String]
@param tenant [String]
@param company [String]

@overload company_path(project:, company:)

The resource will be in the following format:

`projects/{project}/companies/{company}`

@param project [String]
@param company [String]

@return [::String]

# File lib/google/cloud/talent/v4beta1/application_service/paths.rb, line 69
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
job_path(**args) click to toggle source

Create a fully-qualified Job resource string.

@overload job_path(project:, tenant:, job:)

The resource will be in the following format:

`projects/{project}/tenants/{tenant}/jobs/{job}`

@param project [String]
@param tenant [String]
@param job [String]

@overload job_path(project:, job:)

The resource will be in the following format:

`projects/{project}/jobs/{job}`

@param project [String]
@param job [String]

@return [::String]

# File lib/google/cloud/talent/v4beta1/application_service/paths.rb, line 110
def job_path **args
  resources = {
    "job:project:tenant" => (proc do |project:, tenant:, job:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
      raise ::ArgumentError, "tenant cannot contain /" if tenant.to_s.include? "/"

      "projects/#{project}/tenants/#{tenant}/jobs/#{job}"
    end),
    "job:project" => (proc do |project:, job:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/jobs/#{job}"
    end)
  }

  resource = resources[args.keys.sort.join(":")]
  raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
  resource.call(**args)
end
profile_path(project:, tenant:, profile: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/") click to toggle source

Create a fully-qualified Profile resource string.

The resource will be in the following format:

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

@param project [String] @param tenant [String] @param profile [String]

@return [::String]

# File lib/google/cloud/talent/v4beta1/application_service/paths.rb, line 142
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