Module: Google::Cloud::Security::PublicCA::V1beta1::PublicCertificateAuthorityService::Paths

Extended by:
Paths
Included in:
Client, Paths, Rest::Client
Defined in:
lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/paths.rb

Overview

Path helper methods for the PublicCertificateAuthorityService API.

Instance Method Summary collapse

Instance Method Details

#external_account_key_path(project:, location:, external_account_key:) ⇒ ::String

Create a fully-qualified ExternalAccountKey resource string.

The resource will be in the following format:

projects/{project}/locations/{location}/externalAccountKeys/{external_account_key}

Parameters:

  • project (String)
  • location (String)
  • external_account_key (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


40
41
42
43
44
45
# File 'lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/paths.rb', line 40

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

  "projects/#{project}/locations/#{location}/externalAccountKeys/#{}"
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/security/public_ca/v1beta1/public_certificate_authority_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