class Google::Apis::GenomicsV1alpha2::ComputeEngine
Describes a Compute Engine resource that is being managed by a running pipeline.
Attributes
disk_names[RW]
The names of the disks that were created for this pipeline. Corresponds to the JSON property `diskNames` @return [Array<String>]
instance_name[RW]
The instance on which the operation is running. Corresponds to the JSON property `instanceName` @return [String]
machine_type[RW]
The machine type of the instance. Corresponds to the JSON property `machineType` @return [String]
zone[RW]
The availability zone in which the instance resides. Corresponds to the JSON property `zone` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 63 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 68 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