Module: Google::Cloud::Support::V2::CommentService::Paths

Extended by:
Paths
Included in:
Client, Paths
Defined in:
lib/google/cloud/support/v2/comment_service/paths.rb

Overview

Path helper methods for the CommentService API.

Instance Method Summary collapse

Instance Method Details

#case_path(organization: ) ⇒ ::String #case_path(project: ) ⇒ ::String

Create a fully-qualified Case resource string.

Overloads:

  • #case_path(organization: ) ⇒ ::String

    The resource will be in the following format:

    organizations/{organization}/cases/{case}

    Parameters:

    • organization (String) (defaults to: )
    • case (String)
  • #case_path(project: ) ⇒ ::String

    The resource will be in the following format:

    projects/{project}/cases/{case}

    Parameters:

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

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/google/cloud/support/v2/comment_service/paths.rb', line 47

def case_path **args
  resources = {
    "case:organization" => (proc do |organization:, case:|
      raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/"

      "organizations/#{organization}/cases/#{binding.local_variable_get :case}"
    end),
    "case:project" => (proc do |project:, case:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/cases/#{binding.local_variable_get :case}"
    end)
  }

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

#comment_path(organization: ) ⇒ ::String #comment_path(project: ) ⇒ ::String

Create a fully-qualified Comment resource string.

Overloads:

  • #comment_path(organization: ) ⇒ ::String

    The resource will be in the following format:

    organizations/{organization}/cases/{case}/comments/{comment}

    Parameters:

    • organization (String) (defaults to: )
    • case (String)
    • comment (String)
  • #comment_path(project: ) ⇒ ::String

    The resource will be in the following format:

    projects/{project}/cases/{case}/comments/{comment}

    Parameters:

    • project (String) (defaults to: )
    • case (String)
    • comment (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/google/cloud/support/v2/comment_service/paths.rb', line 88

def comment_path **args
  resources = {
    "case:comment:organization" => (proc do |organization:, case:, comment:|
      raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/"
      raise ::ArgumentError, "case cannot contain /" if binding.local_variable_get(:case).to_s.include? "/"

      "organizations/#{organization}/cases/#{binding.local_variable_get :case}/comments/#{comment}"
    end),
    "case:comment:project" => (proc do |project:, case:, comment:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
      raise ::ArgumentError, "case cannot contain /" if binding.local_variable_get(:case).to_s.include? "/"

      "projects/#{project}/cases/#{binding.local_variable_get :case}/comments/#{comment}"
    end)
  }

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