google-apis-dataproc_v1 0.50.0 → 0.52.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: 14f0adf5fec19ac8db7637b5c7a0e236039bde606801e1a17ae8326d7c79ca4e
4
- data.tar.gz: c42427af4023342f02593d1fd0dcc2b36e111505786673d8375518fdbb59235d
3
+ metadata.gz: 8a0bcdbed4ddcbfa4dfb12eb161f395b7f2dd81b9c9b068a754b7f4a855dbb3e
4
+ data.tar.gz: 6b62493112d66029a6f7353ad27d33e3d9b288c0a6922e798670919441c59b58
5
5
  SHA512:
6
- metadata.gz: 7c82a0a977e527545824f44a26328a0a2febe2b40b732d8bbf5ea0ac9522282a0365a1d19958857ccf09db51f5b5ab8bec2e0532689e01fcfdd55295ed5c72c1
7
- data.tar.gz: 2eb717eb8f9a587c39f44f024b8b4536028e166a5c61771157811d963bb72c7ada34596163503ff96a545594efd1dc8d089c64ae97a3aa6cc368780ea67d2589
6
+ metadata.gz: 11bde9df5ad754b98def5281d3166fc7e12b8a30010aeb09721ec5197df676500ea51f76026c406a648c12e0ab59d7f9bd0db4ca5d7aa41dff1de30f1baa0d14
7
+ data.tar.gz: f6e8ec18269ac2ff8b43c483cbca9bd76eb55b950d00b5696a7cb2ebbee6b304bebd59ae949f47bc4b04dca80bb2cfb7f89ffb36016acf761db9271f4f205c0c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.52.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230804
6
+
7
+ ### v0.51.0 (2023-07-23)
8
+
9
+ * Regenerated from discovery document revision 20230719
10
+
3
11
  ### v0.50.0 (2023-06-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20230620
@@ -1308,14 +1308,15 @@ module Google
1308
1308
  class ExecutionConfig
1309
1309
  include Google::Apis::Core::Hashable
1310
1310
 
1311
- # Optional. The duration to keep the session alive while it's idling. Exceeding
1312
- # this threshold causes the session to terminate. This field cannot be set on a
1313
- # batch workload. Minimum value is 10 minutes; maximum value is 14 days (see
1314
- # JSON representation of Duration (https://developers.google.com/protocol-
1315
- # buffers/docs/proto3#json)). Defaults to 4 hours if not set. If both ttl and
1316
- # idle_ttl are specified for an interactive session, the conditions are treated
1317
- # as OR conditions: the workload will be terminated when it has been idle for
1318
- # idle_ttl or when ttl has been exceeded, whichever occurs first.
1311
+ # Optional. Applies to sessions only. The duration to keep the session alive
1312
+ # while it's idling. Exceeding this threshold causes the session to terminate.
1313
+ # This field cannot be set on a batch workload. Minimum value is 10 minutes;
1314
+ # maximum value is 14 days (see JSON representation of Duration (https://
1315
+ # developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4 hours
1316
+ # if not set. If both ttl and idle_ttl are specified for an interactive session,
1317
+ # the conditions are treated as OR conditions: the workload will be terminated
1318
+ # when it has been idle for idle_ttl or when ttl has been exceeded, whichever
1319
+ # occurs first.
1319
1320
  # Corresponds to the JSON property `idleTtl`
1320
1321
  # @return [String]
1321
1322
  attr_accessor :idle_ttl
@@ -1443,6 +1444,70 @@ module Google
1443
1444
  end
1444
1445
  end
1445
1446
 
