Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160740,6 +160740,7 @@
"/dataproc:v1/ClusterConfig/clusterType": cluster_type
"/dataproc:v1/ClusterConfig/configBucket": config_bucket
"/dataproc:v1/ClusterConfig/dataprocMetricConfig": dataproc_metric_config
"/dataproc:v1/ClusterConfig/diagnosticBucket": diagnostic_bucket
"/dataproc:v1/ClusterConfig/encryptionConfig": encryption_config
"/dataproc:v1/ClusterConfig/endpointConfig": endpoint_config
"/dataproc:v1/ClusterConfig/gceClusterConfig": gce_cluster_config
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-dataproc_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-dataproc_v1

### v0.86.0 (2025-11-09)

* Regenerated from discovery document revision 20251104

### v0.85.0 (2025-11-02)

* Regenerated from discovery document revision 20251021
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1405,6 +1405,16 @@ class ClusterConfig
# @return [Google::Apis::DataprocV1::DataprocMetricConfig]
attr_accessor :dataproc_metric_config

# Optional. A Cloud Storage bucket used to collect checkpoint diagnostic data (
# https://cloud.google.com/dataproc/docs/support/diagnose-clusters#
# checkpoint_diagnostic_data). If you do not specify a diagnostic bucket, Cloud
# Dataproc will use the Dataproc temp bucket to collect the checkpoint
# diagnostic data. This field requires a Cloud Storage bucket name, not a gs://..
# . URI to a Cloud Storage bucket.
# Corresponds to the JSON property `diagnosticBucket`
# @return [String]
attr_accessor :diagnostic_bucket

# Encryption settings for the cluster.
# Corresponds to the JSON property `encryptionConfig`
# @return [Google::Apis::DataprocV1::EncryptionConfig]
Expand Down Expand Up @@ -1501,6 +1511,7 @@ def update!(**args)
@cluster_type = args[:cluster_type] if args.key?(:cluster_type)
@config_bucket = args[:config_bucket] if args.key?(:config_bucket)
@dataproc_metric_config = args[:dataproc_metric_config] if args.key?(:dataproc_metric_config)
@diagnostic_bucket = args[:diagnostic_bucket] if args.key?(:diagnostic_bucket)
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
@endpoint_config = args[:endpoint_config] if args.key?(:endpoint_config)
@gce_cluster_config = args[:gce_cluster_config] if args.key?(:gce_cluster_config)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DataprocV1
# Version of the google-apis-dataproc_v1 gem
GEM_VERSION = "0.85.0"
GEM_VERSION = "0.86.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251021"
REVISION = "20251104"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1978,6 +1978,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :config_bucket, as: 'configBucket'
property :dataproc_metric_config, as: 'dataprocMetricConfig', class: Google::Apis::DataprocV1::DataprocMetricConfig, decorator: Google::Apis::DataprocV1::DataprocMetricConfig::Representation

property :diagnostic_bucket, as: 'diagnosticBucket'
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DataprocV1::EncryptionConfig, decorator: Google::Apis::DataprocV1::EncryptionConfig::Representation

property :endpoint_config, as: 'endpointConfig', class: Google::Apis::DataprocV1::EndpointConfig, decorator: Google::Apis::DataprocV1::EndpointConfig::Representation
Expand Down