google-apis-dataproc_v1 0.90.0 → 0.92.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: cc0439a50307e79108dd9f80f58a12b7d23835cf80cc4e981e9bacbda6ae8b75
4
- data.tar.gz: af07e9be7f3c401ed5bac5e74dc48e4dee07400450105640bed4c78d38f97931
3
+ metadata.gz: 0e8820fd9f6370755ad504563d4d9273c2e553d67e84ebd346dc9fcacfc8e3ae
4
+ data.tar.gz: 3bda44c2cc4f20dfc568012a2cf4c1be860e4d93f432b3428070c0fcbbce4df1
5
5
  SHA512:
6
- metadata.gz: 0ba88ac7857e0d607a2c540fa2d1b89da8e8e9b9d1608a8d81a03b02af2326293c1ebf98b616b7362fb24a34554a379be518b7d1ac2f55eea049933d8554ceea
7
- data.tar.gz: 1e5e1ebf1e9b0415c4bf347f5ab363a3c9ba93e9450a9b6a4237acb6c3c10afea11e828d3b9d2a48328f5d0c106942e6c2fc82a17ab9951e80a8a3709c3abc57
6
+ metadata.gz: 74c7c9e2cc9a049bff965e6a4bdc3387b220443e4db22b67519a8c5ddc01498a3685c1b17c7e25a85a41386914e1d6973e74d2c7fb71023db18af24841cf3f1f
7
+ data.tar.gz: f412cf0292f7de7b485c1c7fef0c9802beb11e1a603774174a9e085300dc6ac6d37412a6004519c3541dac7de453e619bb76c590009d42d4bbd9fa199197d1de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.92.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260427
6
+
7
+ ### v0.91.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260407
10
+
3
11
  ### v0.90.0 (2026-03-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20260219
@@ -1044,6 +1044,11 @@ module Google
1044
1044
  # @return [Google::Apis::DataprocV1::PySparkBatch]
1045
1045
  attr_accessor :pyspark_batch
1046
1046
 
1047
+ # A configuration for running a PySpark Notebook batch workload.
1048
+ # Corresponds to the JSON property `pysparkNotebookBatch`
1049
+ # @return [Google::Apis::DataprocV1::PySparkNotebookBatch]
1050
+ attr_accessor :pyspark_notebook_batch
1051
+
1047
1052
  # Runtime configuration for a workload.
1048
1053
  # Corresponds to the JSON property `runtimeConfig`
1049
1054
  # @return [Google::Apis::DataprocV1::RuntimeConfig]
@@ -1112,6 +1117,7 @@ module Google
1112
1117
  @name = args[:name] if args.key?(:name)
1113
1118
  @operation = args[:operation] if args.key?(:operation)
1114
1119
  @pyspark_batch = args[:pyspark_batch] if args.key?(:pyspark_batch)
1120
+ @pyspark_notebook_batch = args[:pyspark_notebook_batch] if args.key?(:pyspark_notebook_batch)
1115
1121
  @runtime_config = args[:runtime_config] if args.key?(:runtime_config)
1116
1122
  @runtime_info = args[:runtime_info] if args.key?(:runtime_info)
1117
1123
  @spark_batch = args[:spark_batch] if args.key?(:spark_batch)
@@ -1466,6 +1472,11 @@ module Google
1466
1472
  # @return [Google::Apis::DataprocV1::EndpointConfig]
1467
1473
  attr_accessor :endpoint_config
1468
1474
 
1475
+ # Optional. The cluster engine.
1476
+ # Corresponds to the JSON property `engine`
1477
+ # @return [String]
1478
+ attr_accessor :engine
1479
+
1469
1480
  # Common config settings for resources of Compute Engine cluster instances,
1470
1481
  # applicable to all instances in the cluster.
1471
1482
  # Corresponds to the JSON property `gceClusterConfig`
