Module: Google::Cloud::Dialogflow::V2::KnowledgeBases::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/dialogflow/v2/knowledge_bases/paths.rb
Overview
Path helper methods for the KnowledgeBases API.
Instance Method Summary collapse
-
#knowledge_base_path(**args) ⇒ ::String
Create a fully-qualified KnowledgeBase 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
#knowledge_base_path(project: , knowledge_base: ) ⇒ ::String #knowledge_base_path(project: , location: , knowledge_base: ) ⇒ ::String
Create a fully-qualified KnowledgeBase 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/knowledge_bases/paths.rb', line 48 def knowledge_base_path **args resources = { "knowledge_base:project" => (proc do |project:, knowledge_base:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/knowledgeBases/#{knowledge_base}" end), "knowledge_base:location:project" => (proc do |project:, location:, knowledge_base:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/knowledgeBases/#{knowledge_base}" 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}
79 80 81 82 83 |
# File 'lib/google/cloud/dialogflow/v2/knowledge_bases/paths.rb', line 79 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}
95 96 97 |
# File 'lib/google/cloud/dialogflow/v2/knowledge_bases/paths.rb', line 95 def project_path project: "projects/#{project}" end |