[][src]Struct google_lifesciences2_beta::VirtualMachine

pub struct VirtualMachine {
    pub cpu_platform: Option<String>,
    pub docker_cache_images: Option<Vec<String>>,
    pub disks: Option<Vec<Disk>>,
    pub machine_type: Option<String>,
    pub network: Option<Network>,
    pub nvidia_driver_version: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub service_account: Option<ServiceAccount>,
    pub boot_disk_size_gb: Option<i32>,
    pub boot_image: Option<String>,
    pub accelerators: Option<Vec<Accelerator>>,
    pub enable_stackdriver_monitoring: Option<bool>,
    pub preemptible: Option<bool>,
}

Carries information about a Compute Engine VM resource.

This type is not used in any activity, and only used as part of another schema.

Fields

cpu_platform: Option<String>

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.

docker_cache_images: Option<Vec<String>>

The Compute Engine Disk Images to use as a Docker cache. The disks will be mounted into the Docker folder in a way that the images present in the cache will not need to be pulled. The digests of the cached images must match those of the tags used or the latest version will still be pulled. Only a single image is supported.

disks: Option<Vec<Disk>>

The list of disks to create and attach to the VM.

machine_type: Option<String>

Required. 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.

network: Option<Network>

The VM network configuration.

nvidia_driver_version: Option<String>

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.

labels: Option<HashMap<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 keys with the prefix 'google-' are reserved for use by Google.

Labels applied at creation time to the VM. Applied on a best-effort basis to attached disk resources shortly after VM creation.

service_account: Option<ServiceAccount>

The service account to install on the VM. This account does not need any permissions other than those required by the pipeline.

boot_disk_size_gb: Option<i32>

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.

boot_image: Option<String>

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.

accelerators: Option<Vec<Accelerator>>

The list of accelerators to attach to the VM.

enable_stackdriver_monitoring: Option<bool>

Whether Stackdriver monitoring should be enabled on the VM.

preemptible: Option<bool>

If true, allocate a preemptible VM.

Trait Implementations

impl Clone for VirtualMachine[src]

impl Debug for VirtualMachine[src]

impl Default for VirtualMachine[src]

impl<'de> Deserialize<'de> for VirtualMachine[src]

impl Part for VirtualMachine[src]

impl Serialize for VirtualMachine[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any