Class: Google::Cloud::BackupDR::V1::BackupLocation
- Inherits:
-
Object
- Object
- Google::Cloud::BackupDR::V1::BackupLocation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/backupdr/v1/protection_summary.rb
Overview
BackupLocation represents a cloud location where a backup can be stored.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#location_id ⇒ ::String
readonly
Output only.
-
#type ⇒ ::Google::Cloud::BackupDR::V1::BackupLocation::Type
readonly
Output only.
Instance Attribute Details
#location_id ⇒ ::String (readonly)
Returns Output only. The id of the cloud location. Example: "us-central1".
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'proto_docs/google/cloud/backupdr/v1/protection_summary.rb', line 287 class BackupLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of the location. module Type # Location type is unspecified. TYPE_UNSPECIFIED = 0 # Location type is zonal. ZONAL = 1 # Location type is regional. REGIONAL = 2 # Location type is multi regional. MULTI_REGIONAL = 3 end end |
#type ⇒ ::Google::Cloud::BackupDR::V1::BackupLocation::Type (readonly)
Returns Output only. The type of the location.
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'proto_docs/google/cloud/backupdr/v1/protection_summary.rb', line 287 class BackupLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of the location. module Type # Location type is unspecified. TYPE_UNSPECIFIED = 0 # Location type is zonal. ZONAL = 1 # Location type is regional. REGIONAL = 2 # Location type is multi regional. MULTI_REGIONAL = 3 end end |