module Google::Cloud::ApiGateway::V1::ApiGatewayService::Paths
Path helper methods for the ApiGatewayService
API.
Public Instance Methods
Create a fully-qualified ApiConfig
resource string.
The resource will be in the following format:
`projects/{project}/locations/global/apis/{api}/configs/{api_config}`
@param project [String] @param api [String] @param api_config [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 56 def api_config_path project:, api:, api_config: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "api cannot contain /" if api.to_s.include? "/" "projects/#{project}/locations/global/apis/#{api}/configs/#{api_config}" end
Create a fully-qualified Api
resource string.
The resource will be in the following format:
`projects/{project}/locations/global/apis/{api}`
@param project [String] @param api [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 38 def api_path project:, api: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/global/apis/#{api}" end
Create a fully-qualified Gateway
resource string.
The resource will be in the following format:
`projects/{project}/locations/{location}/gateways/{gateway}`
@param project [String] @param location [String] @param gateway [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 75 def gateway_path project:, location:, 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}/gateways/#{gateway}" 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/api_gateway/v1/api_gateway_service/paths.rb, line 93 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end
Create a fully-qualified ManagedService resource string.
The resource will be in the following format:
`services/{service}`
@param service [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 109 def managed_service_path service: "services/#{service}" end
Create a fully-qualified ServiceAccount resource string.
The resource will be in the following format:
`projects/{project}/serviceAccounts/{service_account}`
@param project [String] @param service_account [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 141 def service_account_path project:, service_account: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/serviceAccounts/#{service_account}" end
Create a fully-qualified Service
resource string.
The resource will be in the following format:
`services/{service}/configs/{config}`
@param service [String] @param config [String]
@return [::String]
# File lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb, line 124 def service_path service:, config: raise ::ArgumentError, "service cannot contain /" if service.to_s.include? "/" "services/#{service}/configs/#{config}" end