Class: Google::Apis::ComputeAlpha::SourceInstanceParams

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

A specification of the parameters to use when creating the instance template from a source instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SourceInstanceParams

Returns a new instance of SourceInstanceParams.



46423
46424
46425
# File 'lib/google/apis/compute_alpha/classes.rb', line 46423

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

Instance Attribute Details

#disk_configsArray<Google::Apis::ComputeAlpha::DiskInstantiationConfig>

Attached disks configuration. If not provided, defaults are applied: For boot disk and any other R/W disks, the source images for each disk will be used. For read-only disks, they will be attached in read-only mode. Local SSD disks will be created as blank volumes. Corresponds to the JSON property diskConfigs



46421
46422
46423
# File 'lib/google/apis/compute_alpha/classes.rb', line 46421

def disk_configs
  @disk_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



46428
46429
46430
# File 'lib/google/apis/compute_alpha/classes.rb', line 46428

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