1447
+ # A Dataproc job for running Apache Flink (https://flink.apache.org/)
1448
+ # applications on YARN.
1449
+ class FlinkJob
1450
+ include Google::Apis::Core::Hashable
1451
+
1452
+ # Optional. The arguments to pass to the driver. Do not include arguments, such
1453
+ # as --conf, that can be set as job properties, since a collision may occur that
1454
+ # causes an incorrect job submission.
1455
+ # Corresponds to the JSON property `args`
1456
+ # @return [Array<String>]
1457
+ attr_accessor :args
1458
+
1459
+ # Optional. HCFS URIs of jar files to add to the CLASSPATHs of the Flink driver
1460
+ # and tasks.
1461
+ # Corresponds to the JSON property `jarFileUris`
1462
+ # @return [Array<String>]
1463
+ attr_accessor :jar_file_uris
1464
+
1465
+ # The runtime logging config of the job.
1466
+ # Corresponds to the JSON property `loggingConfig`
1467
+ # @return [Google::Apis::DataprocV1::LoggingConfig]
1468
+ attr_accessor :logging_config
1469
+
1470
+ # The name of the driver's main class. The jar file that contains the class must
1471
+ # be in the default CLASSPATH or specified in jar_file_uris.
1472
+ # Corresponds to the JSON property `mainClass`
1473
+ # @return [String]
1474
+ attr_accessor :main_class
1475
+
1476
+ # The HCFS URI of the jar file that contains the main class.
1477
+ # Corresponds to the JSON property `mainJarFileUri`
1478
+ # @return [String]
1479
+ attr_accessor :main_jar_file_uri
1480
+
1481
+ # Optional. A mapping of property names to values, used to configure Flink.
1482
+ # Properties that conflict with values set by the Dataproc API may beoverwritten.
1483
+ # Can include properties set in/etc/flink/conf/flink-defaults.conf and classes
1484
+ # in user code.
1485
+ # Corresponds to the JSON property `properties`
1486
+ # @return [Hash<String,String>]
1487
+ attr_accessor :properties
1488
+
1489
+ # Optional. HCFS URI of the savepoint which contains the last saved progress for
1490
+ # this job
1491
+ # Corresponds to the JSON property `savepointUri`
1492
+ # @return [String]
1493
+ attr_accessor :savepoint_uri
1494
+
1495
+ def initialize(**args)
1496
+ update!(**args)
1497
+ end
1498
+
1499
+ # Update properties of this object
1500
+ def update!(**args)
1501
+ @args = args[:args] if args.key?(:args)
1502
+ @jar_file_uris = args[:jar_file_uris] if args.key?(:jar_file_uris)
1503
+ @logging_config = args[:logging_config] if args.key?(:logging_config)
1504
+ @main_class = args[:main_class] if args.key?(:main_class)
1505
+ @main_jar_file_uri = args[:main_jar_file_uri] if args.key?(:main_jar_file_uri)
1506
+ @properties = args[:properties] if args.key?(:properties)
1507
+ @savepoint_uri = args[:savepoint_uri] if args.key?(:savepoint_uri)
1508
+ end
1509
+ end
1510
+
1446
1511
  # Common config settings for resources of Compute Engine cluster instances,
1447
1512
  # applicable to all instances in the cluster.
1448
1513
  class GceClusterConfig
@@ -1465,9 +1530,9 @@ module Google
1465
1530
  attr_accessor :internal_ip_only
1466
1531
  alias_method :internal_ip_only?, :internal_ip_only
1467
1532
 
1468
- # The Compute Engine metadata entries to add to all instances (see Project and
1469
- # instance metadata (https://cloud.google.com/compute/docs/storing-retrieving-
1470
- # metadata#project_and_instance_metadata)).
1533
+ # Optional. The Compute Engine metadata entries to add to all instances (see
1534
+ # Project and instance metadata (https://cloud.google.com/compute/docs/storing-
1535
+ # retrieving-metadata#project_and_instance_metadata)).
1471
1536
  # Corresponds to the JSON property `metadata`
1472
1537
  # @return [Hash<String,String>]
1473
1538
  attr_accessor :metadata
@@ -2179,6 +2244,23 @@ module Google
2179
2244
  # @return [String]
2180
2245
  attr_accessor :min_cpu_platform
2181
2246
 
2247
+ # Optional. The minimum number of instances to create. If min_num_instances is
2248
+ # set, min_num_instances is used for a criteria to decide the cluster. Cluster
2249
+ # creation will be failed by being an error state if the total number of
2250
+ # instances created is less than the min_num_instances. For example, given that
2251
+ # num_instances = 5 and min_num_instances = 3, * if 4 instances are created and
2252
+ # then registered successfully but one instance is failed, the failed VM will be
2253
+ # deleted and the cluster will be resized to 4 instances in running state. * if
2254
+ # 2 instances are created successfully and 3 instances are failed, the cluster
2255
+ # will be in an error state and does not delete failed VMs for debugging. * if 2
2256
+ # instance are created and then registered successfully but 3 instances are
2257
+ # failed to initialize, the cluster will be in an error state and does not
2258
+ # delete failed VMs for debugging. NB: This can only be set for primary workers
2259
+ # now.
2260
+ # Corresponds to the JSON property `minNumInstances`
2261
+ # @return [Fixnum]
2262
+ attr_accessor :min_num_instances
2263
+
2182
2264
  # Optional. The number of VM instances in the instance group. For HA cluster
