Class: Google::Apis::ComputeBeta::InstantSnapshotExportParams
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstantSnapshotExportParams
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#base_instant_snapshot ⇒ String
An optional base instant snapshot that this resource is compared against.
-
#bucket_name ⇒ String
The name of an existing bucket in Cloud Storage where the changed blocks will be stored.
-
#encryption_key ⇒ Google::Apis::ComputeBeta::CustomerEncryptionKey
Encryption key used to encrypt the instant snapshot.
-
#object_name ⇒ String
Name of the output Bigstore object storing the changed blocks.
-
#output_type ⇒ String
The format of the output file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstantSnapshotExportParams
constructor
A new instance of InstantSnapshotExportParams.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstantSnapshotExportParams
Returns a new instance of InstantSnapshotExportParams.
18153 18154 18155 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18153 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_instant_snapshot ⇒ String
An optional base instant snapshot that this resource is compared against. If
not specified, all blocks of this resource are exported. The base instant
snapshot and this resource must be created from the same disk. The base
instant snapshot must be created earlier in time than this resource.
Corresponds to the JSON property baseInstantSnapshot
18128 18129 18130 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18128 def base_instant_snapshot @base_instant_snapshot end |
#bucket_name ⇒ String
The name of an existing bucket in Cloud Storage where the changed blocks will
be stored. The Google Service Account must have read and write access to this
bucket. The bucket has to be in the same region as this resource.
Corresponds to the JSON property bucketName
18135 18136 18137 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18135 def bucket_name @bucket_name end |
#encryption_key ⇒ Google::Apis::ComputeBeta::CustomerEncryptionKey
Encryption key used to encrypt the instant snapshot.
Corresponds to the JSON property encryptionKey
18140 18141 18142 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18140 def encryption_key @encryption_key end |
#object_name ⇒ String
Name of the output Bigstore object storing the changed blocks. Object name
must be less than 1024 bytes in length.
Corresponds to the JSON property objectName
18146 18147 18148 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18146 def object_name @object_name end |
#output_type ⇒ String
The format of the output file.
Corresponds to the JSON property outputType
18151 18152 18153 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18151 def output_type @output_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18158 18159 18160 18161 18162 18163 18164 |
# File 'lib/google/apis/compute_beta/classes.rb', line 18158 def update!(**args) @base_instant_snapshot = args[:base_instant_snapshot] if args.key?(:base_instant_snapshot) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @encryption_key = args[:encryption_key] if args.key?(:encryption_key) @object_name = args[:object_name] if args.key?(:object_name) @output_type = args[:output_type] if args.key?(:output_type) end |