google-apis-dataproc_v1 0.56.0 → 0.57.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4e7f5662c86c21dd3b652cf4e7199695b927ee5b60767c7835978be30670a6d
|
4
|
+
data.tar.gz: c7639ac588c06916f7c93be2ea8983a03dc90711e60980f42dad25d417e07e63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7eeeb2ccc1209818304f2061c813df96838178a7791fef7450a7e5a28c5e70c38d24104ff3a84a8d510c0c341a4bc0f1d99231c53e70c34cd42a171c600df6fa
|
7
|
+
data.tar.gz: 5aa22d47b29d03ae97ecf97fb4059a04af128bd82d3926f3d690276700ec780210e7cbe957ef67cb1f279b2795388ba034fa69c702495bf1ca0ffd55606f7f52
|
data/CHANGELOG.md
CHANGED
@@ -4450,6 +4450,11 @@ module Google
|
|
4450
4450
|
# @return [String]
|
4451
4451
|
attr_accessor :graceful_decommission_timeout
|
4452
4452
|
|
4453
|
+
# Optional. operation id of the parent operation sending the resize request
|
4454
|
+
# Corresponds to the JSON property `parentOperationId`
|
4455
|
+
# @return [String]
|
4456
|
+
attr_accessor :parent_operation_id
|
4457
|
+
|
4453
4458
|
# Optional. A unique ID used to identify the request. If the server receives two
|
4454
4459
|
# ResizeNodeGroupRequest (https://cloud.google.com/dataproc/docs/reference/rpc/
|
4455
4460
|
# google.cloud.dataproc.v1#google.cloud.dataproc.v1.ResizeNodeGroupRequests)
|
@@ -4477,6 +4482,7 @@ module Google
|
|
4477
4482
|
# Update properties of this object
|
4478
4483
|
def update!(**args)
|
4479
4484
|
@graceful_decommission_timeout = args[:graceful_decommission_timeout] if args.key?(:graceful_decommission_timeout)
|
4485
|
+
@parent_operation_id = args[:parent_operation_id] if args.key?(:parent_operation_id)
|
4480
4486
|
@request_id = args[:request_id] if args.key?(:request_id)
|
4481
4487
|
@size = args[:size] if args.key?(:size)
|
4482
4488
|
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.
|
19
|
+
GEM_VERSION = "0.57.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 = "20231002"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1960,6 +1960,7 @@ module Google
|
|
1960
1960
|
# @private
|
1961
1961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1962
1962
|
property :graceful_decommission_timeout, as: 'gracefulDecommissionTimeout'
|
1963
|
+
property :parent_operation_id, as: 'parentOperationId'
|
1963
1964
|
property :request_id, as: 'requestId'
|
1964
1965
|
property :size, as: 'size'
|
1965
1966
|
end
|
@@ -2370,6 +2370,8 @@ module Google
|
|
2370
2370
|
# contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-
|
2371
2371
|
# ). Cannot begin or end with underscore or hyphen. Must consist of from 3 to 33
|
2372
2372
|
# characters.
|
2373
|
+
# @param [String] parent_operation_id
|
2374
|
+
# Optional. operation id of the parent operation sending the create request
|
2373
2375
|
# @param [String] request_id
|
2374
2376
|
# Optional. A unique ID used to identify the request. If the server receives two
|
2375
2377
|
# CreateNodeGroupRequest (https://cloud.google.com/dataproc/docs/reference/rpc/
|
@@ -2397,7 +2399,7 @@ module Google
|
|
2397
2399
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2398
2400
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2399
2401
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2400
|
-
def create_project_region_cluster_node_group(parent, node_group_object = nil, node_group_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2402
|
+
def create_project_region_cluster_node_group(parent, node_group_object = nil, node_group_id: nil, parent_operation_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2401
2403
|
command = make_simple_command(:post, 'v1/{+parent}/nodeGroups', options)
|
2402
2404
|
command.request_representation = Google::Apis::DataprocV1::NodeGroup::Representation
|
2403
2405
|
command.request_object = node_group_object
|
@@ -2405,6 +2407,7 @@ module Google
|
|
2405
2407
|
command.response_class = Google::Apis::DataprocV1::Operation
|
2406
2408
|
command.params['parent'] = parent unless parent.nil?
|
2407
2409
|
command.query['nodeGroupId'] = node_group_id unless node_group_id.nil?
|
2410
|
+
command.query['parentOperationId'] = parent_operation_id unless parent_operation_id.nil?
|
2408
2411
|
command.query['requestId'] = request_id unless request_id.nil?
|
2409
2412
|
command.query['fields'] = fields unless fields.nil?
|
2410
2413
|
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.
|
4
|
+
version: 0.57.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-10-
|
11
|
+
date: 2023-10-08 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.57.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: []
|