module Google::Cloud::Dialogflow::V2::KnowledgeBases::Paths

Path helper methods for the KnowledgeBases API.

Public Instance Methods

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/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: 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/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: "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/knowledge_bases/paths.rb, line 95
def project_path project:
  "projects/#{project}"
end