Class: Google::Apis::ComputeBeta::PreservedStatePreservedDisk
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::PreservedStatePreservedDisk
- 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
-
#auto_delete ⇒ String
These stateful disks will never be deleted during autohealing, update, instance recreate operations.
-
#mode ⇒ String
The mode in which to attach this disk, either READ_WRITE or READ_ONLY.
-
#source ⇒ String
The URL of the disk resource that is stateful and should be attached to the VM instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreservedStatePreservedDisk
constructor
A new instance of PreservedStatePreservedDisk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreservedStatePreservedDisk
Returns a new instance of PreservedStatePreservedDisk.
25048 25049 25050 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25048 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_delete ⇒ String
These stateful disks will never be deleted during autohealing, update,
instance recreate operations. This flag is used to configure if the disk
should be deleted after it is no longer used by the group, e.g. when the given
instance or the whole MIG is deleted. Note: disks attached in READ_ONLY mode
cannot be auto-deleted.
Corresponds to the JSON property autoDelete
25034 25035 25036 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25034 def auto_delete @auto_delete end |
#mode ⇒ String
The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not
specified, the default is to attach the disk in READ_WRITE mode.
Corresponds to the JSON property mode
25040 25041 25042 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25040 def mode @mode end |
#source ⇒ String
The URL of the disk resource that is stateful and should be attached to the VM
instance.
Corresponds to the JSON property source
25046 25047 25048 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25046 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25053 25054 25055 25056 25057 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25053 def update!(**args) @auto_delete = args[:auto_delete] if args.key?(:auto_delete) @mode = args[:mode] if args.key?(:mode) @source = args[:source] if args.key?(:source) end |