Class: Google::Apis::GenomicsV2alpha1::VirtualMachine
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV2alpha1::VirtualMachine
- 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
-
#boot_disk_size_gb ⇒ Fixnum
The size of the boot disk, in gigabytes.
-
#boot_image ⇒ String
The host operating system image to use.
-
#cpu_platform ⇒ String
The CPU platform to request.
-
#disks ⇒ Array<Google::Apis::GenomicsV2alpha1::Disk>
The list of disks to create and attach to the VM.
-
#labels ⇒ Hash<String,String>
Optional set of labels to apply to the VM and any attached disk resources.
-
#machine_type ⇒ String
The machine type of the virtual machine to create.
-
#network ⇒ Google::Apis::GenomicsV2alpha1::Network
VM networking options.
-
#preemptible ⇒ Boolean
(also: #preemptible?)
If true, allocate a preemptible VM.
-
#service_account ⇒ Google::Apis::GenomicsV2alpha1::ServiceAccount
Carries information about a Google Cloud Service Account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VirtualMachine
constructor
A new instance of VirtualMachine.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VirtualMachine
Returns a new instance of VirtualMachine
1235 1236 1237 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1235 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boot_disk_size_gb ⇒ Fixnum
The size of the boot disk, in gigabytes. 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
1172 1173 1174 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1172 def boot_disk_size_gb @boot_disk_size_gb end |
#boot_image ⇒ String
The host operating system image to use.
At present, only Container Optimized OS images may 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 COS, use the value
"projects/cos-cloud/global/images/family/cos-beta".
Corresponds to the JSON property bootImage
1185 1186 1187 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1185 def boot_image @boot_image end |
#cpu_platform ⇒ String
The CPU platform to request. An instance based on a newer platform may be
allocated but never one with less 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, please visit
https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
Corresponds to the JSON property cpuPlatform
1196 1197 1198 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1196 def cpu_platform @cpu_platform end |
#disks ⇒ Array<Google::Apis::GenomicsV2alpha1::Disk>
The list of disks to create and attach to the VM.
Corresponds to the JSON property disks
1201 1202 1203 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1201 def disks @disks end |
#labels ⇒ Hash<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.
These labels are applied at creation time to the VM and are applied on a
best-effort basis to attached disk resources shortly after VM creation.
Corresponds to the JSON property labels
1210 1211 1212 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1210 def labels @labels end |
#machine_type ⇒ String
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").
Corresponds to the JSON property machineType
1217 1218 1219 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1217 def machine_type @machine_type end |
#network ⇒ Google::Apis::GenomicsV2alpha1::Network
VM networking options.
Corresponds to the JSON property network
1222 1223 1224 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1222 def network @network end |
#preemptible ⇒ Boolean Also known as: preemptible?
If true, allocate a preemptible VM.
Corresponds to the JSON property preemptible
1227 1228 1229 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1227 def preemptible @preemptible end |
#service_account ⇒ Google::Apis::GenomicsV2alpha1::ServiceAccount
Carries information about a Google Cloud Service Account.
Corresponds to the JSON property serviceAccount
1233 1234 1235 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1233 def service_account @service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 1240 def update!(**args) @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) @preemptible = args[:preemptible] if args.key?(:preemptible) @service_account = args[:service_account] if args.key?(:service_account) end |