[][src]Struct google_dataproc1::InstanceGroupConfig

pub struct InstanceGroupConfig {
    pub is_preemptible: Option<bool>,
    pub machine_type_uri: Option<String>,
    pub instance_names: Option<Vec<String>>,
    pub image_uri: Option<String>,
    pub accelerators: Option<Vec<AcceleratorConfig>>,
    pub managed_group_config: Option<ManagedGroupConfig>,
    pub num_instances: Option<i32>,
    pub disk_config: Option<DiskConfig>,
}

Optional. The config settings for Compute Engine resources in an instance group, such as a master or worker group.

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

Fields

is_preemptible: Option<bool>

Optional. Specifies that this instance group contains preemptible instances.

machine_type_uri: Option<String>

Optional. The Compute Engine machine type used for cluster instances.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2 projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2 n1-standard-2Auto Zone Exception: If you are using the Cloud Dataproc Auto Zone Placement feature, you must use the short name of the machine type resource, for example, n1-standard-2.

instance_names: Option<Vec<String>>

Output only. The list of instance names. Cloud Dataproc derives the names from cluster_name, num_instances, and the instance group.

image_uri: Option<String>

Optional. The Compute Engine image resource used for cluster instances. It can be specified or may be inferred from SoftwareConfig.image_version.

accelerators: Option<Vec<AcceleratorConfig>>

Optional. The Compute Engine accelerator configuration for these instances.Beta Feature: This feature is still under development. It may be changed before final release.

managed_group_config: Option<ManagedGroupConfig>

Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.

num_instances: Option<i32>

Optional. The number of VM instances in the instance group. For master instance groups, must be set to 1.

disk_config: Option<DiskConfig>

Optional. Disk option config settings.

Trait Implementations

impl Part for InstanceGroupConfig[src]

impl Clone for InstanceGroupConfig[src]

impl Default for InstanceGroupConfig[src]

impl Debug for InstanceGroupConfig[src]

impl Serialize for InstanceGroupConfig[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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