module Google::Cloud::Logging::V2::LoggingService::Paths

Path helper methods for the LoggingService API.

Public Instance Methods

billing_account_path(billing_account: "billingAccounts/ click to toggle source

Create a fully-qualified BillingAccount resource string.

The resource will be in the following format:

`billingAccounts/{billing_account}`

@param billing_account [String]

@return [::String]

# File lib/google/cloud/logging/v2/logging_service/paths.rb, line 37
def billing_account_path billing_account:
  "billingAccounts/#{billing_account}"
end
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/logging/v2/logging_service/paths.rb, line 51
def folder_path folder:
  "folders/#{folder}"
end
log_path(**args) click to toggle source

Create a fully-qualified Log resource string.

@overload log_path(project:, log:)

The resource will be in the following format:

`projects/{project}/logs/{log}`

@param project [String]
@param log [String]

@overload log_path(organization:, log:)

The resource will be in the following format:

`organizations/{organization}/logs/{log}`

@param organization [String]
@param log [String]

@overload log_path(folder:, log:)

The resource will be in the following format:

`folders/{folder}/logs/{log}`

@param folder [String]
@param log [String]

@overload log_path(billing_account:, log:)

The resource will be in the following format:

`billingAccounts/{billing_account}/logs/{log}`

@param billing_account [String]
@param log [String]

@return [::String]

# File lib/google/cloud/logging/v2/logging_service/paths.rb, line 91
def log_path **args
  resources = {
    "log:project" => (proc do |project:, log:|
      raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

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

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

      "folders/#{folder}/logs/#{log}"
    end),
    "billing_account:log" => (proc do |billing_account:, log:|
      raise ::ArgumentError, "billing_account cannot contain /" if billing_account.to_s.include? "/"

      "billingAccounts/#{billing_account}/logs/#{log}"
    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/logging/v2/logging_service/paths.rb, line 130
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/logging/v2/logging_service/paths.rb, line 144
def project_path project:
  "projects/#{project}"
end