google-apis-dataproc_v1 0.46.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: 3ffb8577513d9c26d4f052c06db7bbd8a9e5e765c9c826ed7284afac3c6145c9
4
- data.tar.gz: 97ff923e1b8e248fc97ae1cdf8ff03e9985d5d16789559cbd2ea2421b905ab03
3
+ metadata.gz: 8f52435a0d9ebcea09dcb77f566859cd19c0f87269482a82f61b09625568c699
4
+ data.tar.gz: 132fc3f30ea917f4e56ac659f9f1f15c65768ee6a7ee079d0b8f3c38ae03fa00
5
5
  SHA512:
6
- metadata.gz: 5afb1715552e656e900087e5c04944d9a952446e4456e1b284001f01d9d0f5d9ebf4e8c977c15417b69847df0a3b99eccefaed2be3121e1951bce9edd8142769
7
- data.tar.gz: 3bf4dd395bd50746f9ea84d273ba91e0ba41725fd24c73a428b38f7963908a8d5933ec8fdbb0b9b681c403f8da5894666085c46026f7509fdff422f8d774d4fb
6
+ metadata.gz: 23f01ab9aa4c5b8633c188606d33c8e9e6d63b3bdb9a9476afd23416d05aae6f1e31f76c003cce34c16fb72657918f0615364a52c0a9ab1a13464c81aad39977
7
+ data.tar.gz: eab59921a49e7e10636a4b7461e4b28602900134c6e14c4e3e960175628be40790f78b67075d4e73cb1e9f11be24f87b82243837ef2cae3f3a764eef4123e646
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.46.0 (2023-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230220
@@ -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
 
@@ -1294,13 +1308,14 @@ module Google
1294
1308
  class ExecutionConfig
1295
1309
  include Google::Apis::Core::Hashable
1296
1310
 
1297
- # Optional. The duration to keep the session alive while it's idling. Passing
1298
- # this threshold will cause the session to be terminated. Minimum value is 10
1299
- # minutes; maximum value is 14 days (see JSON representation of Duration (https:/
1300
- # /developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4
1301
- # hours if not set. If both ttl and idle_ttl are specified, the conditions are
1302
- # treated as and OR: the workload will be terminated when it has been idle for
1303
- # 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.
1304
1319
  # Corresponds to the JSON property `idleTtl`
1305
1320
  # @return [String]
1306
1321
  attr_accessor :idle_ttl
@@ -1342,13 +1357,16 @@ module Google
1342
1357
  attr_accessor :subnetwork_uri
1343
1358
 
1344
1359
  # Optional. The duration after which the workload will be terminated. When the
1345
- # workload passes this ttl, it will be unconditionally killed without waiting
1346
- # 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
1347
1365
  # days (see JSON representation of Duration (https://developers.google.com/
1348
- # protocol-buffers/docs/proto3#json)). If both ttl and idle_ttl are specified,
1349
- # the conditions are treated as and OR: the workload will be terminated when it
1350
- # has been idle for idle_ttl or when the ttl has passed, whichever comes first.
1351
- # 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.
1352
1370
  # Corresponds to the JSON property `ttl`
1353
1371
  # @return [String]
1354
1372
  attr_accessor :ttl
@@ -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.46.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 = "20230220"
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
 
@@ -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.46.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-26 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.46.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: []