Class: Google::Apis::ComputeAlpha::PreservedState
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::PreservedState
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Preserved state for a given instance.
Instance Attribute Summary collapse
-
#disks ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedDisk>
Preserved disks defined for this instance.
-
#external_i_ps ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>
Preserved external IPs defined for this instance.
-
#internal_i_ps ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>
Preserved internal IPs defined for this instance.
-
#metadata ⇒ Hash<String,String>
Preserved metadata defined for this instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreservedState
constructor
A new instance of PreservedState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreservedState
Returns a new instance of PreservedState.
35323 35324 35325 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35323 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disks ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedDisk>
Preserved disks defined for this instance. This map is keyed with the device
names of the disks.
Corresponds to the JSON property disks
35304 35305 35306 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35304 def disks @disks end |
#external_i_ps ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>
Preserved external IPs defined for this instance. This map is keyed with the
name of the network interface.
Corresponds to the JSON property externalIPs
35310 35311 35312 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35310 def external_i_ps @external_i_ps end |
#internal_i_ps ⇒ Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>
Preserved internal IPs defined for this instance. This map is keyed with the
name of the network interface.
Corresponds to the JSON property internalIPs
35316 35317 35318 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35316 def internal_i_ps @internal_i_ps end |
#metadata ⇒ Hash<String,String>
Preserved metadata defined for this instance.
Corresponds to the JSON property metadata
35321 35322 35323 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35321 def @metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35328 35329 35330 35331 35332 35333 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35328 def update!(**args) @disks = args[:disks] if args.key?(:disks) @external_i_ps = args[:external_i_ps] if args.key?(:external_i_ps) @internal_i_ps = args[:internal_i_ps] if args.key?(:internal_i_ps) @metadata = args[:metadata] if args.key?(:metadata) end |