@@ -1555,6 +1566,7 @@ module Google
1555
1566
  @diagnostic_bucket = args[:diagnostic_bucket] if args.key?(:diagnostic_bucket)
1556
1567
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
1557
1568
  @endpoint_config = args[:endpoint_config] if args.key?(:endpoint_config)
1569
+ @engine = args[:engine] if args.key?(:engine)
1558
1570
  @gce_cluster_config = args[:gce_cluster_config] if args.key?(:gce_cluster_config)
1559
1571
  @gke_cluster_config = args[:gke_cluster_config] if args.key?(:gke_cluster_config)
1560
1572
  @initialization_actions = args[:initialization_actions] if args.key?(:initialization_actions)
@@ -1817,6 +1829,31 @@ module Google
1817
1829
  end
1818
1830
  end
1819
1831
 
1832
+ # Information about the cohort that the workload belongs to.
1833
+ class CohortInfo
1834
+ include Google::Apis::Core::Hashable
1835
+
1836
+ # Output only. Final cohort that was used to tune the workload.
1837
+ # Corresponds to the JSON property `cohort`
1838
+ # @return [String]
1839
+ attr_accessor :cohort
1840
+
1841
+ # Output only. Source of the cohort.
1842
+ # Corresponds to the JSON property `cohortSource`
1843
+ # @return [String]
1844
+ attr_accessor :cohort_source
1845
+
1846
+ def initialize(**args)
1847
+ update!(**args)
1848
+ end
1849
+
1850
+ # Update properties of this object
1851
+ def update!(**args)
1852
+ @cohort = args[:cohort] if args.key?(:cohort)
1853
+ @cohort_source = args[:cohort_source] if args.key?(:cohort_source)
1854
+ end
1855
+ end
1856
+
1820
1857
  # Confidential Instance Config for clusters using Confidential VMs (https://
1821
1858
  # cloud.google.com/compute/confidential-vm/docs)
1822
1859
  class ConfidentialInstanceConfig
@@ -2309,6 +2346,14 @@ module Google
2309
2346
  # @return [String]
2310
2347
  attr_accessor :network_uri
2311
2348
 
2349
+ # Optional. Associates Resource Manager tags with the workload nodes. There is a
2350
+ # max limit of 30 tags. Keys and values can be either in numeric format, such as
2351
+ # tagKeys/`tag_key_id` and tagValues/`tag_value_id`, or in namespaced format,
2352
+ # such as `org_id|project_id`/`tag_key_short_name` and `tag_value_short_name`.
2353
+ # Corresponds to the JSON property `resourceManagerTags`
2354
+ # @return [Hash<String,String>]
2355
+ attr_accessor :resource_manager_tags
2356
+
2312
2357
  # Optional. Service account that used to execute workload.
2313
2358
  # Corresponds to the JSON property `serviceAccount`
2314
2359
  # @return [String]
@@ -2357,6 +2402,7 @@ module Google
2357
2402
  @kms_key = args[:kms_key] if args.key?(:kms_key)
2358
2403
  @network_tags = args[:network_tags] if args.key?(:network_tags)
2359
2404
  @network_uri = args[:network_uri] if args.key?(:network_uri)
2405
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
2360
2406
  @service_account = args[:service_account] if args.key?(:service_account)
2361
2407
  @staging_bucket = args[:staging_bucket] if args.key?(:staging_bucket)
2362
2408
  @subnetwork_uri = args[:subnetwork_uri] if args.key?(:subnetwork_uri)
@@ -3747,6 +3793,14 @@ module Google
3747
3793
  class InstanceFlexibilityPolicy
3748
3794
  include Google::Apis::Core::Hashable
3749
3795
 
3796
+ # Output only. A map of instance short name to machine type. The key is the
3797
+ # short name of the Compute Engine instance, and the value is the full machine-
3798
+ # type name (e.g., 'n1-standard-16'). See Machine types for more information on
3799
+ # valid machine type strings.
3800
+ # Corresponds to the JSON property `instanceMachineTypes`
3801
+ # @return [Hash<String,String>]
3802
+ attr_accessor :instance_machine_types
3803
+
3750
3804
  # Optional. List of instance selection options that the group will use when
