Skip to content

Commit a5afdef

Browse files
feat: Automated regeneration of dataproc v1 client (googleapis#25262)
Auto-created at 2025-12-14 11:19:05 +0000 using the toys pull request generator.
1 parent 4271393 commit a5afdef

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163523,6 +163523,8 @@
163523163523
"/dataproc:v1/FlinkJob/properties/property": property
163524163524
"/dataproc:v1/FlinkJob/savepointUri": savepoint_uri
163525163525
"/dataproc:v1/GceClusterConfig": gce_cluster_config
163526+
"/dataproc:v1/GceClusterConfig/autoZoneExcludeZoneUris": auto_zone_exclude_zone_uris
163527+
"/dataproc:v1/GceClusterConfig/autoZoneExcludeZoneUris/auto_zone_exclude_zone_uri": auto_zone_exclude_zone_uri
163526163528
"/dataproc:v1/GceClusterConfig/confidentialInstanceConfig": confidential_instance_config
163527163529
"/dataproc:v1/GceClusterConfig/internalIpOnly": internal_ip_only
163528163530
"/dataproc:v1/GceClusterConfig/metadata": metadata

generated/google-apis-dataproc_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dataproc_v1
22

3+
### v0.87.0 (2025-12-14)
4+
5+
* Regenerated from discovery document revision 20251203
6+
37
### v0.86.0 (2025-11-09)
48

59
* Regenerated from discovery document revision 20251104

generated/google-apis-dataproc_v1/lib/google/apis/dataproc_v1/classes.rb

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2971,6 +2971,19 @@ def update!(**args)
29712971
class GceClusterConfig
29722972
include Google::Apis::Core::Hashable
29732973

2974+
# Optional. An optional list of Compute Engine zones where the Dataproc cluster
2975+
# will not be located when Auto Zone is enabled. Only one of zone_uri or
2976+
# auto_zone_exclude_zone_uris can be set. If both are omitted, the service will
2977+
# pick a zone in the cluster Compute Engine region. If
2978+
# auto_zone_exclude_zone_uris is set and there is more than one non-excluded
2979+
# zone, the service will pick one of the non-excluded zones. Otherwise, cluster
2980+
# creation will fail with INVALID_ARGUMENT error.A full URL, partial URI, or
2981+
# short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/
2982+
# [project_id]/zones/[zone] projects/[project_id]/zones/[zone] [zone]
2983+
# Corresponds to the JSON property `autoZoneExcludeZoneUris`
2984+
# @return [Array<String>]
2985+
attr_accessor :auto_zone_exclude_zone_uris
2986+
29742987
# Confidential Instance Config for clusters using Confidential VMs (https://
29752988
# cloud.google.com/compute/confidential-vm/docs)
29762989
# Corresponds to the JSON property `confidentialInstanceConfig`
@@ -3093,6 +3106,7 @@ def initialize(**args)
30933106

30943107
# Update properties of this object
30953108
def update!(**args)
3109+
@auto_zone_exclude_zone_uris = args[:auto_zone_exclude_zone_uris] if args.key?(:auto_zone_exclude_zone_uris)
30963110
@confidential_instance_config = args[:confidential_instance_config] if args.key?(:confidential_instance_config)
30973111
@internal_ip_only = args[:internal_ip_only] if args.key?(:internal_ip_only)
30983112
@metadata = args[:metadata] if args.key?(:metadata)

generated/google-apis-dataproc_v1/lib/google/apis/dataproc_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DataprocV1
1818
# Version of the google-apis-dataproc_v1 gem
19-
GEM_VERSION = "0.86.0"
19+
GEM_VERSION = "0.87.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20251104"
25+
REVISION = "20251203"
2626
end
2727
end
2828
end

generated/google-apis-dataproc_v1/lib/google/apis/dataproc_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
23522352
class GceClusterConfig
23532353
# @private
23542354
class Representation < Google::Apis::Core::JsonRepresentation
2355+
collection :auto_zone_exclude_zone_uris, as: 'autoZoneExcludeZoneUris'
23552356
property :confidential_instance_config, as: 'confidentialInstanceConfig', class: Google::Apis::DataprocV1::ConfidentialInstanceConfig, decorator: Google::Apis::DataprocV1::ConfidentialInstanceConfig::Representation
23562357

23572358
property :internal_ip_only, as: 'internalIpOnly'

0 commit comments

Comments
 (0)