Module: Google::Cloud::Dataproc::V1::SessionTemplateController::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/dataproc/v1/session_template_controller/paths.rb
Overview
Path helper methods for the SessionTemplateController API.
Instance Method Summary collapse
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#service_path(project:, location:, service:) ⇒ ::String
Create a fully-qualified Service resource string.
-
#session_template_path(project:, location:, template:) ⇒ ::String
Create a fully-qualified SessionTemplate resource string.
Instance Method Details
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
The resource will be in the following format:
projects/{project}/locations/{location}
38 39 40 41 42 |
# File 'lib/google/cloud/dataproc/v1/session_template_controller/paths.rb', line 38 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end |
#service_path(project:, location:, service:) ⇒ ::String
Create a fully-qualified Service resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/services/{service}
56 57 58 59 60 61 |
# File 'lib/google/cloud/dataproc/v1/session_template_controller/paths.rb', line 56 def service_path project:, location:, service: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/services/#{service}" end |
#session_template_path(project:, location:, template:) ⇒ ::String
Create a fully-qualified SessionTemplate resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/sessionTemplates/{template}
75 76 77 78 79 80 |
# File 'lib/google/cloud/dataproc/v1/session_template_controller/paths.rb', line 75 def session_template_path project:, location:, template: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/sessionTemplates/#{template}" end |