3751
3805
  # creating new VMs.
3752
3806
  # Corresponds to the JSON property `instanceSelectionList`
@@ -3769,6 +3823,7 @@ module Google
3769
3823
 
3770
3824
  # Update properties of this object
3771
3825
  def update!(**args)
3826
+ @instance_machine_types = args[:instance_machine_types] if args.key?(:instance_machine_types)
3772
3827
  @instance_selection_list = args[:instance_selection_list] if args.key?(:instance_selection_list)
3773
3828
  @instance_selection_results = args[:instance_selection_results] if args.key?(:instance_selection_results)
3774
3829
  @provisioning_model_mix = args[:provisioning_model_mix] if args.key?(:provisioning_model_mix)
@@ -6461,6 +6516,57 @@ module Google
6461
6516
  end
6462
6517
  end
6463
6518
 
6519
+ # A configuration for running a PySpark Notebook batch workload.
6520
+ class PySparkNotebookBatch
6521
+ include Google::Apis::Core::Hashable
6522
+
6523
+ # Optional. HCFS URIs of archives to be extracted into the working directory of
6524
+ # each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
6525
+ # Corresponds to the JSON property `archiveUris`
6526
+ # @return [Array<String>]
6527
+ attr_accessor :archive_uris
6528
+
6529
+ # Optional. HCFS URIs of files to be placed in the working directory of each
6530
+ # executor
6531
+ # Corresponds to the JSON property `fileUris`
6532
+ # @return [Array<String>]
6533
+ attr_accessor :file_uris
6534
+
6535
+ # Optional. HCFS URIs of jar files to be added to the Spark CLASSPATH.
6536
+ # Corresponds to the JSON property `jarFileUris`
6537
+ # @return [Array<String>]
6538
+ attr_accessor :jar_file_uris
6539
+
6540
+ # Required. The HCFS URI of the notebook file to execute.
6541
+ # Corresponds to the JSON property `notebookFileUri`
6542
+ # @return [String]
6543
+ attr_accessor :notebook_file_uri
6544
+
6545
+ # Optional. The parameters to pass to the notebook.
6546
+ # Corresponds to the JSON property `params`
6547
+ # @return [Hash<String,String>]
6548
+ attr_accessor :params
6549
+
6550
+ # Optional. HCFS URIs of Python files to pass to the PySpark framework.
6551
+ # Corresponds to the JSON property `pythonFileUris`
6552
+ # @return [Array<String>]
6553
+ attr_accessor :python_file_uris
6554
+
6555
+ def initialize(**args)
6556
+ update!(**args)
6557
+ end
6558
+
6559
+ # Update properties of this object
6560
+ def update!(**args)
6561
+ @archive_uris = args[:archive_uris] if args.key?(:archive_uris)
6562
+ @file_uris = args[:file_uris] if args.key?(:file_uris)
6563
+ @jar_file_uris = args[:jar_file_uris] if args.key?(:jar_file_uris)
6564
+ @notebook_file_uri = args[:notebook_file_uri] if args.key?(:notebook_file_uri)
6565
+ @params = args[:params] if args.key?(:params)
6566
+ @python_file_uris = args[:python_file_uris] if args.key?(:python_file_uris)
6567
+ end
6568
+ end
6569
+
6464
6570
  # Quantile metrics data related to Tasks. Units can be seconds, bytes,
6465
6571
  # milliseconds, etc depending on the message type.
6466
6572
  class Quantiles
@@ -7223,6 +7329,11 @@ module Google
7223
7329
  # @return [Google::Apis::DataprocV1::UsageMetrics]
7224
7330
  attr_accessor :approximate_usage
7225
7331
 
