google-apis-dataproc_v1 0.58.0 → 0.59.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '029ad839badae48003bfe850a6a4363104a8e1073b7b0dab3a288aface362edd'
|
4
|
+
data.tar.gz: e3af8d6986d4d2f1c3f5dd91c5a5fc733a45252234f46460215c79b222d268b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a27d504e1593e7a739f9db975e20c58c1260ab5606126c5d5374246d2c96f7a7f7478f67b8af378987f6d1550c9a2cf06b9a57ad82b22da1770cc9b73328f6e
|
7
|
+
data.tar.gz: adbd6315224db94b9feb66b0ab0fb5dd6c9054cd127a661d67bc8281a4367246e1cd48786ec0b6957f3dc914da69fdcceabcfde9478f48dc1e03d572f59334a1
|
data/CHANGELOG.md
CHANGED
@@ -1242,6 +1242,12 @@ module Google
|
|
1242
1242
|
# @return [String]
|
1243
1243
|
attr_accessor :gce_pd_kms_key_name
|
1244
1244
|
|
1245
|
+
# Optional. The Cloud KMS key name to use for encrypting customer core content
|
1246
|
+
# in spanner and cluster PD disk for all instances in the cluster.
|
1247
|
+
# Corresponds to the JSON property `kmsKey`
|
1248
|
+
# @return [String]
|
1249
|
+
attr_accessor :kms_key
|
1250
|
+
|
1245
1251
|
def initialize(**args)
|
1246
1252
|
update!(**args)
|
1247
1253
|
end
|
@@ -1249,6 +1255,7 @@ module Google
|
|
1249
1255
|
# Update properties of this object
|
1250
1256
|
def update!(**args)
|
1251
1257
|
@gce_pd_kms_key_name = args[:gce_pd_kms_key_name] if args.key?(:gce_pd_kms_key_name)
|
1258
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1252
1259
|
end
|
1253
1260
|
end
|
1254
1261
|
|
@@ -3213,6 +3220,13 @@ module Google
|
|
3213
3220
|
# @return [String]
|
3214
3221
|
attr_accessor :next_page_token
|
3215
3222
|
|
3223
|
+
# Output only. List of jobs that could not be included in the response.
|
3224
|
+
# Attempting to get one of these resources may indicate why it was not included
|
3225
|
+
# in the list response.
|
3226
|
+
# Corresponds to the JSON property `unreachable`
|
3227
|
+
# @return [Array<String>]
|
3228
|
+
attr_accessor :unreachable
|
3229
|
+
|
3216
3230
|
def initialize(**args)
|
3217
3231
|
update!(**args)
|
3218
3232
|
end
|
@@ -3221,6 +3235,7 @@ module Google
|
|
3221
3235
|
def update!(**args)
|
3222
3236
|
@jobs = args[:jobs] if args.key?(:jobs)
|
3223
3237
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3238
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3224
3239
|
end
|
3225
3240
|
end
|
3226
3241
|
|
@@ -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.59.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 = "20231028"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1171,6 +1171,7 @@ module Google
|
|
1171
1171
|
# @private
|
1172
1172
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1173
1173
|
property :gce_pd_kms_key_name, as: 'gcePdKmsKeyName'
|
1174
|
+
property :kms_key, as: 'kmsKey'
|
1174
1175
|
end
|
1175
1176
|
end
|
1176
1177
|
|
@@ -1651,6 +1652,7 @@ module Google
|
|
1651
1652
|
collection :jobs, as: 'jobs', class: Google::Apis::DataprocV1::Job, decorator: Google::Apis::DataprocV1::Job::Representation
|
1652
1653
|
|
1653
1654
|
property :next_page_token, as: 'nextPageToken'
|
1655
|
+
collection :unreachable, as: 'unreachable'
|
1654
1656
|
end
|
1655
1657
|
end
|
1656
1658
|
|
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.59.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-
|
11
|
+
date: 2023-11-05 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.59.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: []
|