2183
2265
  # master_config groups, must be set to 3. For standard cluster master_config
2184
2266
  # groups, must be set to 1.
@@ -2208,6 +2290,7 @@ module Google
2208
2290
  @machine_type_uri = args[:machine_type_uri] if args.key?(:machine_type_uri)
2209
2291
  @managed_group_config = args[:managed_group_config] if args.key?(:managed_group_config)
2210
2292
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
2293
+ @min_num_instances = args[:min_num_instances] if args.key?(:min_num_instances)
2211
2294
  @num_instances = args[:num_instances] if args.key?(:num_instances)
2212
2295
  @preemptibility = args[:preemptibility] if args.key?(:preemptibility)
2213
2296
  end
@@ -2350,6 +2433,12 @@ module Google
2350
2433
  # @return [Google::Apis::DataprocV1::DriverSchedulingConfig]
2351
2434
  attr_accessor :driver_scheduling_config
2352
2435
 
2436
+ # A Dataproc job for running Apache Flink (https://flink.apache.org/)
2437
+ # applications on YARN.
2438
+ # Corresponds to the JSON property `flinkJob`
2439
+ # @return [Google::Apis::DataprocV1::FlinkJob]
2440
+ attr_accessor :flink_job
2441
+
2353
2442
  # A Dataproc job for running Apache Hadoop MapReduce (https://hadoop.apache.org/
2354
2443
  # docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/
2355
2444
  # MapReduceTutorial.html) jobs on Apache Hadoop YARN (https://hadoop.apache.org/
@@ -2468,6 +2557,7 @@ module Google
2468
2557
  @driver_control_files_uri = args[:driver_control_files_uri] if args.key?(:driver_control_files_uri)
2469
2558
  @driver_output_resource_uri = args[:driver_output_resource_uri] if args.key?(:driver_output_resource_uri)
2470
2559
  @driver_scheduling_config = args[:driver_scheduling_config] if args.key?(:driver_scheduling_config)
2560
+ @flink_job = args[:flink_job] if args.key?(:flink_job)
2471
2561
  @hadoop_job = args[:hadoop_job] if args.key?(:hadoop_job)
2472
2562
  @hive_job = args[:hive_job] if args.key?(:hive_job)
2473
2563
  @job_uuid = args[:job_uuid] if args.key?(:job_uuid)
@@ -3457,12 +3547,12 @@ module Google
3457
3547
  # @return [String]
3458
3548
  attr_accessor :name
3459
3549
 
3460
- # The normal response of the operation in case of success. If the original
3461
- # method returns no data on success, such as Delete, the response is google.
3462
- # protobuf.Empty. If the original method is standard Get/Create/Update, the
3463
- # response should be the resource. For other methods, the response should have
3464
- # the type XxxResponse, where Xxx is the original method name. For example, if
3465
- # the original method name is TakeSnapshot(), the inferred response type is
3550
+ # The normal, successful response of the operation. If the original method
3551
+ # returns no data on success, such as Delete, the response is google.protobuf.
3552
+ # Empty. If the original method is standard Get/Create/Update, the response
3553
+ # should be the resource. For other methods, the response should have the type
3554
+ # XxxResponse, where Xxx is the original method name. For example, if the
3555
+ # original method name is TakeSnapshot(), the inferred response type is
3466
3556
  # TakeSnapshotResponse.
3467
3557
  # Corresponds to the JSON property `response`
3468
3558
  # @return [Hash<String,Object>]
@@ -4217,7 +4307,7 @@ module Google
4217
4307
  # @return [Google::Apis::DataprocV1::UsageMetrics]
4218
4308
  attr_accessor :approximate_usage
4219
4309
 
4220
- # The usage snaphot represents the resources consumed by a workload at a
4310
+ # The usage snapshot represents the resources consumed by a workload at a
4221
4311
  # specified time.
4222
4312
  # Corresponds to the JSON property `currentUsage`
4223
4313
  # @return [Google::Apis::DataprocV1::UsageSnapshot]
@@ -5228,7 +5318,7 @@ module Google
5228
5318
  end
5229
5319
  end