7332
+ # Information about the cohort that the workload belongs to.
7333
+ # Corresponds to the JSON property `cohortInfo`
7334
+ # @return [Google::Apis::DataprocV1::CohortInfo]
7335
+ attr_accessor :cohort_info
7336
+
7226
7337
  # The usage snapshot represents the resources consumed by a workload at a
7227
7338
  # specified time.
7228
7339
  # Corresponds to the JSON property `currentUsage`
@@ -7258,6 +7369,7 @@ module Google
7258
7369
  # Update properties of this object
7259
7370
  def update!(**args)
7260
7371
  @approximate_usage = args[:approximate_usage] if args.key?(:approximate_usage)
7372
+ @cohort_info = args[:cohort_info] if args.key?(:cohort_info)
7261
7373
  @current_usage = args[:current_usage] if args.key?(:current_usage)
7262
7374
  @diagnostic_output_uri = args[:diagnostic_output_uri] if args.key?(:diagnostic_output_uri)
7263
7375
  @endpoints = args[:endpoints] if args.key?(:endpoints)
@@ -8952,6 +9064,11 @@ module Google
8952
9064
  # @return [String]
8953
9065
  attr_accessor :desc
8954
9066
 
9067
+ # Optional. Additional metadata for the spark plan graph cluster.
9068
+ # Corresponds to the JSON property `metadata`
9069
+ # @return [Hash<String,String>]
9070
+ attr_accessor :metadata
9071
+
8955
9072
  #
8956
9073
  # Corresponds to the JSON property `metrics`
8957
9074
  # @return [Array<Google::Apis::DataprocV1::SqlPlanMetric>]
@@ -8979,6 +9096,7 @@ module Google
8979
9096
  # Update properties of this object
8980
9097
  def update!(**args)
8981
9098
  @desc = args[:desc] if args.key?(:desc)
9099
+ @metadata = args[:metadata] if args.key?(:metadata)
8982
9100
  @metrics = args[:metrics] if args.key?(:metrics)
8983
9101
  @name = args[:name] if args.key?(:name)
8984
9102
  @nodes = args[:nodes] if args.key?(:nodes)
@@ -9020,6 +9138,11 @@ module Google
9020
9138
  # @return [String]
9021
9139
  attr_accessor :desc
9022
9140
 
9141
+ # Optional. Additional metadata for the spark plan graph cluster.
9142
+ # Corresponds to the JSON property `metadata`
9143
+ # @return [Hash<String,String>]
9144
+ attr_accessor :metadata
9145
+
9023
9146
  #
9024
9147
  # Corresponds to the JSON property `metrics`
9025
9148
  # @return [Array<Google::Apis::DataprocV1::SqlPlanMetric>]
@@ -9042,6 +9165,7 @@ module Google
9042
9165
  # Update properties of this object
9043
9166
  def update!(**args)
9044
9167
  @desc = args[:desc] if args.key?(:desc)
9168
+ @metadata = args[:metadata] if args.key?(:metadata)
9045
9169
  @metrics = args[:metrics] if args.key?(:metrics)
9046
9170
  @name = args[:name] if args.key?(:name)
9047
9171
  @spark_plan_graph_node_id = args[:spark_plan_graph_node_id] if args.key?(:spark_plan_graph_node_id)
@@ -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.90.0"
19
+ GEM_VERSION = "0.92.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 = "20260219"
25
+ REVISION = "20260427"
26
26
  end
27
27
  end
28
28
  end
@@ -292,6 +292,12 @@ module Google
292
292
  include Google::Apis::Core::JsonObjectSupport
293
293
  end
294
294
 
295
+ class CohortInfo
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
295
301
  class ConfidentialInstanceConfig
296
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
303
 
@@ -868,6 +874,12 @@ module Google
868
874
  include Google::Apis::Core::JsonObjectSupport
869
875
  end
870
876
 
877
+ class PySparkNotebookBatch
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
871
883
  class Quantiles
872
884
  class Representation < Google::Apis::Core::JsonRepresentation; end
