Module: Google::Cloud::Dialogflow::V2::Conversations::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/cloud/dialogflow/v2/conversations/paths.rb
Overview
Path helper methods for the Conversations API.
Instance Method Summary collapse
-
#conversation_path(**args) ⇒ ::String
Create a fully-qualified Conversation resource string.
-
#conversation_profile_path(**args) ⇒ ::String
Create a fully-qualified ConversationProfile resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
Instance Method Details
#conversation_path(project: , conversation: ) ⇒ ::String #conversation_path(project: , location: , conversation: ) ⇒ ::String
Create a fully-qualified Conversation resource string.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# 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(project: , conversation_profile: ) ⇒ ::String #conversation_profile_path(project: , location: , conversation_profile: ) ⇒ ::String
Create a fully-qualified ConversationProfile resource string.
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# 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:) ⇒ ::String
Create a fully-qualified Location resource string.
The resource will be in the following format:
projects/{project}/locations/{location}
120 121 122 123 124 |
# 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:) ⇒ ::String
Create a fully-qualified Project resource string.
The resource will be in the following format:
projects/{project}
136 137 138 |
# File 'lib/google/cloud/dialogflow/v2/conversations/paths.rb', line 136 def project_path project: "projects/#{project}" end |