Class: Google::Apis::ComputeBeta::SourceInstanceParams

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



30484
30485
30486
# File 'generated/google/apis/compute_beta/classes.rb', line 30484

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

Instance Attribute Details

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

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



30482
30483
30484
# File 'generated/google/apis/compute_beta/classes.rb', line 30482

def disk_configs
  @disk_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30489
30490
30491
# File 'generated/google/apis/compute_beta/classes.rb', line 30489

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