module Google::Cloud::Dialogflow::V2::Intents::Paths
Path helper methods for the Intents
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/intents/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
context_path(**args)
click to toggle source
Create a fully-qualified Context resource string.
@overload context_path
(project:, session:, context:)
The resource will be in the following format: `projects/{project}/agent/sessions/{session}/contexts/{context}` @param project [String] @param session [String] @param context [String]
@overload context_path
(project:, environment:, user:, session:, context:)
The resource will be in the following format: `projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session}/contexts/{context}` @param project [String] @param environment [String] @param user [String] @param session [String] @param context [String]
@overload context_path
(project:, location:, session:, context:)
The resource will be in the following format: `projects/{project}/locations/{location}/agent/sessions/{session}/contexts/{context}` @param project [String] @param location [String] @param session [String] @param context [String]
@overload context_path
(project:, location:, environment:, user:, session:, context:)
The resource will be in the following format: `projects/{project}/locations/{location}/agent/environments/{environment}/users/{user}/sessions/{session}/contexts/{context}` @param project [String] @param location [String] @param environment [String] @param user [String] @param session [String] @param context [String]
@return [::String]
# File lib/google/cloud/dialogflow/v2/intents/paths.rb, line 109 def context_path **args resources = { "context:project:session" => (proc do |project:, session:, context:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "session cannot contain /" if session.to_s.include? "/" "projects/#{project}/agent/sessions/#{session}/contexts/#{context}" end), "context:environment:project:session:user" => (proc do |project:, environment:, user:, session:, context:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "environment cannot contain /" if environment.to_s.include? "/" raise ::ArgumentError, "user cannot contain /" if user.to_s.include? "/" raise ::ArgumentError, "session cannot contain /" if session.to_s.include? "/" "projects/#{project}/agent/environments/#{environment}/users/#{user}/sessions/#{session}/contexts/#{context}" end), "context:location:project:session" => (proc do |project:, location:, session:, context:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "session cannot contain /" if session.to_s.include? "/" "projects/#{project}/locations/#{location}/agent/sessions/#{session}/contexts/#{context}" end), "context:environment:location:project:session:user" => (proc do |project:, location:, environment:, user:, session:, context:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "environment cannot contain /" if environment.to_s.include? "/" raise ::ArgumentError, "user cannot contain /" if user.to_s.include? "/" raise ::ArgumentError, "session cannot contain /" if session.to_s.include? "/" "projects/#{project}/locations/#{location}/agent/environments/#{environment}/users/#{user}/sessions/#{session}/contexts/#{context}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end
intent_path(**args)
click to toggle source
Create a fully-qualified Intent
resource string.
@overload intent_path
(project:, intent:)
The resource will be in the following format: `projects/{project}/agent/intents/{intent}` @param project [String] @param intent [String]
@overload intent_path
(project:, location:, intent:)
The resource will be in the following format: `projects/{project}/locations/{location}/agent/intents/{intent}` @param project [String] @param location [String] @param intent [String]
@return [::String]
# File lib/google/cloud/dialogflow/v2/intents/paths.rb, line 169 def intent_path **args resources = { "intent:project" => (proc do |project:, intent:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/agent/intents/#{intent}" end), "intent:location:project" => (proc do |project:, location:, intent:| 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/intents/#{intent}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end