google-apis-dataproc_v1 0.54.0 → 0.56.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17217fe058992b7183b0eead8a5341908d35b6cc198bfb492b0542c6adf49e64
|
4
|
+
data.tar.gz: f36ec5e9afe9132c7bebaa9dd7572506fc9802ecdc1833fdd17f7fa4158aca11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14a2aadb833400938203f681982a1b002a6b793a409557afc8e20dd67e9d98b1cd5f59b3a44b24ab771f50ab8be34d5defe672ed481a9ed3db80fb9a9b37a7c7
|
7
|
+
data.tar.gz: 19ee3c63657a969c5a6955e21a01eccb3fe6566701671718cde1e771626f8bba7f3b3fa9697a789ae477cb426984be0bcc547ab129206421e796e7e7bf288928
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.56.0 (2023-10-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230926
|
6
|
+
|
7
|
+
### v0.55.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230919
|
10
|
+
|
3
11
|
### v0.54.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230830
|
@@ -1242,12 +1242,6 @@ module Google
|
|
1242
1242
|
# @return [String]
|
1243
1243
|
attr_accessor :gce_pd_kms_key_name
|
1244
1244
|
|
1245
|
-
# Optional. The Cloud KMS key name to use for encrypting customer core content
|
1246
|
-
# and cluster PD disk for all instances in the cluster.
|
1247
|
-
# Corresponds to the JSON property `kmsKey`
|
1248
|
-
# @return [String]
|
1249
|
-
attr_accessor :kms_key
|
1250
|
-
|
1251
1245
|
def initialize(**args)
|
1252
1246
|
update!(**args)
|
1253
1247
|
end
|
@@ -1255,7 +1249,6 @@ module Google
|
|
1255
1249
|
# Update properties of this object
|
1256
1250
|
def update!(**args)
|
1257
1251
|
@gce_pd_kms_key_name = args[:gce_pd_kms_key_name] if args.key?(:gce_pd_kms_key_name)
|
1258
|
-
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1259
1252
|
end
|
1260
1253
|
end
|
1261
1254
|
|
@@ -1365,18 +1358,18 @@ module Google
|
|
1365
1358
|
# @return [String]
|
1366
1359
|
attr_accessor :subnetwork_uri
|
1367
1360
|
|
1368
|
-
# Optional. The duration after which the workload will be terminated
|
1369
|
-
#
|
1370
|
-
#
|
1371
|
-
#
|
1372
|
-
#
|
1373
|
-
#
|
1374
|
-
#
|
1375
|
-
#
|
1376
|
-
#
|
1377
|
-
# specified (for an interactive session), the conditions are
|
1378
|
-
# conditions: the workload will be terminated when it has been
|
1379
|
-
# or when ttl has been exceeded, whichever occurs first.
|
1361
|
+
# Optional. The duration after which the workload will be terminated, specified
|
1362
|
+
# as the JSON representation for Duration (https://protobuf.dev/programming-
|
1363
|
+
# guides/proto3/#json). When the workload exceeds this duration, it will be
|
1364
|
+
# unconditionally terminated without waiting for ongoing work to finish. If ttl
|
1365
|
+
# is not specified for a batch workload, the workload will be allowed to run
|
1366
|
+
# until it exits naturally (or run forever without exiting). If ttl is not
|
1367
|
+
# specified for an interactive session, it defaults to 24 hours. If ttl is not
|
1368
|
+
# specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours.
|
1369
|
+
# Minimum value is 10 minutes; maximum value is 14 days. If both ttl and
|
1370
|
+
# idle_ttl are specified (for an interactive session), the conditions are
|
1371
|
+
# treated as OR conditions: the workload will be terminated when it has been
|
1372
|
+
# idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
|
1380
1373
|
# Corresponds to the JSON property `ttl`
|
1381
1374
|
# @return [String]
|
1382
1375
|
attr_accessor :ttl
|
@@ -1452,14 +1445,13 @@ module Google
|
|
1452
1445
|
end
|
1453
1446
|
end
|
1454
1447
|
|
1455
|
-
# A Dataproc job for running Apache Flink
|
1456
|
-
# applications on YARN.
|
1448
|
+
# A Dataproc job for running Apache Flink applications on YARN.
|
1457
1449
|
class FlinkJob
|
1458
1450
|
include Google::Apis::Core::Hashable
|
1459
1451
|
|
1460
1452
|
# Optional. The arguments to pass to the driver. Do not include arguments, such
|
1461
|
-
# as --conf, that can be set as job properties, since a collision
|
1462
|
-
# causes an incorrect job submission.
|
1453
|
+
# as --conf, that can be set as job properties, since a collision might occur
|
1454
|
+
# that causes an incorrect job submission.
|
1463
1455
|
# Corresponds to the JSON property `args`
|
1464
1456
|
# @return [Array<String>]
|
1465
1457
|
attr_accessor :args
|
@@ -1476,7 +1468,7 @@ module Google
|
|
1476
1468
|
attr_accessor :logging_config
|
1477
1469
|
|
1478
1470
|
# The name of the driver's main class. The jar file that contains the class must
|
1479
|
-
# be in the default CLASSPATH or specified in
|
1471
|
+
# be in the default CLASSPATH or specified in jarFileUris.
|
1480
1472
|
# Corresponds to the JSON property `mainClass`
|
1481
1473
|
# @return [String]
|
1482
1474
|
attr_accessor :main_class
|
@@ -1487,15 +1479,15 @@ module Google
|
|
1487
1479
|
attr_accessor :main_jar_file_uri
|
1488
1480
|
|
1489
1481
|
# Optional. A mapping of property names to values, used to configure Flink.
|
1490
|
-
# Properties that conflict with values set by the Dataproc API
|
1491
|
-
# Can include properties set in/etc/flink/conf/flink-defaults.
|
1492
|
-
# in user code.
|
1482
|
+
# Properties that conflict with values set by the Dataproc API might
|
1483
|
+
# beoverwritten. Can include properties set in/etc/flink/conf/flink-defaults.
|
1484
|
+
# conf and classes in user code.
|
1493
1485
|
# Corresponds to the JSON property `properties`
|
1494
1486
|
# @return [Hash<String,String>]
|
1495
1487
|
attr_accessor :properties
|
1496
1488
|
|
1497
|
-
# Optional. HCFS URI of the savepoint which contains the last saved progress
|
1498
|
-
#
|
1489
|
+
# Optional. HCFS URI of the savepoint, which contains the last saved progress
|
1490
|
+
# for starting the current job.
|
1499
1491
|
# Corresponds to the JSON property `savepointUri`
|
1500
1492
|
# @return [String]
|
1501
1493
|
attr_accessor :savepoint_uri
|
@@ -1964,7 +1956,7 @@ module Google
|
|
1964
1956
|
|
1965
1957
|
# Optional. The arguments to pass to the driver. Do not include arguments, such
|
1966
1958
|
# as -libjars or -Dfoo=bar, that can be set as job properties, since a collision
|
1967
|
-
#
|
1959
|
+
# might occur that causes an incorrect job submission.
|
1968
1960
|
# Corresponds to the JSON property `args`
|
1969
1961
|
# @return [Array<String>]
|
1970
1962
|
attr_accessor :args
|
@@ -2002,7 +1994,7 @@ module Google
|
|
2002
1994
|
attr_accessor :main_jar_file_uri
|
2003
1995
|
|
2004
1996
|
# Optional. A mapping of property names to values, used to configure Hadoop.
|
2005
|
-
# Properties that conflict with values set by the Dataproc API
|
1997
|
+
# Properties that conflict with values set by the Dataproc API might be
|
2006
1998
|
# overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes
|
2007
1999
|
# in user code.
|
2008
2000
|
# Corresponds to the JSON property `properties`
|
@@ -2046,7 +2038,7 @@ module Google
|
|
2046
2038
|
attr_accessor :jar_file_uris
|
2047
2039
|
|
2048
2040
|
# Optional. A mapping of property names and values, used to configure Hive.
|
2049
|
-
# Properties that conflict with values set by the Dataproc API
|
2041
|
+
# Properties that conflict with values set by the Dataproc API might be
|
2050
2042
|
# overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/
|
2051
2043
|
# hive/conf/hive-site.xml, and classes in user code.
|
2052
2044
|
# Corresponds to the JSON property `properties`
|
@@ -2311,6 +2303,12 @@ module Google
|
|
2311
2303
|
# @return [String]
|
2312
2304
|
attr_accessor :preemptibility
|
2313
2305
|
|
2306
|
+
# Configuration to handle the startup of instances during cluster create and
|
2307
|
+
# update process.
|
2308
|
+
# Corresponds to the JSON property `startupConfig`
|
2309
|
+
# @return [Google::Apis::DataprocV1::StartupConfig]
|
2310
|
+
attr_accessor :startup_config
|
2311
|
+
|
2314
2312
|
def initialize(**args)
|
2315
2313
|
update!(**args)
|
2316
2314
|
end
|
@@ -2330,6 +2328,7 @@ module Google
|
|
2330
2328
|
@min_num_instances = args[:min_num_instances] if args.key?(:min_num_instances)
|
2331
2329
|
@num_instances = args[:num_instances] if args.key?(:num_instances)
|
2332
2330
|
@preemptibility = args[:preemptibility] if args.key?(:preemptibility)
|
2331
|
+
@startup_config = args[:startup_config] if args.key?(:startup_config)
|
2333
2332
|
end
|
2334
2333
|
end
|
2335
2334
|
|
@@ -2506,8 +2505,8 @@ module Google
|
|
2506
2505
|
attr_accessor :done
|
2507
2506
|
alias_method :done?, :done
|
2508
2507
|
|
2509
|
-
# Output only. If present, the location of miscellaneous control files which
|
2510
|
-
# be used as part of job setup and handling. If not present, control files
|
2508
|
+
# Output only. If present, the location of miscellaneous control files which can
|
2509
|
+
# be used as part of job setup and handling. If not present, control files might
|
2511
2510
|
# be placed in the same location as driver_output_uri.
|
2512
2511
|
# Corresponds to the JSON property `driverControlFilesUri`
|
2513
2512
|
# @return [String]
|
@@ -2524,8 +2523,7 @@ module Google
|
|
2524
2523
|
# @return [Google::Apis::DataprocV1::DriverSchedulingConfig]
|
2525
2524
|
attr_accessor :driver_scheduling_config
|
2526
2525
|
|
2527
|
-
# A Dataproc job for running Apache Flink
|
2528
|
-
# applications on YARN.
|
2526
|
+
# A Dataproc job for running Apache Flink applications on YARN.
|
2529
2527
|
# Corresponds to the JSON property `flinkJob`
|
2530
2528
|
# @return [Google::Apis::DataprocV1::FlinkJob]
|
2531
2529
|
attr_accessor :flink_job
|
@@ -2545,7 +2543,7 @@ module Google
|
|
2545
2543
|
attr_accessor :hive_job
|
2546
2544
|
|
2547
2545
|
# Output only. A UUID that uniquely identifies a job within the project over
|
2548
|
-
# time. This is in contrast to a user-settable reference.job_id that
|
2546
|
+
# time. This is in contrast to a user-settable reference.job_id that might be
|
2549
2547
|
# reused over time.
|
2550
2548
|
# Corresponds to the JSON property `jobUuid`
|
2551
2549
|
# @return [String]
|
@@ -2553,7 +2551,7 @@ module Google
|
|
2553
2551
|
|
2554
2552
|
# Optional. The labels to associate with this job. Label keys must contain 1 to
|
2555
2553
|
# 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.
|
2556
|
-
# txt). Label values
|
2554
|
+
# txt). Label values can be empty, but, if present, must contain 1 to 63
|
2557
2555
|
# characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt)
|
2558
2556
|
# . No more than 32 labels can be associated with a job.
|
2559
2557
|
# Corresponds to the JSON property `labels`
|
@@ -2632,8 +2630,8 @@ module Google
|
|
2632
2630
|
attr_accessor :trino_job
|
2633
2631
|
|
2634
2632
|
# Output only. The collection of YARN applications spun up by this job.Beta
|
2635
|
-
# Feature: This report is available for testing purposes only. It
|
2636
|
-
# before final release.
|
2633
|
+
# Feature: This report is available for testing purposes only. It might be
|
2634
|
+
# changed before final release.
|
2637
2635
|
# Corresponds to the JSON property `yarnApplications`
|
2638
2636
|
# @return [Array<Google::Apis::DataprocV1::YarnApplication>]
|
2639
2637
|
attr_accessor :yarn_applications
|
@@ -2771,18 +2769,18 @@ module Google
|
|
2771
2769
|
class JobScheduling
|
2772
2770
|
include Google::Apis::Core::Hashable
|
2773
2771
|
|
2774
|
-
# Optional. Maximum number of times per hour a driver
|
2772
|
+
# Optional. Maximum number of times per hour a driver can be restarted as a
|
2775
2773
|
# result of driver exiting with non-zero code before job is reported failed.A
|
2776
|
-
# job
|
2777
|
-
# times within a 10-minute window.Maximum value is 10.Note: This
|
2778
|
-
# option is not supported in Dataproc workflow templates (https
|
2779
|
-
# com/dataproc/docs/concepts/workflows/using-workflows#
|
2780
|
-
# .
|
2774
|
+
# job might be reported as thrashing if the driver exits with a non-zero code
|
2775
|
+
# four times within a 10-minute window.Maximum value is 10.Note: This
|
2776
|
+
# restartable job option is not supported in Dataproc workflow templates (https:/
|
2777
|
+
# /cloud.google.com/dataproc/docs/concepts/workflows/using-workflows#
|
2778
|
+
# adding_jobs_to_a_template).
|
2781
2779
|
# Corresponds to the JSON property `maxFailuresPerHour`
|
2782
2780
|
# @return [Fixnum]
|
2783
2781
|
attr_accessor :max_failures_per_hour
|
2784
2782
|
|
2785
|
-
# Optional. Maximum total number of times a driver
|
2783
|
+
# Optional. Maximum total number of times a driver can be restarted as a result
|
2786
2784
|
# of the driver exiting with a non-zero code. After the maximum number is
|
2787
2785
|
# reached, the job will be reported as failed.Maximum value is 240.Note:
|
2788
2786
|
# Currently, this restartable job option is not supported in Dataproc workflow
|
@@ -3315,7 +3313,7 @@ module Google
|
|
3315
3313
|
class LoggingConfig
|
3316
3314
|
include Google::Apis::Core::Hashable
|
3317
3315
|
|
3318
|
-
# The per-package log levels for the driver. This
|
3316
|
+
# The per-package log levels for the driver. This can include "root" package
|
3319
3317
|
# name to configure rootLogger. Examples: - 'com.google = FATAL' - 'root = INFO'
|
3320
3318
|
# - 'org.apache = DEBUG'
|
3321
3319
|
# Corresponds to the JSON property `driverLogLevels`
|
@@ -3751,6 +3749,11 @@ module Google
|
|
3751
3749
|
class OrderedJob
|
3752
3750
|
include Google::Apis::Core::Hashable
|
3753
3751
|
|
3752
|
+
# A Dataproc job for running Apache Flink applications on YARN.
|
3753
|
+
# Corresponds to the JSON property `flinkJob`
|
3754
|
+
# @return [Google::Apis::DataprocV1::FlinkJob]
|
3755
|
+
attr_accessor :flink_job
|
3756
|
+
|
3754
3757
|
# A Dataproc job for running Apache Hadoop MapReduce (https://hadoop.apache.org/
|
3755
3758
|
# docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/
|
3756
3759
|
# MapReduceTutorial.html) jobs on Apache Hadoop YARN (https://hadoop.apache.org/
|
@@ -3847,6 +3850,7 @@ module Google
|
|
3847
3850
|
|
3848
3851
|
# Update properties of this object
|
3849
3852
|
def update!(**args)
|
3853
|
+
@flink_job = args[:flink_job] if args.key?(:flink_job)
|
3850
3854
|
@hadoop_job = args[:hadoop_job] if args.key?(:hadoop_job)
|
3851
3855
|
@hive_job = args[:hive_job] if args.key?(:hive_job)
|
3852
3856
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -3939,7 +3943,7 @@ module Google
|
|
3939
3943
|
attr_accessor :logging_config
|
3940
3944
|
|
3941
3945
|
# Optional. A mapping of property names to values, used to configure Pig.
|
3942
|
-
# Properties that conflict with values set by the Dataproc API
|
3946
|
+
# Properties that conflict with values set by the Dataproc API might be
|
3943
3947
|
# overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/
|
3944
3948
|
# pig/conf/pig.properties, and classes in user code.
|
3945
3949
|
# Corresponds to the JSON property `properties`
|
@@ -4247,7 +4251,7 @@ module Google
|
|
4247
4251
|
attr_accessor :main_python_file_uri
|
4248
4252
|
|
4249
4253
|
# Optional. A mapping of property names to values, used to configure PySpark.
|
4250
|
-
# Properties that conflict with values set by the Dataproc API
|
4254
|
+
# Properties that conflict with values set by the Dataproc API might be
|
4251
4255
|
# overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf
|
4252
4256
|
# and classes in user code.
|
4253
4257
|
# Corresponds to the JSON property `properties`
|
@@ -4848,6 +4852,12 @@ module Google
|
|
4848
4852
|
# @return [String]
|
4849
4853
|
attr_accessor :update_time
|
4850
4854
|
|
4855
|
+
# Output only. A session template UUID (Unique Universal Identifier). The
|
4856
|
+
# service generates this value when it creates the session template.
|
4857
|
+
# Corresponds to the JSON property `uuid`
|
4858
|
+
# @return [String]
|
4859
|
+
attr_accessor :uuid
|
4860
|
+
|
4851
4861
|
def initialize(**args)
|
4852
4862
|
update!(**args)
|
4853
4863
|
end
|
@@ -4863,6 +4873,7 @@ module Google
|
|
4863
4873
|
@name = args[:name] if args.key?(:name)
|
4864
4874
|
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
4865
4875
|
@update_time = args[:update_time] if args.key?(:update_time)
|
4876
|
+
@uuid = args[:uuid] if args.key?(:uuid)
|
4866
4877
|
end
|
4867
4878
|
end
|
4868
4879
|
|
@@ -5102,7 +5113,7 @@ module Google
|
|
5102
5113
|
attr_accessor :logging_config
|
5103
5114
|
|
5104
5115
|
# The name of the driver's main class. The jar file that contains the class must
|
5105
|
-
# be in the default CLASSPATH or specified in jar_file_uris.
|
5116
|
+
# be in the default CLASSPATH or specified in SparkJob.jar_file_uris.
|
5106
5117
|
# Corresponds to the JSON property `mainClass`
|
5107
5118
|
# @return [String]
|
5108
5119
|
attr_accessor :main_class
|
@@ -5113,7 +5124,7 @@ module Google
|
|
5113
5124
|
attr_accessor :main_jar_file_uri
|
5114
5125
|
|
5115
5126
|
# Optional. A mapping of property names to values, used to configure Spark.
|
5116
|
-
# Properties that conflict with values set by the Dataproc API
|
5127
|
+
# Properties that conflict with values set by the Dataproc API might be
|
5117
5128
|
# overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf
|
5118
5129
|
# and classes in user code.
|
5119
5130
|
# Corresponds to the JSON property `properties`
|
@@ -5216,7 +5227,7 @@ module Google
|
|
5216
5227
|
attr_accessor :main_r_file_uri
|
5217
5228
|
|
5218
5229
|
# Optional. A mapping of property names to values, used to configure SparkR.
|
5219
|
-
# Properties that conflict with values set by the Dataproc API
|
5230
|
+
# Properties that conflict with values set by the Dataproc API might be
|
5220
5231
|
# overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf
|
5221
5232
|
# and classes in user code.
|
5222
5233
|
# Corresponds to the JSON property `properties`
|
@@ -5288,8 +5299,8 @@ module Google
|
|
5288
5299
|
attr_accessor :logging_config
|
5289
5300
|
|
5290
5301
|
# Optional. A mapping of property names to values, used to configure Spark SQL's
|
5291
|
-
# SparkConf. Properties that conflict with values set by the Dataproc API
|
5292
|
-
# overwritten.
|
5302
|
+
# SparkConf. Properties that conflict with values set by the Dataproc API might
|
5303
|
+
# be overwritten.
|
5293
5304
|
# Corresponds to the JSON property `properties`
|
5294
5305
|
# @return [Hash<String,String>]
|
5295
5306
|
attr_accessor :properties
|
@@ -5337,6 +5348,12 @@ module Google
|
|
5337
5348
|
# @return [String]
|
5338
5349
|
attr_accessor :graceful_decommission_timeout
|
5339
5350
|
|
5351
|
+
# Optional. Remove only idle workers when scaling down cluster
|
5352
|
+
# Corresponds to the JSON property `removeOnlyIdleWorkers`
|
5353
|
+
# @return [Boolean]
|
5354
|
+
attr_accessor :remove_only_idle_workers
|
5355
|
+
alias_method :remove_only_idle_workers?, :remove_only_idle_workers
|
5356
|
+
|
5340
5357
|
# Required. Fraction of required executors to remove from Spark Serverless
|
5341
5358
|
# clusters. A scale-down factor of 1.0 will result in scaling down so that there
|
5342
5359
|
# are no more executors for the Spark Job.(more aggressive scaling). A scale-
|
@@ -5380,6 +5397,7 @@ module Google
|
|
5380
5397
|
# Update properties of this object
|
5381
5398
|
def update!(**args)
|
5382
5399
|
@graceful_decommission_timeout = args[:graceful_decommission_timeout] if args.key?(:graceful_decommission_timeout)
|
5400
|
+
@remove_only_idle_workers = args[:remove_only_idle_workers] if args.key?(:remove_only_idle_workers)
|
5383
5401
|
@scale_down_factor = args[:scale_down_factor] if args.key?(:scale_down_factor)
|
5384
5402
|
@scale_down_min_worker_fraction = args[:scale_down_min_worker_fraction] if args.key?(:scale_down_min_worker_fraction)
|
5385
5403
|
@scale_up_factor = args[:scale_up_factor] if args.key?(:scale_up_factor)
|
@@ -5421,6 +5439,31 @@ module Google
|
|
5421
5439
|
end
|
5422
5440
|
end
|
5423
5441
|
|
5442
|
+
# Configuration to handle the startup of instances during cluster create and
|
5443
|
+
# update process.
|
5444
|
+
class StartupConfig
|
5445
|
+
include Google::Apis::Core::Hashable
|
5446
|
+
|
5447
|
+
# Optional. The config setting to enable cluster creation/ updation to be
|
5448
|
+
# successful only after required_registration_fraction of instances are up and
|
5449
|
+
# running. This configuration is applicable to only secondary workers for now.
|
5450
|
+
# The cluster will fail if required_registration_fraction of instances are not
|
5451
|
+
# available. This will include instance creation, agent registration, and
|
5452
|
+
# service registration (if enabled).
|
5453
|
+
# Corresponds to the JSON property `requiredRegistrationFraction`
|
5454
|
+
# @return [Float]
|
5455
|
+
attr_accessor :required_registration_fraction
|
5456
|
+
|
5457
|
+
def initialize(**args)
|
5458
|
+
update!(**args)
|
5459
|
+
end
|
5460
|
+
|
5461
|
+
# Update properties of this object
|
5462
|
+
def update!(**args)
|
5463
|
+
@required_registration_fraction = args[:required_registration_fraction] if args.key?(:required_registration_fraction)
|
5464
|
+
end
|
5465
|
+
end
|
5466
|
+
|
5424
5467
|
# Historical state information.
|
5425
5468
|
class StateHistory
|
5426
5469
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.56.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 = "
|
25
|
+
REVISION = "20230926"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -730,6 +730,12 @@ module Google
|
|
730
730
|
include Google::Apis::Core::JsonObjectSupport
|
731
731
|
end
|
732
732
|
|
733
|
+
class StartupConfig
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
733
739
|
class StateHistory
|
734
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
741
|
|
@@ -1159,7 +1165,6 @@ module Google
|
|
1159
1165
|
# @private
|
1160
1166
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1161
1167
|
property :gce_pd_kms_key_name, as: 'gcePdKmsKeyName'
|
1162
|
-
property :kms_key, as: 'kmsKey'
|
1163
1168
|
end
|
1164
1169
|
end
|
1165
1170
|
|
@@ -1403,6 +1408,8 @@ module Google
|
|
1403
1408
|
property :min_num_instances, as: 'minNumInstances'
|
1404
1409
|
property :num_instances, as: 'numInstances'
|
1405
1410
|
property :preemptibility, as: 'preemptibility'
|
1411
|
+
property :startup_config, as: 'startupConfig', class: Google::Apis::DataprocV1::StartupConfig, decorator: Google::Apis::DataprocV1::StartupConfig::Representation
|
1412
|
+
|
1406
1413
|
end
|
1407
1414
|
end
|
1408
1415
|
|
@@ -1785,6 +1792,8 @@ module Google
|
|
1785
1792
|
class OrderedJob
|
1786
1793
|
# @private
|
1787
1794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1795
|
+
property :flink_job, as: 'flinkJob', class: Google::Apis::DataprocV1::FlinkJob, decorator: Google::Apis::DataprocV1::FlinkJob::Representation
|
1796
|
+
|
1788
1797
|
property :hadoop_job, as: 'hadoopJob', class: Google::Apis::DataprocV1::HadoopJob, decorator: Google::Apis::DataprocV1::HadoopJob::Representation
|
1789
1798
|
|
1790
1799
|
property :hive_job, as: 'hiveJob', class: Google::Apis::DataprocV1::HiveJob, decorator: Google::Apis::DataprocV1::HiveJob::Representation
|
@@ -2054,6 +2063,7 @@ module Google
|
|
2054
2063
|
property :runtime_config, as: 'runtimeConfig', class: Google::Apis::DataprocV1::RuntimeConfig, decorator: Google::Apis::DataprocV1::RuntimeConfig::Representation
|
2055
2064
|
|
2056
2065
|
property :update_time, as: 'updateTime'
|
2066
|
+
property :uuid, as: 'uuid'
|
2057
2067
|
end
|
2058
2068
|
end
|
2059
2069
|
|
@@ -2167,6 +2177,7 @@ module Google
|
|
2167
2177
|
# @private
|
2168
2178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2169
2179
|
property :graceful_decommission_timeout, as: 'gracefulDecommissionTimeout'
|
2180
|
+
property :remove_only_idle_workers, as: 'removeOnlyIdleWorkers'
|
2170
2181
|
property :scale_down_factor, as: 'scaleDownFactor'
|
2171
2182
|
property :scale_down_min_worker_fraction, as: 'scaleDownMinWorkerFraction'
|
2172
2183
|
property :scale_up_factor, as: 'scaleUpFactor'
|
@@ -2182,6 +2193,13 @@ module Google
|
|
2182
2193
|
end
|
2183
2194
|
end
|
2184
2195
|
|
2196
|
+
class StartupConfig
|
2197
|
+
# @private
|
2198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2199
|
+
property :required_registration_fraction, as: 'requiredRegistrationFraction'
|
2200
|
+
end
|
2201
|
+
end
|
2202
|
+
|
2185
2203
|
class StateHistory
|
2186
2204
|
# @private
|
2187
2205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.56.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-
|
11
|
+
date: 2023-10-01 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.56.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: []
|