5230
5320
 
5231
- # The usage snaphot represents the resources consumed by a workload at a
5321
+ # The usage snapshot represents the resources consumed by a workload at a
5232
5322
  # specified time.
5233
5323
  class UsageSnapshot
5234
5324
  include Google::Apis::Core::Hashable
@@ -5239,12 +5329,26 @@ module Google
5239
5329
  # @return [Fixnum]
5240
5330
  attr_accessor :milli_dcu
5241
5331
 
5332
+ # Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at
5333
+ # premium tier (see Dataproc Serverless pricing (https://cloud.google.com/
5334
+ # dataproc-serverless/pricing)).
5335
+ # Corresponds to the JSON property `milliDcuPremium`
5336
+ # @return [Fixnum]
5337
+ attr_accessor :milli_dcu_premium
5338
+
5242
5339
  # Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (
5243
5340
  # https://cloud.google.com/dataproc-serverless/pricing))
5244
5341
  # Corresponds to the JSON property `shuffleStorageGb`
5245
5342
  # @return [Fixnum]
5246
5343
  attr_accessor :shuffle_storage_gb
5247
5344
 
5345
+ # Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see
5346
+ # Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
5347
+ # pricing))
5348
+ # Corresponds to the JSON property `shuffleStorageGbPremium`
5349
+ # @return [Fixnum]
5350
+ attr_accessor :shuffle_storage_gb_premium
5351
+
5248
5352
  # Optional. The timestamp of the usage snapshot.
5249
5353
  # Corresponds to the JSON property `snapshotTime`
5250
5354
  # @return [String]
@@ -5257,7 +5361,9 @@ module Google
5257
5361
  # Update properties of this object
5258
5362
  def update!(**args)
5259
5363
  @milli_dcu = args[:milli_dcu] if args.key?(:milli_dcu)
5364
+ @milli_dcu_premium = args[:milli_dcu_premium] if args.key?(:milli_dcu_premium)
5260
5365
  @shuffle_storage_gb = args[:shuffle_storage_gb] if args.key?(:shuffle_storage_gb)
5366
+ @shuffle_storage_gb_premium = args[:shuffle_storage_gb_premium] if args.key?(:shuffle_storage_gb_premium)
5261
5367
  @snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
5262
5368
  end
5263
5369
  end
@@ -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.50.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230620"
25
+ REVISION = "20230804"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,12 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class FlinkJob
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
211
217
  class GceClusterConfig
212
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
219
 
@@ -1126,6 +1132,20 @@ module Google
1126
1132
  end
1127
1133
  end
1128
1134
 
1135
+ class FlinkJob
1136
+ # @private
1137
+ class Representation < Google::Apis::Core::JsonRepresentation
1138
+ collection :args, as: 'args'
1139
+ collection :jar_file_uris, as: 'jarFileUris'
1140
+ property :logging_config, as: 'loggingConfig', class: Google::Apis::DataprocV1::LoggingConfig, decorator: Google::Apis::DataprocV1::LoggingConfig::Representation
1141
+
1142
+ property :main_class, as: 'mainClass'
1143
+ property :main_jar_file_uri, as: 'mainJarFileUri'
1144
+ hash :properties, as: 'properties'
1145
+ property :savepoint_uri, as: 'savepointUri'
1146
+ end
1147
+ end
1148
+
1129
1149
  class GceClusterConfig
1130
1150
  # @private
1131
1151
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1295,6 +1315,7 @@ module Google
1295
1315
  property :managed_group_config, as: 'managedGroupConfig', class: Google::Apis::DataprocV1::ManagedGroupConfig, decorator: Google::Apis::DataprocV1::ManagedGroupConfig::Representation
1296
1316
 
1297
1317
  property :min_cpu_platform, as: 'minCpuPlatform'
1318
+ property :min_num_instances, as: 'minNumInstances'
1298
1319
  property :num_instances, as: 'numInstances'
1299
1320
  property :preemptibility, as: 'preemptibility'
1300
1321
  end
@@ -1335,6 +1356,8 @@ module Google
1335
1356
  property :driver_output_resource_uri, as: 'driverOutputResourceUri'
1336
1357
  property :driver_scheduling_config, as: 'driverSchedulingConfig', class: Google::Apis::DataprocV1::DriverSchedulingConfig, decorator: Google::Apis::DataprocV1::DriverSchedulingConfig::Representation
1337
1358
 
