google-apis-dataproc_v1 0.31.0 → 0.34.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: 707a6795afff3f834dbe8fa7b1e5c3c158889eb37c942b533ec9c81439cf6ce1
|
4
|
+
data.tar.gz: 05c1c9d155e54cfdf3c51e2d3538592e0416bc33d4ed084c91897673e015f467
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bbe610d13a5474c474cf8fe7af858efc3153c61ffd880aaa3d4653317ec372330ec80a8a89869e434c19efd0cce895e4dbf1c6da45342e4c82f794c172e5f74
|
7
|
+
data.tar.gz: 706177a26f777f6acbd7241cabc667d4ad63331c35a9b80628729e4e4ce248c04b81f7035ecd334a2a7fb52100840c0c97e68ee97254f5967b9f1390617efdc7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2022-08-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220814
|
6
|
+
|
7
|
+
### v0.33.0 (2022-08-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220804
|
10
|
+
|
11
|
+
### v0.32.0 (2022-07-28)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220726
|
14
|
+
|
3
15
|
### v0.31.0 (2022-07-19)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220718
|
@@ -486,15 +486,19 @@ module Google
|
|
486
486
|
# authenticated with a Google account or a service account. user:`emailid`: An
|
487
487
|
# email address that represents a specific Google account. For example, alice@
|
488
488
|
# example.com . serviceAccount:`emailid`: An email address that represents a
|
489
|
-
# service account. For example, my-other-app@appspot.gserviceaccount.com.
|
490
|
-
#
|
491
|
-
#
|
492
|
-
#
|
493
|
-
#
|
494
|
-
#
|
495
|
-
#
|
496
|
-
#
|
497
|
-
#
|
489
|
+
# Google service account. For example, my-other-app@appspot.gserviceaccount.com.
|
490
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]: An
|
491
|
+
# identifier for a Kubernetes service account (https://cloud.google.com/
|
492
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, my-
|
493
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]. group:`emailid`: An email
|
494
|
+
# address that represents a Google group. For example, admins@example.com.
|
495
|
+
# deleted:user:`emailid`?uid=`uniqueid`: An email address (plus unique
|
496
|
+
# identifier) representing a user that has been recently deleted. For example,
|
497
|
+
# alice@example.com?uid=123456789012345678901. If the user is recovered, this
|
498
|
+
# value reverts to user:`emailid` and the recovered user retains the role in the
|
499
|
+
# binding. deleted:serviceAccount:`emailid`?uid=`uniqueid`: An email address (
|
500
|
+
# plus unique identifier) representing a service account that has been recently
|
501
|
+
# deleted. For example, my-other-app@appspot.gserviceaccount.com?uid=
|
498
502
|
# 123456789012345678901. If the service account is undeleted, this value reverts
|
499
503
|
# to serviceAccount:`emailid` and the undeleted service account retains the role
|
500
504
|
# in the binding. deleted:group:`emailid`?uid=`uniqueid`: An email address (plus
|
@@ -1199,6 +1203,14 @@ module Google
|
|
1199
1203
|
class ExecutionConfig
|
1200
1204
|
include Google::Apis::Core::Hashable
|
1201
1205
|
|
1206
|
+
# Optional. The duration to keep the underlying cluster alive while idling
|
1207
|
+
# Passing this threshold will cause the cluster to be terminated. Minimum value
|
1208
|
+
# is 30 minutes; maximum value is 14 days (see JSON representation of Duration (
|
1209
|
+
# https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
1210
|
+
# Corresponds to the JSON property `idleTtl`
|
1211
|
+
# @return [String]
|
1212
|
+
attr_accessor :idle_ttl
|
1213
|
+
|
1202
1214
|
# Optional. The Cloud KMS key to use for encryption.
|
1203
1215
|
# Corresponds to the JSON property `kmsKey`
|
1204
1216
|
# @return [String]
|
@@ -1230,6 +1242,7 @@ module Google
|
|
1230
1242
|
|
1231
1243
|
# Update properties of this object
|
1232
1244
|
def update!(**args)
|
1245
|
+
@idle_ttl = args[:idle_ttl] if args.key?(:idle_ttl)
|
1233
1246
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1234
1247
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
1235
1248
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
@@ -3732,6 +3745,17 @@ module Google
|
|
3732
3745
|
# @return [String]
|
3733
3746
|
attr_accessor :cluster_uuid
|
3734
3747
|
|
3748
|
+
# Optional. Timeout for graceful YARN decomissioning. Graceful decommissioning
|
3749
|
+
# facilitates the removal of cluster nodes without interrupting jobs in progress.
|
3750
|
+
# The timeout specifies the amount of time to wait for jobs finish before
|
3751
|
+
# forcefully removing nodes. The default timeout is 0 for forceful
|
3752
|
+
# decommissioning, and the maximum timeout period is 1 day. (see JSON Mapping—
|
3753
|
+
# Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
3754
|
+
# graceful_decommission_timeout is supported in Dataproc image versions 1.2+.
|
3755
|
+
# Corresponds to the JSON property `gracefulDecommissionTimeout`
|
3756
|
+
# @return [String]
|
3757
|
+
attr_accessor :graceful_decommission_timeout
|
3758
|
+
|
3735
3759
|
# Optional. Node pools and corresponding repair action to be taken. All node
|
3736
3760
|
# pools should be unique in this request. i.e. Multiple entries for the same
|
3737
3761
|
# node pool id are not allowed.
|
@@ -3739,6 +3763,11 @@ module Google
|
|
3739
3763
|
# @return [Array<Google::Apis::DataprocV1::NodePool>]
|
3740
3764
|
attr_accessor :node_pools
|
3741
3765
|
|
3766
|
+
# Optional. operation id of the parent operation sending the repair request
|
3767
|
+
# Corresponds to the JSON property `parentOperationId`
|
3768
|
+
# @return [String]
|
3769
|
+
attr_accessor :parent_operation_id
|
3770
|
+
|
3742
3771
|
# Optional. A unique ID used to identify the request. If the server receives two
|
3743
3772
|
# RepairClusterRequests with the same ID, the second request is ignored, and the
|
3744
3773
|
# first google.longrunning.Operation created and stored in the backend is
|
@@ -3757,7 +3786,9 @@ module Google
|
|
3757
3786
|
# Update properties of this object
|
3758
3787
|
def update!(**args)
|
3759
3788
|
@cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
|
3789
|
+
@graceful_decommission_timeout = args[:graceful_decommission_timeout] if args.key?(:graceful_decommission_timeout)
|
3760
3790
|
@node_pools = args[:node_pools] if args.key?(:node_pools)
|
3791
|
+
@parent_operation_id = args[:parent_operation_id] if args.key?(:parent_operation_id)
|
3761
3792
|
@request_id = args[:request_id] if args.key?(:request_id)
|
3762
3793
|
end
|
3763
3794
|
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.34.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 = "
|
25
|
+
REVISION = "20220814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1025,6 +1025,7 @@ module Google
|
|
1025
1025
|
class ExecutionConfig
|
1026
1026
|
# @private
|
1027
1027
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1028
|
+
property :idle_ttl, as: 'idleTtl'
|
1028
1029
|
property :kms_key, as: 'kmsKey'
|
1029
1030
|
collection :network_tags, as: 'networkTags'
|
1030
1031
|
property :network_uri, as: 'networkUri'
|
@@ -1640,8 +1641,10 @@ module Google
|
|
1640
1641
|
# @private
|
1641
1642
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1642
1643
|
property :cluster_uuid, as: 'clusterUuid'
|
1644
|
+
property :graceful_decommission_timeout, as: 'gracefulDecommissionTimeout'
|
1643
1645
|
collection :node_pools, as: 'nodePools', class: Google::Apis::DataprocV1::NodePool, decorator: Google::Apis::DataprocV1::NodePool::Representation
|
1644
1646
|
|
1647
|
+
property :parent_operation_id, as: 'parentOperationId'
|
1645
1648
|
property :request_id, as: 'requestId'
|
1646
1649
|
end
|
1647
1650
|
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.
|
4
|
+
version: 0.34.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-
|
11
|
+
date: 2022-08-22 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.34.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: []
|