873
885
 
@@ -1917,6 +1929,8 @@ module Google
1917
1929
  property :operation, as: 'operation'
1918
1930
  property :pyspark_batch, as: 'pysparkBatch', class: Google::Apis::DataprocV1::PySparkBatch, decorator: Google::Apis::DataprocV1::PySparkBatch::Representation
1919
1931
 
1932
+ property :pyspark_notebook_batch, as: 'pysparkNotebookBatch', class: Google::Apis::DataprocV1::PySparkNotebookBatch, decorator: Google::Apis::DataprocV1::PySparkNotebookBatch::Representation
1933
+
1920
1934
  property :runtime_config, as: 'runtimeConfig', class: Google::Apis::DataprocV1::RuntimeConfig, decorator: Google::Apis::DataprocV1::RuntimeConfig::Representation
1921
1935
 
1922
1936
  property :runtime_info, as: 'runtimeInfo', class: Google::Apis::DataprocV1::RuntimeInfo, decorator: Google::Apis::DataprocV1::RuntimeInfo::Representation
@@ -2011,6 +2025,7 @@ module Google
2011
2025
 
2012
2026
  property :endpoint_config, as: 'endpointConfig', class: Google::Apis::DataprocV1::EndpointConfig, decorator: Google::Apis::DataprocV1::EndpointConfig::Representation
2013
2027
 
2028
+ property :engine, as: 'engine'
2014
2029
  property :gce_cluster_config, as: 'gceClusterConfig', class: Google::Apis::DataprocV1::GceClusterConfig, decorator: Google::Apis::DataprocV1::GceClusterConfig::Representation
2015
2030
 
2016
2031
  property :gke_cluster_config, as: 'gkeClusterConfig', class: Google::Apis::DataprocV1::GkeClusterConfig, decorator: Google::Apis::DataprocV1::GkeClusterConfig::Representation
@@ -2104,6 +2119,14 @@ module Google
2104
2119
  end
2105
2120
  end
2106
2121
 
2122
+ class CohortInfo
2123
+ # @private
2124
+ class Representation < Google::Apis::Core::JsonRepresentation
2125
+ property :cohort, as: 'cohort'
2126
+ property :cohort_source, as: 'cohortSource'
2127
+ end
2128
+ end
2129
+
2107
2130
  class ConfidentialInstanceConfig
2108
2131
  # @private
2109
2132
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2227,6 +2250,7 @@ module Google
2227
2250
  property :kms_key, as: 'kmsKey'
2228
2251
  collection :network_tags, as: 'networkTags'
2229
2252
  property :network_uri, as: 'networkUri'
2253
+ hash :resource_manager_tags, as: 'resourceManagerTags'
2230
2254
  property :service_account, as: 'serviceAccount'
2231
2255
  property :staging_bucket, as: 'stagingBucket'
2232
2256
  property :subnetwork_uri, as: 'subnetworkUri'
@@ -2553,6 +2577,7 @@ module Google
2553
2577
  class InstanceFlexibilityPolicy
2554
2578
  # @private
2555
2579
  class Representation < Google::Apis::Core::JsonRepresentation
2580
+ hash :instance_machine_types, as: 'instanceMachineTypes'
2556
2581
  collection :instance_selection_list, as: 'instanceSelectionList', class: Google::Apis::DataprocV1::InstanceSelection, decorator: Google::Apis::DataprocV1::InstanceSelection::Representation
2557
2582
 
2558
2583
  collection :instance_selection_results, as: 'instanceSelectionResults', class: Google::Apis::DataprocV1::InstanceSelectionResult, decorator: Google::Apis::DataprocV1::InstanceSelectionResult::Representation
@@ -3232,6 +3257,18 @@ module Google
3232
3257
  end
3233
3258
  end
3234
3259
 
