Module: Google::Cloud::Dialogflow::V2::Fulfillments::Paths

Extended by:
Paths
Included in:
Client, Paths, Rest::Client
Defined in:
lib/google/cloud/dialogflow/v2/fulfillments/paths.rb

Overview

Path helper methods for the Fulfillments API.

Instance Method Summary collapse

Instance Method Details

#fulfillment_path(project: ) ⇒ ::String #fulfillment_path(project: , location: ) ⇒ ::String

Create a fully-qualified Fulfillment resource string.

Overloads:

  • #fulfillment_path(project: ) ⇒ ::String

    The resource will be in the following format:

    projects/{project}/agent/fulfillment

    Parameters:

    • project (String) (defaults to: )
  • #fulfillment_path(project: , location: ) ⇒ ::String

    The resource will be in the following format:

    projects/{project}/locations/{location}/agent/fulfillment

    Parameters:

    • project (String) (defaults to: )
    • location (String) (defaults to: )

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/google/cloud/dialogflow/v2/fulfillments/paths.rb', line 46

def fulfillment_path **args
  resources = {
    "project" => (proc do |project:|
      "projects/#{project}/agent/fulfillment"
    end),
    "location:project" => (proc do |project:, location:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/locations/#{location}/agent/fulfillment"
    end)
  }

  resource = resources[args.keys.sort.join(":")]
  raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
  resource.call(**args)
end