module Google::Cloud::Dialogflow::V2::Conversations::Paths

Path helper methods for the Conversations API.

Public Instance Methods

conversation_path(**args) click to toggle source

Create a fully-qualified Conversation resource string.

@overload conversation_path(project:, conversation:)

The resource will be in the following format:

`projects/{project}/conversations/{conversation}`

@param project [String]
@param conversation [String]

@overload conversation_path(project:, location:, conversation:)

The resource will be in the following format:

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

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

@return [::String]

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

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

      "projects/#{project}/locations/#{location}/conversations/#{conversation}"
    end)
  }

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

Create a fully-qualified ConversationProfile resource string.

@overload conversation_profile_path(project:, conversation_profile:)

The resource will be in the following format:

`projects/{project}/conversationProfiles/{conversation_profile}`

@param project [String]
@param conversation_profile [String]

@overload conversation_profile_path(project:, location:, conversation_profile:)

The resource will be in the following format:

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

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

@return [::String]

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

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

      "projects/#{project}/locations/#{location}/conversationProfiles/#{conversation_profile}"
    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/conversations/paths.rb, line 120
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/conversations/paths.rb, line 136
def project_path project:
  "projects/#{project}"
end