3260
+ class PySparkNotebookBatch
3261
+ # @private
3262
+ class Representation < Google::Apis::Core::JsonRepresentation
3263
+ collection :archive_uris, as: 'archiveUris'
3264
+ collection :file_uris, as: 'fileUris'
3265
+ collection :jar_file_uris, as: 'jarFileUris'
3266
+ property :notebook_file_uri, as: 'notebookFileUri'
3267
+ hash :params, as: 'params'
3268
+ collection :python_file_uris, as: 'pythonFileUris'
3269
+ end
3270
+ end
3271
+
3235
3272
  class Quantiles
3236
3273
  # @private
3237
3274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3437,6 +3474,8 @@ module Google
3437
3474
  class Representation < Google::Apis::Core::JsonRepresentation
3438
3475
  property :approximate_usage, as: 'approximateUsage', class: Google::Apis::DataprocV1::UsageMetrics, decorator: Google::Apis::DataprocV1::UsageMetrics::Representation
3439
3476
 
3477
+ property :cohort_info, as: 'cohortInfo', class: Google::Apis::DataprocV1::CohortInfo, decorator: Google::Apis::DataprocV1::CohortInfo::Representation
3478
+
3440
3479
  property :current_usage, as: 'currentUsage', class: Google::Apis::DataprocV1::UsageSnapshot, decorator: Google::Apis::DataprocV1::UsageSnapshot::Representation
3441
3480
 
3442
3481
  property :diagnostic_output_uri, as: 'diagnosticOutputUri'
@@ -3918,6 +3957,7 @@ module Google
3918
3957
  # @private
3919
3958
  class Representation < Google::Apis::Core::JsonRepresentation
3920
3959
  property :desc, as: 'desc'
3960
+ hash :metadata, as: 'metadata'
3921
3961
  collection :metrics, as: 'metrics', class: Google::Apis::DataprocV1::SqlPlanMetric, decorator: Google::Apis::DataprocV1::SqlPlanMetric::Representation
3922
3962
 
3923
3963
  property :name, as: 'name'
@@ -3939,6 +3979,7 @@ module Google
3939
3979
  # @private
3940
3980
  class Representation < Google::Apis::Core::JsonRepresentation
3941
3981
  property :desc, as: 'desc'
3982
+ hash :metadata, as: 'metadata'
3942
3983
  collection :metrics, as: 'metrics', class: Google::Apis::DataprocV1::SqlPlanMetric, decorator: Google::Apis::DataprocV1::SqlPlanMetric::Representation
3943
3984
 
3944
3985
  property :name, as: 'name'
@@ -3876,9 +3876,12 @@ module Google
3876
3876
  # an implicit AND operator.Example filter:status.state = ACTIVE AND clusterName =
3877
3877
  # mycluster AND labels.env = staging AND labels.starred = *
3878
3878
  # @param [Fixnum] page_size
3879
- # Optional. The standard List page size.
3879
+ # Optional. The maximum number of clusters to return in each response. The
3880
+ # service may return fewer than this value. If unspecified, the default value is
3881
+ # 200. The maximum value is 1000.
3880
3882
  # @param [String] page_token
3881
- # Optional. The standard List page token.
3883
+ # Optional. A page token received from a previous ListClusters call. Provide
3884
+ # this token to retrieve the subsequent page.
3882
3885
  # @param [String] fields
3883
3886
  # Selector specifying which fields to include in a partial response.
3884
3887
  # @param [String] quota_user
@@ -31,6 +31,12 @@ module Google
31
31
 
32
32
  # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
+
35
+ # See, edit, configure, and delete your Google Cloud Dataproc data and see the email address for your Google Account
36
+ AUTH_DATAPROC = 'https://www.googleapis.com/auth/dataproc'
37
+
38
+ # See your Google Cloud Dataproc data and the email address of your Google Account
39
+ AUTH_DATAPROC_READ_ONLY = 'https://www.googleapis.com/auth/dataproc.read-only'
34
40
  end
35
41
  end
36
42
  end
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.90.0
4
+ version: 0.92.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.92.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: