Class: Google::Apis::ComputeAlpha::SourceInstanceParams
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::SourceInstanceParams
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/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
- 
  
    
      #disk_configs  ⇒ Array<Google::Apis::ComputeAlpha::DiskInstantiationConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Attached disks configuration. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SourceInstanceParams 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SourceInstanceParams. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SourceInstanceParams
Returns a new instance of SourceInstanceParams
| 22687 22688 22689 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22687 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#disk_configs ⇒ Array<Google::Apis::ComputeAlpha::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
| 22685 22686 22687 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22685 def disk_configs @disk_configs end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22692 22693 22694 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22692 def update!(**args) @disk_configs = args[:disk_configs] if args.key?(:disk_configs) end |