Class: Google::Apis::ComputeV1::PreservedState

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/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.



27130
27131
27132
# File 'lib/google/apis/compute_v1/classes.rb', line 27130

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

Instance Attribute Details

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

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



27123
27124
27125
# File 'lib/google/apis/compute_v1/classes.rb', line 27123

def disks
  @disks
end

#metadataHash<String,String>

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

Returns:

  • (Hash<String,String>)


27128
27129
27130
# File 'lib/google/apis/compute_v1/classes.rb', line 27128

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



27135
27136
27137
27138
# File 'lib/google/apis/compute_v1/classes.rb', line 27135

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