Module: Google::Cloud::BeyondCorp::AppGateways::V1::AppGatewaysService::Paths

Extended by:
Paths
Included in:
Client, Paths
Defined in:
lib/google/cloud/beyond_corp/app_gateways/v1/app_gateways_service/paths.rb

Overview

Path helper methods for the AppGatewaysService API.

Instance Method Summary collapse

Instance Method Details

#app_gateway_path(project:, location:, app_gateway:) ⇒ ::String

Create a fully-qualified AppGateway resource string.

The resource will be in the following format:

projects/{project}/locations/{location}/appGateways/{app_gateway}

Parameters:

  • project (String)
  • location (String)
  • app_gateway (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


40
41
42
43
44
45
# File 'lib/google/cloud/beyond_corp/app_gateways/v1/app_gateways_service/paths.rb', line 40

def app_gateway_path project:, location:, app_gateway:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"

  "projects/#{project}/locations/#{location}/appGateways/#{app_gateway}"
end

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

Create a fully-qualified Location resource string.

The resource will be in the following format:

projects/{project}/locations/{location}

Parameters:

  • project (String)
  • location (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


58
59
60
61
62
# File 'lib/google/cloud/beyond_corp/app_gateways/v1/app_gateways_service/paths.rb', line 58

def location_path project:, location:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"

  "projects/#{project}/locations/#{location}"
end