module Google::Cloud::Monitoring::V3::GroupService::Paths

Path helper methods for the GroupService API.

Public Instance Methods

folder_path(folder: "folders/ click to toggle source

Create a fully-qualified Folder resource string.

The resource will be in the following format:

`folders/{folder}`

@param folder [String]

@return [::String]

# File lib/google/cloud/monitoring/v3/group_service/paths.rb, line 37
def folder_path folder:
  "folders/#{folder}"
end
group_path(**args) click to toggle source

Create a fully-qualified Group resource string.

@overload group_path(project:, group:)

The resource will be in the following format:

`projects/{project}/groups/{group}`

@param project [String]
@param group [String]

@overload group_path(organization:, group:)

The resource will be in the following format:

`organizations/{organization}/groups/{group}`

@param organization [String]
@param group [String]

@overload group_path(folder:, group:)

The resource will be in the following format:

`folders/{folder}/groups/{group}`

@param folder [String]
@param group [String]

@return [::String]

# File lib/google/cloud/monitoring/v3/group_service/paths.rb, line 69
def group_path **args
  resources = {
    "group:project" => (proc do |project:, group:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

      "projects/#{project}/groups/#{group}"
    end),
    "group:organization" => (proc do |organization:, group:|
      raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/"

      "organizations/#{organization}/groups/#{group}"
    end),
    "folder:group" => (proc do |folder:, group:|
      raise ::ArgumentError, "folder cannot contain /" if folder.to_s.include? "/"

      "folders/#{folder}/groups/#{group}"
    end)
  }

  resource = resources[args.keys.sort.join(":")]
  raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
  resource.call(**args)
end
organization_path(organization: "organizations/ click to toggle source

Create a fully-qualified Organization resource string.

The resource will be in the following format:

`organizations/{organization}`

@param organization [String]

@return [::String]

# File lib/google/cloud/monitoring/v3/group_service/paths.rb, line 103
def organization_path organization:
  "organizations/#{organization}"
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/monitoring/v3/group_service/paths.rb, line 117
def project_path project:
  "projects/#{project}"
end
workspace_path(**args) click to toggle source

Create a fully-qualified Workspace resource string.

@overload workspace_path(project:)

The resource will be in the following format:

`projects/{project}`

@param project [String]

@overload workspace_path(workspace:)

The resource will be in the following format:

`workspaces/{workspace}`

@param workspace [String]

@return [::String]

# File lib/google/cloud/monitoring/v3/group_service/paths.rb, line 139
def workspace_path **args
  resources = {
    "project" => (proc do |project:|
      "projects/#{project}"
    end),
    "workspace" => (proc do |workspace:|
      "workspaces/#{workspace}"
    end)
  }

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