google-apis-dataproc_v1 0.45.0 → 0.47.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: 3dffcff4d1bf5fa008e2ceb62082bbf2b81ba79e7742e3bb85c13f4bd2638d6b
4
- data.tar.gz: 8d5e73ea6e402e23bd2b538e74c3b33f8e76864b0805f3dd83ed895f6543bdc1
3
+ metadata.gz: 8f52435a0d9ebcea09dcb77f566859cd19c0f87269482a82f61b09625568c699
4
+ data.tar.gz: 132fc3f30ea917f4e56ac659f9f1f15c65768ee6a7ee079d0b8f3c38ae03fa00
5
5
  SHA512:
6
- metadata.gz: 7bd4fbf553de4b02b98b4e61522198fdfd8946c259ac707d1c0ea4c97cf480e11b1bf14cc8419a2fd35a1439f995a1d3305925e0d7ada41f349c02321d73a3f1
7
- data.tar.gz: d3d474a77a4ff2278438be1e1a25f3e8176f3556e195c22bc6d97dba0edee459658da6fb49c798238d46274896e625a863a0630a10f254131d87581883c8e425
6
+ metadata.gz: 23f01ab9aa4c5b8633c188606d33c8e9e6d63b3bdb9a9476afd23416d05aae6f1e31f76c003cce34c16fb72657918f0615364a52c0a9ab1a13464c81aad39977
7
+ data.tar.gz: eab59921a49e7e10636a4b7461e4b28602900134c6e14c4e3e960175628be40790f78b67075d4e73cb1e9f11be24f87b82243837ef2cae3f3a764eef4123e646
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.47.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230309
6
+
7
+ ### v0.46.0 (2023-02-26)
8
+
9
+ * Regenerated from discovery document revision 20230220
10
+
3
11
  ### v0.45.0 (2023-02-15)
4
12
 
5
13
  * Regenerated using generator version 0.12.0
@@ -1083,12 +1083,24 @@ module Google
1083
1083
  # @return [String]
1084
1084
  attr_accessor :job
1085
1085
 
1086
+ # Optional. Specifies a list of jobs on which diagnosis is to be performed.
1087
+ # Format: projects/`project`/regions/`region`/jobs/`job`
1088
+ # Corresponds to the JSON property `jobs`
1089
+ # @return [Array<String>]
1090
+ attr_accessor :jobs
1091
+
1086
1092
  # Optional. DEPRECATED Specifies the yarn application on which diagnosis is to
1087
1093
  # be performed.
1088
1094
  # Corresponds to the JSON property `yarnApplicationId`
1089
1095
  # @return [String]
1090
1096
  attr_accessor :yarn_application_id
1091
1097
 
1098
+ # Optional. Specifies a list of yarn applications on which diagnosis is to be
1099
+ # performed.
1100
+ # Corresponds to the JSON property `yarnApplicationIds`
1101
+ # @return [Array<String>]
1102
+ attr_accessor :yarn_application_ids
1103
+
1092
1104
  def initialize(**args)
1093
1105
  update!(**args)
1094
1106
  end
@@ -1097,7 +1109,9 @@ module Google
1097
1109
  def update!(**args)
1098
1110
  @diagnosis_interval = args[:diagnosis_interval] if args.key?(:diagnosis_interval)
1099
1111
  @job = args[:job] if args.key?(:job)
1112
+ @jobs = args[:jobs] if args.key?(:jobs)
1100
1113
  @yarn_application_id = args[:yarn_application_id] if args.key?(:yarn_application_id)
1114
+ @yarn_application_ids = args[:yarn_application_ids] if args.key?(:yarn_application_ids)
1101
1115
  end
1102
1116
  end
1103
1117
 
@@ -1220,6 +1234,12 @@ module Google
1220
1234
  # @return [String]
1221
1235
  attr_accessor :gce_pd_kms_key_name
1222
1236
 
1237
+ # Optional. The Cloud KMS key name to use for encrypting customer core content
1238
+ # and cluster PD disk for all instances in the cluster.
1239
+ # Corresponds to the JSON property `kmsKey`
1240
+ # @return [String]
1241
+ attr_accessor :kms_key
1242
+
1223
1243
  def initialize(**args)
1224
1244
  update!(**args)
1225
1245
  end
@@ -1227,6 +1247,7 @@ module Google
1227
1247
  # Update properties of this object
1228
1248
  def update!(**args)
1229
1249
  @gce_pd_kms_key_name = args[:gce_pd_kms_key_name] if args.key?(:gce_pd_kms_key_name)
1250
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
1230
1251
  end
1231
1252
  end
1232
1253
 
@@ -1287,13 +1308,14 @@ module Google
1287
1308
  class ExecutionConfig
1288
1309
  include Google::Apis::Core::Hashable
1289
1310
 
1290
- # Optional. The duration to keep the session alive while it's idling. Passing
1291
- # this threshold will cause the session to be terminated. Minimum value is 10
1292
- # minutes; maximum value is 14 days (see JSON representation of Duration (https:/
1293
- # /developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4
1294
- # hours if not set. If both ttl and idle_ttl are specified, the conditions are
1295
- # treated as and OR: the workload will be terminated when it has been idle for
1296
- # idle_ttl or when the ttl has passed, whichever comes first.
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, the conditions are treated as OR conditions: the
1317
+ # workload will be terminated when it has been idle for idle_ttl or when ttl has
1318
+ # been exceed, whichever occurs first.
1297
1319
  # Corresponds to the JSON property `idleTtl`
