Class: Google::Apis::GenomicsV2alpha1::VirtualMachine

Inherits:
Object
  • Object
show all
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

Carries information about a Compute Engine VM resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VirtualMachine

Returns a new instance of VirtualMachine



1444
1445
1446
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1444

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

Instance Attribute Details

#acceleratorsArray<Google::Apis::GenomicsV2alpha1::Accelerator>

The list of accelerators to attach to the VM. Corresponds to the JSON property accelerators



1360
1361
1362
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1360

def accelerators
  @accelerators
end

#boot_disk_size_gbFixnum

The size of the boot disk, in GB. The boot disk must be large enough to accommodate all of the Docker images from each action in the pipeline at the same time. If not specified, a small but reasonable default value is used. Corresponds to the JSON property bootDiskSizeGb

Returns:

  • (Fixnum)


1368
1369
1370
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1368

def boot_disk_size_gb
  @boot_disk_size_gb
end

#boot_imageString

The host operating system image to use. Currently, only Container-Optimized OS images can be used. The default value is projects/cos-cloud/global/images/family/cos-stable, which selects the latest stable release of Container-Optimized OS. This option is provided to allow testing against the beta release of the operating system to ensure that the new version does not interact negatively with production pipelines. To test a pipeline against the beta release of Container-Optimized OS, use the value projects/cos-cloud/global/images/family/cos-beta. Corresponds to the JSON property bootImage

Returns:

  • (String)


1381
1382
1383
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1381

def boot_image
  @boot_image
end

#cpu_platformString

The CPU platform to request. An instance based on a newer platform can be allocated, but never one with fewer capabilities. The value of this parameter must be a valid Compute Engine CPU platform name (such as "Intel Skylake"). This parameter is only useful for carefully optimized work loads where the CPU platform has a significant impact. For more information about the effect of this parameter, see https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform. Corresponds to the JSON property cpuPlatform

Returns:

  • (String)


1392
1393
1394
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1392

def cpu_platform
  @cpu_platform
end

#disksArray<Google::Apis::GenomicsV2alpha1::Disk>

The list of disks to create and attach to the VM. Corresponds to the JSON property disks



1397
1398
1399
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1397

def disks
  @disks
end

#labelsHash<String,String>

Optional set of labels to apply to the VM and any attached disk resources. These labels must adhere to the name and value restrictions on VM labels imposed by Compute Engine. Labels applied at creation time to the VM. Applied on a best-effort basis to attached disk resources shortly after VM creation. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1406
1407
1408
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1406

def labels
  @labels
end

#machine_typeString

The machine type of the virtual machine to create. Must be the short name of a standard machine type (such as "n1-standard-1") or a custom machine type (such as "custom-1-4096", where "1" indicates the number of vCPUs and "4096" indicates the memory in MB). See Creating an instance with a custom machine type for more specifications on creating a custom machine type. Corresponds to the JSON property machineType

Returns:

  • (String)


1418
1419
1420
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1418

def machine_type
  @machine_type
end

#networkGoogle::Apis::GenomicsV2alpha1::Network

VM networking options. Corresponds to the JSON property network



1423
1424
1425
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1423

def network
  @network
end

#nvidia_driver_versionString

The NVIDIA driver version to use when attaching an NVIDIA GPU accelerator. The version specified here must be compatible with the GPU libraries contained in the container being executed, and must be one of the drivers hosted in the nvidia-drivers-us-public bucket on Google Cloud Storage. Corresponds to the JSON property nvidiaDriverVersion

Returns:

  • (String)


1431
1432
1433
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1431

def nvidia_driver_version
  @nvidia_driver_version
end

#preemptibleBoolean Also known as: preemptible?

If true, allocate a preemptible VM. Corresponds to the JSON property preemptible

Returns:

  • (Boolean)


1436
1437
1438
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1436

def preemptible
  @preemptible
end

#service_accountGoogle::Apis::GenomicsV2alpha1::ServiceAccount

Carries information about a Google Cloud service account. Corresponds to the JSON property serviceAccount



1442
1443
1444
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1442

def 
  @service_account
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1449

def update!(**args)
  @accelerators = args[:accelerators] if args.key?(:accelerators)
  @boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
  @boot_image = args[:boot_image] if args.key?(:boot_image)
  @cpu_platform = args[:cpu_platform] if args.key?(:cpu_platform)
  @disks = args[:disks] if args.key?(:disks)
  @labels = args[:labels] if args.key?(:labels)
  @machine_type = args[:machine_type] if args.key?(:machine_type)
  @network = args[:network] if args.key?(:network)
  @nvidia_driver_version = args[:nvidia_driver_version] if args.key?(:nvidia_driver_version)
  @preemptible = args[:preemptible] if args.key?(:preemptible)
  @service_account = args[:service_account] if args.key?(:service_account)
end