Struct google_dataproc1::DiskConfig[][src]

pub struct DiskConfig {
    pub num_local_ssds: Option<i32>,
    pub boot_disk_size_gb: Option<i32>,
}

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

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

Fields

Optional. 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 (https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) 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.

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

Trait Implementations

impl Default for DiskConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for DiskConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DiskConfig
[src]

Formats the value using the given formatter. Read more

impl Part for DiskConfig
[src]

Auto Trait Implementations

impl Send for DiskConfig

impl Sync for DiskConfig