1298
1320
  # @return [String]
1299
1321
  attr_accessor :idle_ttl
@@ -1335,13 +1357,16 @@ module Google
1335
1357
  attr_accessor :subnetwork_uri
1336
1358
 
1337
1359
  # Optional. The duration after which the workload will be terminated. When the
1338
- # workload passes this ttl, it will be unconditionally killed without waiting
1339
- # for ongoing work to finish. Minimum value is 10 minutes; maximum value is 14
1360
+ # workload exceeds this duration, it will be unconditionally terminated without
1361
+ # waiting for ongoing work to finish. If ttl is not specified for a batch
1362
+ # workload, the workload will be allowed to run until it exits naturally (or
1363
+ # runs forever without exiting). If ttl is not specified for an interactive
1364
+ # session, it defaults to 24h. Minimum value is 10 minutes; maximum value is 14
1340
1365
  # days (see JSON representation of Duration (https://developers.google.com/
1341
- # protocol-buffers/docs/proto3#json)). If both ttl and idle_ttl are specified,
1342
- # the conditions are treated as and OR: the workload will be terminated when it
1343
- # has been idle for idle_ttl or when the ttl has passed, whichever comes first.
1344
- # If ttl is not specified for a session, it defaults to 24h.
1366
+ # protocol-buffers/docs/proto3#json)). If both ttl and idle_ttl are specified (
1367
+ # for an interactive session), the conditions are treated as OR conditions: the
1368
+ # workload will be terminated when it has been idle for idle_ttl or when ttl has
1369
+ # been exceeded, whichever occurs first.
1345
1370
  # Corresponds to the JSON property `ttl`
1346
1371
  # @return [String]
1347
1372
  attr_accessor :ttl
@@ -1452,8 +1477,8 @@ module Google
1452
1477
  # it exists. Cannot be a "Custom Subnet Network" (see Using Subnetworks (https://
1453
1478
  # cloud.google.com/compute/docs/subnetworks) for more information).A full URL,
1454
1479
  # partial URI, or short name are valid. Examples: https://www.googleapis.com/
1455
- # compute/v1/projects/[project_id]/regions/[region]/default projects/[project_id]
1456
- # /regions/[region]/default default
1480
+ # compute/v1/projects/[project_id]/global/networks/default projects/[project_id]/
1481
+ # global/networks/default default
1457
1482
  # Corresponds to the JSON property `networkUri`
1458
1483
  # @return [String]
1459
1484
  attr_accessor :network_uri
@@ -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.45.0"
19
+ GEM_VERSION = "0.47.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 = "20230202"
25
+ REVISION = "20230309"
26
26
  end
27
27
  end
28
28
  end
@@ -1039,7 +1039,9 @@ module Google
1039
1039
  property :diagnosis_interval, as: 'diagnosisInterval', class: Google::Apis::DataprocV1::Interval, decorator: Google::Apis::DataprocV1::Interval::Representation
1040
1040
 
1041
1041
  property :job, as: 'job'
1042
+ collection :jobs, as: 'jobs'
1042
1043
  property :yarn_application_id, as: 'yarnApplicationId'
1044
+ collection :yarn_application_ids, as: 'yarnApplicationIds'
1043
1045
  end
1044
1046
  end
1045
1047
 
@@ -1078,6 +1080,7 @@ module Google
1078
1080
  # @private
1079
1081
  class Representation < Google::Apis::Core::JsonRepresentation
1080
1082
  property :gce_pd_kms_key_name, as: 'gcePdKmsKeyName'
1083
+ property :kms_key, as: 'kmsKey'
1081
1084
  end
1082
1085
  end
1083
1086
 
@@ -625,13 +625,7 @@ module Google
625
625
  end
626
626
 
627
627
  # Lists operations that match the specified filter in the request. If the server
628
- # doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name binding
629
- # allows API services to override the binding to use different resource name
630
- # schemes, such as users/*/operations. To override the binding, API services can
631
- # add a binding such as "/v1/`name=users/*`/operations" to their service
632
- # configuration. For backwards compatibility, the default name includes the
633
- # operations collection id, however overriding users must ensure the name
634
- # binding is the parent resource, without the operations collection id.
628
+ # doesn't support this method, it returns UNIMPLEMENTED.
635
629
  # @param [String] name
636
630
  # The name of the operation's parent resource.
637
631
  # @param [String] filter
@@ -2645,13 +2639,7 @@ module Google
2645
2639
  end
2646
2640
 
2647
2641
  # Lists operations that match the specified filter in the request. If the server
2648
- # doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name binding
2649
- # allows API services to override the binding to use different resource name
2650
- # schemes, such as users/*/operations. To override the binding, API services can
2651
- # add a binding such as "/v1/`name=users/*`/operations" to their service
2652
- # configuration. For backwards compatibility, the default name includes the
2653
- # operations collection id, however overriding users must ensure the name
2654
- # binding is the parent resource, without the operations collection id.
2642
+ # doesn't support this method, it returns UNIMPLEMENTED.
2655
2643
  # @param [String] name
2656
2644
  # The name of the operation's parent resource.
2657
2645
  # @param [String] filter
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.45.0
4
+ version: 0.47.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-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-26 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.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.47.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: []