module Google::Cloud::Dialogflow::V2::Documents::Paths
Path helper methods for the Documents
API.
Public Instance Methods
document_path(**args)
click to toggle source
Create a fully-qualified Document
resource string.
@overload document_path
(project:, knowledge_base:, document:)
The resource will be in the following format: `projects/{project}/knowledgeBases/{knowledge_base}/documents/{document}` @param project [String] @param knowledge_base [String] @param document [String]
@overload document_path
(project:, location:, knowledge_base:, document:)
The resource will be in the following format: `projects/{project}/locations/{location}/knowledgeBases/{knowledge_base}/documents/{document}` @param project [String] @param location [String] @param knowledge_base [String] @param document [String]
@return [::String]
# File lib/google/cloud/dialogflow/v2/documents/paths.rb, line 50 def document_path **args resources = { "document:knowledge_base:project" => (proc do |project:, knowledge_base:, document:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "knowledge_base cannot contain /" if knowledge_base.to_s.include? "/" "projects/#{project}/knowledgeBases/#{knowledge_base}/documents/#{document}" end), "document:knowledge_base:location:project" => (proc do |project:, location:, knowledge_base:, document:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "knowledge_base cannot contain /" if knowledge_base.to_s.include? "/" "projects/#{project}/locations/#{location}/knowledgeBases/#{knowledge_base}/documents/#{document}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end
knowledge_base_path(**args)
click to toggle source
Create a fully-qualified KnowledgeBase resource string.
@overload knowledge_base_path
(project:, knowledge_base:)
The resource will be in the following format: `projects/{project}/knowledgeBases/{knowledge_base}` @param project [String] @param knowledge_base [String]
@overload knowledge_base_path
(project:, location:, knowledge_base:)
The resource will be in the following format: `projects/{project}/locations/{location}/knowledgeBases/{knowledge_base}` @param project [String] @param location [String] @param knowledge_base [String]
@return [::String]
# File lib/google/cloud/dialogflow/v2/documents/paths.rb, line 93 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