com.pulumi.googlenative.dataproc.v1.enums.SoftwareConfigOptionalComponentsItem Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.dataproc.v1.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
@EnumType
public enum SoftwareConfigOptionalComponentsItem {
/**
* Unspecified component. Specifying this will cause Cluster creation to fail.
*
*/
ComponentUnspecified("COMPONENT_UNSPECIFIED"),
/**
* The Anaconda python distribution. The Anaconda component is not supported in the Dataproc 2.0 image. The 2.0 image is pre-installed with Miniconda.
*
*/
Anaconda("ANACONDA"),
/**
* Docker
*
*/
Docker("DOCKER"),
/**
* The Druid query engine. (alpha)
*
*/
Druid("DRUID"),
/**
* Flink
*
*/
Flink("FLINK"),
/**
* HBase. (beta)
*
*/
Hbase("HBASE"),
/**
* The Hive Web HCatalog (the REST service for accessing HCatalog).
*
*/
HiveWebhcat("HIVE_WEBHCAT"),
/**
* Hudi.
*
*/
Hudi("HUDI"),
/**
* The Jupyter Notebook.
*
*/
Jupyter("JUPYTER"),
/**
* The Presto query engine.
*
*/
Presto("PRESTO"),
/**
* The Trino query engine.
*
*/
Trino("TRINO"),
/**
* The Ranger service.
*
*/
Ranger("RANGER"),
/**
* The Solr service.
*
*/
Solr("SOLR"),
/**
* The Zeppelin notebook.
*
*/
Zeppelin("ZEPPELIN"),
/**
* The Zookeeper service.
*
*/
Zookeeper("ZOOKEEPER");
private final String value;
SoftwareConfigOptionalComponentsItem(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "SoftwareConfigOptionalComponentsItem[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy