[][src]Struct gcp_client::google::cloud::dataproc::v1beta2::DiskConfig

pub struct DiskConfig {
    pub boot_disk_type: String,
    pub boot_disk_size_gb: i32,
    pub num_local_ssds: i32,
}

Specifies the config of disk options for a group of VM instances.

Fields

boot_disk_type: String

Optional. Type of the boot disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive).

boot_disk_size_gb: i32

Optional. Size in GB of the boot disk (default is 500GB).

num_local_ssds: i32

Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and HDFS data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.

Trait Implementations

impl Clone for DiskConfig[src]

impl Debug for DiskConfig[src]

impl Default for DiskConfig[src]

impl Message for DiskConfig[src]

impl PartialEq<DiskConfig> for DiskConfig[src]

impl StructuralPartialEq for DiskConfig[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]