[][src]Struct google_dataproc1::SoftwareConfig

pub struct SoftwareConfig {
    pub image_version: Option<String>,
    pub optional_components: Option<Vec<String>>,
    pub properties: Option<HashMap<String, String>>,
}

Specifies the selection and config of software inside the cluster.

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

Fields

image_version: Option<String>

Optional. The version of software inside the cluster. It must be one of the supported Cloud Dataproc Versions, such as "1.2" (including a subminor version, such as "1.2.29"), or the "preview" version. If unspecified, it defaults to the latest Debian version.

optional_components: Option<Vec<String>>

The set of optional components to activate on the cluster.

properties: Option<HashMap<String, String>>

Optional. The properties to set on daemon config files.Property keys are specified in prefix:property format, for example core:hadoop.tmp.dir. The following are supported prefixes and their mappings: capacity-scheduler: capacity-scheduler.xml core: core-site.xml distcp: distcp-default.xml hdfs: hdfs-site.xml hive: hive-site.xml mapred: mapred-site.xml pig: pig.properties spark: spark-defaults.conf yarn: yarn-site.xmlFor more information, see Cluster properties.

Trait Implementations

impl Part for SoftwareConfig[src]

impl Clone for SoftwareConfig[src]

impl Default for SoftwareConfig[src]

impl Debug for SoftwareConfig[src]

impl Serialize for SoftwareConfig[src]

impl<'de> Deserialize<'de> for SoftwareConfig[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]