Module: Google::Cloud::ApiGateway::V1::ApiGatewayService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb
Overview
Path helper methods for the ApiGatewayService API.
Instance Method Summary collapse
-
#api_config_path(project:, api:, api_config:) ⇒ ::String
Create a fully-qualified ApiConfig resource string.
-
#api_path(project:, api:) ⇒ ::String
Create a fully-qualified Api resource string.
-
#gateway_path(project:, location:, gateway:) ⇒ ::String
Create a fully-qualified Gateway resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#managed_service_path(service:) ⇒ ::String
Create a fully-qualified ManagedService resource string.
-
#service_account_path(project:, service_account:) ⇒ ::String
Create a fully-qualified ServiceAccount resource string.
-
#service_path(service:, config:) ⇒ ::String
Create a fully-qualified Service resource string.
Instance Method Details
#api_config_path(project:, api:, api_config:) ⇒ ::String
Create a fully-qualified ApiConfig resource string.
The resource will be in the following format:
projects/{project}/locations/global/apis/{api}/configs/{api_config}
56 57 58 59 60 61 |
# 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 |
#api_path(project:, api:) ⇒ ::String
Create a fully-qualified Api resource string.
The resource will be in the following format:
projects/{project}/locations/global/apis/{api}
38 39 40 41 42 |
# 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 |
#gateway_path(project:, location:, gateway:) ⇒ ::String
Create a fully-qualified Gateway resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/gateways/{gateway}
75 76 77 78 79 80 |
# 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 |
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
The resource will be in the following format:
projects/{project}/locations/{location}
93 94 95 96 97 |
# 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 |
#managed_service_path(service:) ⇒ ::String
Create a fully-qualified ManagedService resource string.
The resource will be in the following format:
services/{service}
109 110 111 |
# File 'lib/google/cloud/api_gateway/v1/api_gateway_service/paths.rb', line 109 def managed_service_path service: "services/#{service}" end |
#service_account_path(project:, service_account:) ⇒ ::String
Create a fully-qualified ServiceAccount resource string.
The resource will be in the following format:
projects/{project}/serviceAccounts/{service_account}
141 142 143 144 145 |
# 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 |
#service_path(service:, config:) ⇒ ::String
Create a fully-qualified Service resource string.
The resource will be in the following format:
services/{service}/configs/{config}
124 125 126 127 128 |
# 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 |