Skip to content

Commit ea37c68

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add cluster_tier to support creating premium clusters
PiperOrigin-RevId: 776861070
1 parent 7f332fb commit ea37c68

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

google/cloud/dataproc/v1/clusters.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,21 @@ message Cluster {
215215

216216
// The cluster config.
217217
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+
218233
// Optional. A Cloud Storage bucket used to stage job
219234
// dependencies, config files, and job driver console output.
220235
// If you do not specify a staging bucket, Cloud

0 commit comments

Comments
 (0)