module Google::Cloud::Dialogflow::V2::EntityTypes::Paths

Path helper methods for the EntityTypes 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/entity_types/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
entity_type_path(**args) click to toggle source

Create a fully-qualified EntityType resource string.

@overload entity_type_path(project:, entity_type:)

The resource will be in the following format:

`projects/{project}/agent/entityTypes/{entity_type}`

@param project [String]
@param entity_type [String]

@overload entity_type_path(project:, location:, entity_type:)

The resource will be in the following format:

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

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

@return [::String]

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

      "projects/#{project}/agent/entityTypes/#{entity_type}"
    end),
    "entity_type:location:project" => (proc do |project:, location:, entity_type:|
      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/entityTypes/#{entity_type}"
    end)
  }

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