module Google::Cloud::Dialogflow::V2::Agents::Paths

Path helper methods for the Agents API.

Public Instance Methods

agent_path(**args) click to toggle source

Create a fully-qualified Agent resource string.

@overload agent_path(project:)

The resource will be in the following format:

`projects/{project}/agent`

@param project [String]

@overload agent_path(project:, location:)

The resource will be in the following format:

`projects/{project}/locations/{location}/agent`

@param project [String]
@param location [String]

@return [::String]

# File lib/google/cloud/dialogflow/v2/agents/paths.rb, line 46
def agent_path **args
  resources = {
    "project" => (proc do |project:|
      "projects/#{project}/agent"
    end),
    "location:project" => (proc do |project:, location:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/locations/#{location}/agent"
    end)
  }

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

Create a fully-qualified Location resource string.

The resource will be in the following format:

`projects/{project}/locations/{location}`

@param project [String] @param location [String]

@return [::String]

# File lib/google/cloud/dialogflow/v2/agents/paths.rb, line 74
def location_path project:, location:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

  "projects/#{project}/locations/#{location}"
end
project_path(project: "projects/ click to toggle source

Create a fully-qualified Project resource string.

The resource will be in the following format:

`projects/{project}`

@param project [String]

@return [::String]

# File lib/google/cloud/dialogflow/v2/agents/paths.rb, line 90
def project_path project:
  "projects/#{project}"
end