Class: Google::Apis::GenomicsV2alpha1::ComputeEngine

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/genomics_v2alpha1/classes.rb,
lib/google/apis/genomics_v2alpha1/representations.rb,
lib/google/apis/genomics_v2alpha1/representations.rb

Overview

Describes a Compute Engine resource that is being managed by a running pipeline.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ComputeEngine

Returns a new instance of ComputeEngine.



316
317
318
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 316

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

Instance Attribute Details

#disk_namesArray<String>

The names of the disks that were created for this pipeline. Corresponds to the JSON property diskNames

Returns:

  • (Array<String>)


299
300
301
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 299

def disk_names
  @disk_names
end

#instance_nameString

The instance on which the operation is running. Corresponds to the JSON property instanceName

Returns:

  • (String)


304
305
306
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 304

def instance_name
  @instance_name
end

#machine_typeString

The machine type of the instance. Corresponds to the JSON property machineType

Returns:

  • (String)


309
310
311
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 309

def machine_type
  @machine_type
end

#zoneString

The availability zone in which the instance resides. Corresponds to the JSON property zone

Returns:

  • (String)


314
315
316
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 314

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



321
322
323
324
325
326
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 321

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