Struct google_dataproc1::SoftwareConfig[][src]

pub struct SoftwareConfig {
    pub image_version: Option<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

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 version.

Optional. The properties to set on daemon config files.Property keys are specified in prefix:property format, such as core:fs.defaultFS. 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 Default for SoftwareConfig
[src]

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

impl Clone for SoftwareConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SoftwareConfig
[src]

Formats the value using the given formatter. Read more

impl Part for SoftwareConfig
[src]

Auto Trait Implementations