class Google::Apis::ComputeV1::SourceInstanceParams

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

Attributes

disk_configs[RW]

Attached disks configuration. If not provided, defaults are applied: For boot disk and any other R/W disks, new custom images will be created from each disk. 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` @return [Array<Google::Apis::ComputeV1::DiskInstantiationConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 30566
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 30571
def update!(**args)
  @disk_configs = args[:disk_configs] if args.key?(:disk_configs)
end