Class: Google::Apis::GenomicsV2alpha1::ComputeEngine
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV2alpha1::ComputeEngine
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/genomics_v2alpha1/classes.rb,
generated/google/apis/genomics_v2alpha1/representations.rb,
generated/google/apis/genomics_v2alpha1/representations.rb 
Overview
Describes a Compute Engine resource that is being managed by a running pipeline.
Instance Attribute Summary collapse
- 
  
    
      #disk_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The names of the disks that were created for this pipeline.
 - 
  
    
      #instance_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance on which the operation is running.
 - 
  
    
      #machine_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The machine type of the instance.
 - 
  
    
      #zone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The availability zone in which the instance resides.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ComputeEngine 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ComputeEngine.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ComputeEngine
Returns a new instance of ComputeEngine
      335 336 337  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 335 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#disk_names ⇒ Array<String>
The names of the disks that were created for this pipeline.
Corresponds to the JSON property diskNames
      318 319 320  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 318 def disk_names @disk_names end  | 
  
#instance_name ⇒ String
The instance on which the operation is running.
Corresponds to the JSON property instanceName
      323 324 325  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 323 def instance_name @instance_name end  | 
  
#machine_type ⇒ String
The machine type of the instance.
Corresponds to the JSON property machineType
      328 329 330  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 328 def machine_type @machine_type end  | 
  
#zone ⇒ String
The availability zone in which the instance resides.
Corresponds to the JSON property zone
      333 334 335  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 333 def zone @zone end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      340 341 342 343 344 345  | 
    
      # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 340 def update!(**args) @disk_names = args[:disk_names] if args.key?(:disk_names) @instance_name = args[:instance_name] if args.key?(:instance_name) @machine_type = args[:machine_type] if args.key?(:machine_type) @zone = args[:zone] if args.key?(:zone) end  |