Module: Google::Cloud::Filestore::V1::CloudFilestoreManager::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb
Overview
Path helper methods for the CloudFilestoreManager API.
Instance Method Summary collapse
-
#backup_path(project:, location:, backup:) ⇒ ::String
Create a fully-qualified Backup resource string.
-
#instance_path(project:, location:, instance:) ⇒ ::String
Create a fully-qualified Instance resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#snapshot_path(project:, location:, instance:, snapshot:) ⇒ ::String
Create a fully-qualified Snapshot resource string.
Instance Method Details
#backup_path(project:, location:, backup:) ⇒ ::String
Create a fully-qualified Backup resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/backups/{backup}
39 40 41 42 43 44 |
# File 'lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb', line 39 def backup_path project:, location:, backup: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/backups/#{backup}" end |
#instance_path(project:, location:, instance:) ⇒ ::String
Create a fully-qualified Instance resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/instances/{instance}
58 59 60 61 62 63 |
# File 'lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb', line 58 def instance_path project:, location:, instance: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/instances/#{instance}" 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}
76 77 78 79 80 |
# File 'lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb', line 76 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end |
#snapshot_path(project:, location:, instance:, snapshot:) ⇒ ::String
Create a fully-qualified Snapshot resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/instances/{instance}/snapshots/{snapshot}
95 96 97 98 99 100 101 |
# File 'lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb', line 95 def snapshot_path project:, location:, instance:, snapshot: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "instance cannot contain /" if instance.to_s.include? "/" "projects/#{project}/locations/#{location}/instances/#{instance}/snapshots/#{snapshot}" end |