Class: Google::Apis::ComputeBeta::PreservedState

Inherits:
Object
  • Object
show all
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

Overview

Preserved state for a given instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PreservedState

Returns a new instance of PreservedState.



24758
24759
24760
# File 'lib/google/apis/compute_beta/classes.rb', line 24758

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disksHash<String,Google::Apis::ComputeBeta::PreservedStatePreservedDisk>

Preserved disks defined for this instance. This map is keyed with the device names of the disks. Corresponds to the JSON property disks



24751
24752
24753
# File 'lib/google/apis/compute_beta/classes.rb', line 24751

def disks
  @disks
end

#metadataHash<String,String>

Preserved metadata defined for this instance. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,String>)


24756
24757
24758
# File 'lib/google/apis/compute_beta/classes.rb', line 24756

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



24763
24764
24765
24766
# File 'lib/google/apis/compute_beta/classes.rb', line 24763

def update!(**args)
  @disks = args[:disks] if args.key?(:disks)
  @metadata = args[:metadata] if args.key?(:metadata)
end