module Google::Cloud::ServiceDirectory::V1beta1::RegistrationService::Paths
Path helper methods for the RegistrationService
API.
Public Instance Methods
Create a fully-qualified Endpoint resource string.
The resource will be in the following format:
`projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}/endpoints/{endpoint}`
@param project [String] @param location [String] @param namespace [String] @param service [String] @param endpoint [String]
@return [::String]
# File lib/google/cloud/service_directory/v1beta1/registration_service/paths.rb, line 41 def endpoint_path project:, location:, namespace:, service:, endpoint: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "namespace cannot contain /" if namespace.to_s.include? "/" raise ::ArgumentError, "service cannot contain /" if service.to_s.include? "/" "projects/#{project}/locations/#{location}/namespaces/#{namespace}/services/#{service}/endpoints/#{endpoint}" end
Create a fully-qualified Location resource string.
The resource will be in the following format:
`projects/{project}/locations/{location}`
@param project [String] @param location [String]
@return [::String]
# File lib/google/cloud/service_directory/v1beta1/registration_service/paths.rb, line 61 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end
Create a fully-qualified Namespace resource string.
The resource will be in the following format:
`projects/{project}/locations/{location}/namespaces/{namespace}`
@param project [String] @param location [String] @param namespace [String]
@return [::String]
# File lib/google/cloud/service_directory/v1beta1/registration_service/paths.rb, line 79 def namespace_path project:, location:, namespace: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/namespaces/#{namespace}" end
Create a fully-qualified Network resource string.
The resource will be in the following format:
`projects/{project}/locations/global/networks/{network}`
@param project [String] @param network [String]
@return [::String]
# File lib/google/cloud/service_directory/v1beta1/registration_service/paths.rb, line 97 def network_path project:, network: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/global/networks/#{network}" end
Create a fully-qualified Service
resource string.
The resource will be in the following format:
`projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}`
@param project [String] @param location [String] @param namespace [String] @param service [String]
@return [::String]
# File lib/google/cloud/service_directory/v1beta1/registration_service/paths.rb, line 116 def service_path project:, location:, namespace:, service: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "namespace cannot contain /" if namespace.to_s.include? "/" "projects/#{project}/locations/#{location}/namespaces/#{namespace}/services/#{service}" end