1359
+ property :flink_job, as: 'flinkJob', class: Google::Apis::DataprocV1::FlinkJob, decorator: Google::Apis::DataprocV1::FlinkJob::Representation
1360
+
1338
1361
  property :hadoop_job, as: 'hadoopJob', class: Google::Apis::DataprocV1::HadoopJob, decorator: Google::Apis::DataprocV1::HadoopJob::Representation
1339
1362
 
1340
1363
  property :hive_job, as: 'hiveJob', class: Google::Apis::DataprocV1::HiveJob, decorator: Google::Apis::DataprocV1::HiveJob::Representation
@@ -2048,7 +2071,9 @@ module Google
2048
2071
  # @private
2049
2072
  class Representation < Google::Apis::Core::JsonRepresentation
2050
2073
  property :milli_dcu, :numeric_string => true, as: 'milliDcu'
2074
+ property :milli_dcu_premium, :numeric_string => true, as: 'milliDcuPremium'
2051
2075
  property :shuffle_storage_gb, :numeric_string => true, as: 'shuffleStorageGb'
2076
+ property :shuffle_storage_gb_premium, :numeric_string => true, as: 'shuffleStorageGbPremium'
2052
2077
  property :snapshot_time, as: 'snapshotTime'
2053
2078
  end
2054
2079
  end
@@ -404,8 +404,9 @@ module Google
404
404
  execute_or_queue_command(command, &block)
405
405
  end
406
406
 
407
- # Deletes the batch workload resource. If the batch is not in terminal state,
408
- # the delete fails and the response returns FAILED_PRECONDITION.
407
+ # Deletes the batch workload resource. If the batch is not in a CANCELLED,
408
+ # SUCCEEDED or FAILED State, the delete operation fails and the response returns
409
+ # FAILED_PRECONDITION.
409
410
  # @param [String] name
410
411
  # Required. The fully qualified name of the batch to retrieve in the format "
411
412
  # projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID"
@@ -1454,6 +1455,14 @@ module Google
1454
1455
  # @param [String] cluster_uuid
1455
1456
  # Optional. Specifying the cluster_uuid means the RPC should fail (with error
1456
1457
  # NOT_FOUND) if cluster with specified UUID does not exist.
1458
+ # @param [String] graceful_termination_timeout
1459
+ # Optional. The graceful termination timeout for the deletion of the cluster.
1460
+ # Indicate the time the request will wait to complete the running jobs on the
1461
+ # cluster before its forceful deletion. Default value is 0 indicating that the
1462
+ # user has not enabled the graceful termination. Value can be between 60 second
1463
+ # and 6 Hours, in case the graceful termination is enabled. (There is no
1464
+ # separate flag to check the enabling or disabling of graceful termination, it
1465
+ # can be checked by the values in the field).
1457
1466
  # @param [String] request_id
1458
1467
  # Optional. A unique ID used to identify the request. If the server receives two
1459
1468
  # DeleteClusterRequest (https://cloud.google.com/dataproc/docs/reference/rpc/
@@ -1481,7 +1490,7 @@ module Google
1481
1490
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1482
1491
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1483
1492
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1484
- def delete_cluster(project_id, region, cluster_name, cluster_uuid: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1493
+ def delete_cluster(project_id, region, cluster_name, cluster_uuid: nil, graceful_termination_timeout: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1485
1494
  command = make_simple_command(:delete, 'v1/projects/{projectId}/regions/{region}/clusters/{clusterName}', options)
1486
1495
  command.response_representation = Google::Apis::DataprocV1::Operation::Representation
1487
1496
  command.response_class = Google::Apis::DataprocV1::Operation
@@ -1489,6 +1498,7 @@ module Google
1489
1498
  command.params['region'] = region unless region.nil?
1490
1499
  command.params['clusterName'] = cluster_name unless cluster_name.nil?
1491
1500
  command.query['clusterUuid'] = cluster_uuid unless cluster_uuid.nil?
1501
+ command.query['gracefulTerminationTimeout'] = graceful_termination_timeout unless graceful_termination_timeout.nil?
1492
1502
  command.query['requestId'] = request_id unless request_id.nil?
1493
1503
  command.query['fields'] = fields unless fields.nil?
1494
1504
  command.query['quotaUser'] = quota_user unless quota_user.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.52.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
63
63
  post_install_message:
64
64
  rdoc_options: []