Struct google_api_proto::google::cloud::lifesciences::v2beta::VirtualMachine
source · pub struct VirtualMachine {Show 15 fields
pub machine_type: String,
pub preemptible: bool,
pub labels: BTreeMap<String, String>,
pub disks: Vec<Disk>,
pub network: Option<Network>,
pub accelerators: Vec<Accelerator>,
pub service_account: Option<ServiceAccount>,
pub boot_disk_size_gb: i32,
pub cpu_platform: String,
pub boot_image: String,
pub nvidia_driver_version: String,
pub enable_stackdriver_monitoring: bool,
pub docker_cache_images: Vec<String>,
pub volumes: Vec<Volume>,
pub reservation: String,
}
Expand description
Carries information about a Compute Engine VM resource.
Fields§
§machine_type: 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.
preemptible: bool
If true, allocate a preemptible VM.
labels: BTreeMap<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.
disks: Vec<Disk>
The list of disks to create and attach to the VM.
Specify either the volumes\[\]
field or the disks\[\]
field, but not both.
network: Option<Network>
The VM network configuration.
accelerators: Vec<Accelerator>
The list of accelerators to attach to the VM.
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: 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.
cpu_platform: 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.
boot_image: 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
.
nvidia_driver_version: 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.
enable_stackdriver_monitoring: bool
Whether Stackdriver monitoring should be enabled on the VM.
docker_cache_images: 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.
The root directory of the ext4 image must contain image
and overlay2
directories copied from the Docker directory of a VM where the desired
Docker images have already been pulled. Any images pulled that are not
cached will be stored on the first cache disk instead of the boot disk.
Only a single image is supported.
volumes: Vec<Volume>
The list of disks and other storage to create or attach to the VM.
Specify either the volumes\[\]
field or the disks\[\]
field, but not both.
reservation: String
If specified, the VM will only be allocated inside the matching reservation. It will fail if the VM parameters don’t match the reservation.
Trait Implementations§
source§impl Clone for VirtualMachine
impl Clone for VirtualMachine
source§fn clone(&self) -> VirtualMachine
fn clone(&self) -> VirtualMachine
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VirtualMachine
impl Debug for VirtualMachine
source§impl Default for VirtualMachine
impl Default for VirtualMachine
source§impl Message for VirtualMachine
impl Message for VirtualMachine
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for VirtualMachine
impl PartialEq for VirtualMachine
source§fn eq(&self, other: &VirtualMachine) -> bool
fn eq(&self, other: &VirtualMachine) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualMachine
Auto Trait Implementations§
impl Freeze for VirtualMachine
impl RefUnwindSafe for VirtualMachine
impl Send for VirtualMachine
impl Sync for VirtualMachine
impl Unpin for VirtualMachine
impl UnwindSafe for VirtualMachine
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request