Skip to content

Commit 2050f80

Browse files
yoshi-automationquirogas
authored andcommitted
feat(dataproc): update the API
#### dataproc:v1 The following keys were added: - schemas.GceClusterConfig.properties.autoZoneExcludeZoneUris.description - schemas.GceClusterConfig.properties.autoZoneExcludeZoneUris.items.type - schemas.GceClusterConfig.properties.autoZoneExcludeZoneUris.type
1 parent fb0d161 commit 2050f80

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

discovery/dataproc-v1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5032,7 +5032,7 @@
50325032
}
50335033
}
50345034
},
5035-
"revision": "20251104",
5035+
"revision": "20251203",
50365036
"rootUrl": "https://dataproc.googleapis.com/",
50375037
"schemas": {
50385038
"AcceleratorConfig": {
@@ -7061,6 +7061,13 @@
70617061
"description": "Common config settings for resources of Compute Engine cluster instances, applicable to all instances in the cluster.",
70627062
"id": "GceClusterConfig",
70637063
"properties": {
7064+
"autoZoneExcludeZoneUris": {
7065+
"description": "Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service will pick one of the non-excluded zones. Otherwise, cluster creation will fail with INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone] projects/[project_id]/zones/[zone] [zone]",
7066+
"items": {
7067+
"type": "string"
7068+
},
7069+
"type": "array"
7070+
},
70647071
"confidentialInstanceConfig": {
70657072
"$ref": "ConfidentialInstanceConfig",
70667073
"description": "Optional. Confidential Instance Config for clusters using Confidential VMs (https://cloud.google.com/compute/confidential-vm/docs)."

src/apis/dataproc/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,6 +1263,10 @@ export namespace dataproc_v1 {
12631263
* Common config settings for resources of Compute Engine cluster instances, applicable to all instances in the cluster.
12641264
*/
12651265
export interface Schema$GceClusterConfig {
1266+
/**
1267+
* Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service will pick one of the non-excluded zones. Otherwise, cluster creation will fail with INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone] projects/[project_id]/zones/[zone] [zone]
1268+
*/
1269+
autoZoneExcludeZoneUris?: string[] | null;
12661270
/**
12671271
* Optional. Confidential Instance Config for clusters using Confidential VMs (https://cloud.google.com/compute/confidential-vm/docs).
12681272
*/

0 commit comments

Comments
 (0)