module Google::Cloud::Dialogflow::V2::Versions::Paths

Path helper methods for the Versions 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/versions/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
version_path(**args) click to toggle source

Create a fully-qualified Version resource string.

@overload version_path(project:, version:)

The resource will be in the following format:

`projects/{project}/agent/versions/{version}`

@param project [String]
@param version [String]

@overload version_path(project:, location:, version:)

The resource will be in the following format:

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

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

@return [::String]

# File lib/google/cloud/dialogflow/v2/versions/paths.rb, line 84
def version_path **args
  resources = {
    "project:version" => (proc do |project:, version:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/agent/versions/#{version}"
    end),
    "location:project:version" => (proc do |project:, location:, version:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
      raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"

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

  resource = resources[args.keys.sort.join(":")]
  raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
  resource.call(**args)
end