google-apis-dataproc_v1 0.31.0 → 0.32.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: 721c0aaec96a594937ac26e58982bdc497a8419e39bf2403ce3930b56d34305c
4
- data.tar.gz: 624b1beeecf28480a28d4f4466aa93f767611f0102be151303d592babb3be456
3
+ metadata.gz: 26cfaf7f76862641b4dd238ad4b1092d951cdb86516678c6116ef8f26719d66f
4
+ data.tar.gz: bb577de7657ec8a8fe5000f51c2d4ff1ad16a8ee901d83a03761a3320b5d14a5
5
5
  SHA512:
6
- metadata.gz: 55495edeb43104ebbacec93976c3f5897070651e7de672ad2f48e1fb207825ef0d78e5ae517553a5909c51b0027bb9876d3cdc6bfe706c7869b3223300ea023a
7
- data.tar.gz: 3de8f86a06044c32078d0d9f7423891ae8695e93d04ac47817617e5d9925e85a0f2eed1b2314b75ae5057cc8b8a746e3bd9d42dc4cf8e40416485fbe5831a35a
6
+ metadata.gz: 8cc65a859545c8254f070727d44f85d90b5c147c02b735014a505e4b138b3881c5c233bd63918093d0a8c84d8cc1acda1f46967a51d5d456232f5515cebfcb90
7
+ data.tar.gz: f5ea16a1052edefc6a2c9cf3c4b6ab6eb0f0587fc91142bc4e7a4f8600a4468eb05700b3d4fb4685e49203b8be320763a3eded6b85f19b7db40827b97273dbc6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.32.0 (2022-07-28)
4
+
5
+ * Regenerated from discovery document revision 20220726
6
+
3
7
  ### v0.31.0 (2022-07-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20220718
@@ -3732,6 +3732,17 @@ module Google
3732
3732
  # @return [String]
3733
3733
  attr_accessor :cluster_uuid
3734
3734
 
3735
+ # Optional. Timeout for graceful YARN decomissioning. Graceful decommissioning
3736
+ # facilitates the removal of cluster nodes without interrupting jobs in progress.
3737
+ # The timeout specifies the amount of time to wait for jobs finish before
3738
+ # forcefully removing nodes. The default timeout is 0 for forceful
3739
+ # decommissioning, and the maximum timeout period is 1 day. (see JSON Mapping—
3740
+ # Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
3741
+ # graceful_decommission_timeout is supported in Dataproc image versions 1.2+.
3742
+ # Corresponds to the JSON property `gracefulDecommissionTimeout`
3743
+ # @return [String]
3744
+ attr_accessor :graceful_decommission_timeout
3745
+
3735
3746
  # Optional. Node pools and corresponding repair action to be taken. All node
3736
3747
  # pools should be unique in this request. i.e. Multiple entries for the same
3737
3748
  # node pool id are not allowed.
@@ -3739,6 +3750,11 @@ module Google
3739
3750
  # @return [Array<Google::Apis::DataprocV1::NodePool>]
3740
3751
  attr_accessor :node_pools
3741
3752
 
3753
+ # Optional. operation id of the parent operation sending the repair request
3754
+ # Corresponds to the JSON property `parentOperationId`
3755
+ # @return [String]
3756
+ attr_accessor :parent_operation_id
3757
+
3742
3758
  # Optional. A unique ID used to identify the request. If the server receives two
3743
3759
  # RepairClusterRequests with the same ID, the second request is ignored, and the
3744
3760
  # first google.longrunning.Operation created and stored in the backend is
@@ -3757,7 +3773,9 @@ module Google
3757
3773
  # Update properties of this object
3758
3774
  def update!(**args)
3759
3775
  @cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
3776
+ @graceful_decommission_timeout = args[:graceful_decommission_timeout] if args.key?(:graceful_decommission_timeout)
3760
3777
  @node_pools = args[:node_pools] if args.key?(:node_pools)
3778
+ @parent_operation_id = args[:parent_operation_id] if args.key?(:parent_operation_id)
3761
3779
  @request_id = args[:request_id] if args.key?(:request_id)
3762
3780
  end
3763
3781
  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.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220718"
25
+ REVISION = "20220726"
26
26
  end
27
27
  end
28
28
  end
@@ -1640,8 +1640,10 @@ module Google
1640
1640
  # @private
1641
1641
  class Representation < Google::Apis::Core::JsonRepresentation
1642
1642
  property :cluster_uuid, as: 'clusterUuid'
1643
+ property :graceful_decommission_timeout, as: 'gracefulDecommissionTimeout'
1643
1644
  collection :node_pools, as: 'nodePools', class: Google::Apis::DataprocV1::NodePool, decorator: Google::Apis::DataprocV1::NodePool::Representation
1644
1645
 
1646
+ property :parent_operation_id, as: 'parentOperationId'
1645
1647
  property :request_id, as: 'requestId'
1646
1648
  end
1647
1649
  end
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.31.0
4
+ version: 0.32.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: 2022-07-25 00:00:00.000000000 Z
11
+ date: 2022-08-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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.32.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: []