google-apis-dataproc_v1 0.85.0 → 0.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e51f24c55e45ac8a3d898ad99d21b76d8d69566c1377033f20dea460ef867cc
4
- data.tar.gz: bae3f5f217006bdbd3e6479e10e39fa4de65b545fd2a644c79e44ec57febde4a
3
+ metadata.gz: 21fda1c7cd610808c92802da6e187e3632edcae93bf3f4938968a6d32926d062
4
+ data.tar.gz: a3339e06604cdb6dcbd0d9bea8e52b6a2fdb6476923f116169c06146d65397c0
5
5
  SHA512:
6
- metadata.gz: 3c97995bca7f65f0f6b4a7ea2b4c0a8ba4aecfeebcc01fa203f1ec8f9ff4a86f22fcc13cf3135bbdf74a0b368d1de4518222cf3376b9e28e5cdf77ac76c04455
7
- data.tar.gz: c47bdf6a6b62e03a7232c31c267136a8bc8d1f97a27ea79227fbddbf823989aa0db9ab3f17d4748df2ab4e59eb9269091ab72bf4d876479b7288a08ad692a1f8
6
+ metadata.gz: ddc2474581dcb746383140d2890264f878b69dec571d66414c8d45d1f7d39f00f7a64117646c776050cc092e70aa2620efdccb39b4692fb9fecd726178733cb9
7
+ data.tar.gz: 642098be1dca06d9926d432b56dc7be138e6b0e8061cc7687bdf9d2a1d2d9f8ab21ae8d9882e20d7f7a93b481903009cf188bdc7205d36e8e45a9f5844111100
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.87.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.86.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251104
10
+
3
11
  ### v0.85.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251021
@@ -1405,6 +1405,16 @@ module Google
1405
1405
  # @return [Google::Apis::DataprocV1::DataprocMetricConfig]
1406
1406
  attr_accessor :dataproc_metric_config
1407
1407
 
1408
+ # Optional. A Cloud Storage bucket used to collect checkpoint diagnostic data (
1409
+ # https://cloud.google.com/dataproc/docs/support/diagnose-clusters#
1410
+ # checkpoint_diagnostic_data). If you do not specify a diagnostic bucket, Cloud
1411
+ # Dataproc will use the Dataproc temp bucket to collect the checkpoint
1412
+ # diagnostic data. This field requires a Cloud Storage bucket name, not a gs://..
1413
+ # . URI to a Cloud Storage bucket.
1414
+ # Corresponds to the JSON property `diagnosticBucket`
1415
+ # @return [String]
1416
+ attr_accessor :diagnostic_bucket
1417
+
1408
1418
  # Encryption settings for the cluster.
1409
1419
  # Corresponds to the JSON property `encryptionConfig`
1410
1420
  # @return [Google::Apis::DataprocV1::EncryptionConfig]
@@ -1501,6 +1511,7 @@ module Google
1501
1511
  @cluster_type = args[:cluster_type] if args.key?(:cluster_type)
1502
1512
  @config_bucket = args[:config_bucket] if args.key?(:config_bucket)
1503
1513
  @dataproc_metric_config = args[:dataproc_metric_config] if args.key?(:dataproc_metric_config)
1514
+ @diagnostic_bucket = args[:diagnostic_bucket] if args.key?(:diagnostic_bucket)
1504
1515
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
1505
1516
  @endpoint_config = args[:endpoint_config] if args.key?(:endpoint_config)
1506
1517
  @gce_cluster_config = args[:gce_cluster_config] if args.key?(:gce_cluster_config)
@@ -2960,6 +2971,19 @@ module Google
2960
2971
  class GceClusterConfig
2961
2972
  include Google::Apis::Core::Hashable
2962
2973
 
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
+
2963
2987
  # Confidential Instance Config for clusters using Confidential VMs (https://
2964
2988
  # cloud.google.com/compute/confidential-vm/docs)
2965
2989
  # Corresponds to the JSON property `confidentialInstanceConfig`
@@ -3082,6 +3106,7 @@ module Google
3082
3106
 
3083
3107
  # Update properties of this object
3084
3108
  def update!(**args)
3109
+ @auto_zone_exclude_zone_uris = args[:auto_zone_exclude_zone_uris] if args.key?(:auto_zone_exclude_zone_uris)
3085
3110
  @confidential_instance_config = args[:confidential_instance_config] if args.key?(:confidential_instance_config)
3086
3111
  @internal_ip_only = args[:internal_ip_only] if args.key?(:internal_ip_only)
3087
3112
  @metadata = args[:metadata] if args.key?(:metadata)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1
18
18
  # Version of the google-apis-dataproc_v1 gem
19
- GEM_VERSION = "0.85.0"
19
+ GEM_VERSION = "0.87.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251021"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -1978,6 +1978,7 @@ module Google
1978
1978
  property :config_bucket, as: 'configBucket'
1979
1979
  property :dataproc_metric_config, as: 'dataprocMetricConfig', class: Google::Apis::DataprocV1::DataprocMetricConfig, decorator: Google::Apis::DataprocV1::DataprocMetricConfig::Representation
1980
1980
 
1981
+ property :diagnostic_bucket, as: 'diagnosticBucket'
1981
1982
  property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DataprocV1::EncryptionConfig, decorator: Google::Apis::DataprocV1::EncryptionConfig::Representation
1982
1983
 
1983
1984
  property :endpoint_config, as: 'endpointConfig', class: Google::Apis::DataprocV1::EndpointConfig, decorator: Google::Apis::DataprocV1::EndpointConfig::Representation
@@ -2351,6 +2352,7 @@ module Google
2351
2352
  class GceClusterConfig
2352
2353
  # @private
2353
2354
  class Representation < Google::Apis::Core::JsonRepresentation
2355
+ collection :auto_zone_exclude_zone_uris, as: 'autoZoneExcludeZoneUris'
2354
2356
  property :confidential_instance_config, as: 'confidentialInstanceConfig', class: Google::Apis::DataprocV1::ConfidentialInstanceConfig, decorator: Google::Apis::DataprocV1::ConfidentialInstanceConfig::Representation
2355
2357
 
2356
2358
  property :internal_ip_only, as: 'internalIpOnly'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.85.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.87.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
62
62
  rdoc_options: []
63
63
  require_paths: