Module: Google::Cloud::BeyondCorp::AppConnectors::V1::AppConnectorsService::Paths

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

Overview

Path helper methods for the AppConnectorsService API.

Instance Method Summary collapse

Instance Method Details

#app_connector_path(project:, location:, app_connector:) ⇒ ::String

Create a fully-qualified AppConnector resource string.

The resource will be in the following format:

projects/{project}/locations/{location}/appConnectors/{app_connector}

Parameters:

  • project (String)
  • location (String)
  • app_connector (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


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

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

  "projects/#{project}/locations/#{location}/appConnectors/#{app_connector}"
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_connectors/v1/app_connectors_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