We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cluster_tier
1 parent 7f332fb commit ea37c68Copy full SHA for ea37c68
google/cloud/dataproc/v1/clusters.proto
@@ -215,6 +215,21 @@ message Cluster {
215
216
// The cluster config.
217
message ClusterConfig {
218
+ // The cluster tier.
219
+ enum ClusterTier {
220
+ // Not set. Works the same as CLUSTER_TIER_STANDARD.
221
+ CLUSTER_TIER_UNSPECIFIED = 0;
222
+
223
+ // Standard Dataproc cluster.
224
+ CLUSTER_TIER_STANDARD = 1;
225
226
+ // Premium Dataproc cluster.
227
+ CLUSTER_TIER_PREMIUM = 2;
228
+ }
229
230
+ // Optional. The cluster tier.
231
+ ClusterTier cluster_tier = 29 [(google.api.field_behavior) = OPTIONAL];
232
233
// Optional. A Cloud Storage bucket used to stage job
234
// dependencies, config files, and job driver console output.
235
// If you do not specify a staging bucket, Cloud
0 commit comments