google-apis-dataproc_v1 0.57.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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.59.0 (2023-11-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231028
|
6
|
+
|
7
|
+
### v0.58.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231019
|
10
|
+
|
3
11
|
### v0.57.0 (2023-10-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231002
|
@@ -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
|
|
@@ -1940,6 +1947,25 @@ module Google
|
|
1940
1947
|
end
|
1941
1948
|
end
|
1942
1949
|
|
1950
|
+
# Encryption settings for the encrypting customer core content. NEXT ID: 2
|
1951
|
+
class GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
|
1952
|
+
include Google::Apis::Core::Hashable
|
1953
|
+
|
1954
|
+
# Optional. The Cloud KMS key name to use for encrypting customer core content.
|
1955
|
+
# Corresponds to the JSON property `kmsKey`
|
1956
|
+
# @return [String]
|
1957
|
+
attr_accessor :kms_key
|
1958
|
+
|
1959
|
+
def initialize(**args)
|
1960
|
+
update!(**args)
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
# Update properties of this object
|
1964
|
+
def update!(**args)
|
1965
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1966
|
+
end
|
1967
|
+
end
|
1968
|
+
|
1943
1969
|
# A Dataproc job for running Apache Hadoop MapReduce (https://hadoop.apache.org/
|
1944
1970
|
# docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/
|
1945
1971
|
# MapReduceTutorial.html) jobs on Apache Hadoop YARN (https://hadoop.apache.org/
|
@@ -3194,6 +3220,13 @@ module Google
|
|
3194
3220
|
# @return [String]
|
3195
3221
|
attr_accessor :next_page_token
|
3196
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
|
+
|
3197
3230
|
def initialize(**args)
|
3198
3231
|
update!(**args)
|
3199
3232
|
end
|
@@ -3202,6 +3235,7 @@ module Google
|
|
3202
3235
|
def update!(**args)
|
3203
3236
|
@jobs = args[:jobs] if args.key?(:jobs)
|
3204
3237
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3238
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3205
3239
|
end
|
3206
3240
|
end
|
3207
3241
|
|
@@ -3298,6 +3332,13 @@ module Google
|
|
3298
3332
|
# @return [Array<Google::Apis::DataprocV1::WorkflowTemplate>]
|
3299
3333
|
attr_accessor :templates
|
3300
3334
|
|
3335
|
+
# Output only. List of workflow templates that could not be included in the
|
3336
|
+
# response. Attempting to get one of these resources may indicate why it was not
|
3337
|
+
# included in the list response.
|
3338
|
+
# Corresponds to the JSON property `unreachable`
|
3339
|
+
# @return [Array<String>]
|
3340
|
+
attr_accessor :unreachable
|
3341
|
+
|
3301
3342
|
def initialize(**args)
|
3302
3343
|
update!(**args)
|
3303
3344
|
end
|
@@ -3306,6 +3347,7 @@ module Google
|
|
3306
3347
|
def update!(**args)
|
3307
3348
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3308
3349
|
@templates = args[:templates] if args.key?(:templates)
|
3350
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3309
3351
|
end
|
3310
3352
|
end
|
3311
3353
|
|
@@ -5803,6 +5845,17 @@ module Google
|
|
5803
5845
|
class UsageMetrics
|
5804
5846
|
include Google::Apis::Core::Hashable
|
5805
5847
|
|
5848
|
+
# Optional. Accelerator type being used, if any
|
5849
|
+
# Corresponds to the JSON property `acceleratorType`
|
5850
|
+
# @return [String]
|
5851
|
+
attr_accessor :accelerator_type
|
5852
|
+
|
5853
|
+
# Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc
|
5854
|
+
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
5855
|
+
# Corresponds to the JSON property `milliAcceleratorSeconds`
|
5856
|
+
# @return [Fixnum]
|
5857
|
+
attr_accessor :milli_accelerator_seconds
|
5858
|
+
|
5806
5859
|
# Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see
|
5807
5860
|
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
5808
5861
|
# pricing)).
|
@@ -5822,6 +5875,8 @@ module Google
|
|
5822
5875
|
|
5823
5876
|
# Update properties of this object
|
5824
5877
|
def update!(**args)
|
5878
|
+
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
5879
|
+
@milli_accelerator_seconds = args[:milli_accelerator_seconds] if args.key?(:milli_accelerator_seconds)
|
5825
5880
|
@milli_dcu_seconds = args[:milli_dcu_seconds] if args.key?(:milli_dcu_seconds)
|
5826
5881
|
@shuffle_storage_gb_seconds = args[:shuffle_storage_gb_seconds] if args.key?(:shuffle_storage_gb_seconds)
|
5827
5882
|
end
|
@@ -5832,6 +5887,17 @@ module Google
|
|
5832
5887
|
class UsageSnapshot
|
5833
5888
|
include Google::Apis::Core::Hashable
|
5834
5889
|
|
5890
|
+
# Optional. Accelerator type being used, if any
|
5891
|
+
# Corresponds to the JSON property `acceleratorType`
|
5892
|
+
# @return [String]
|
5893
|
+
attr_accessor :accelerator_type
|
5894
|
+
|
5895
|
+
# Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
|
5896
|
+
# (https://cloud.google.com/dataproc-serverless/pricing))
|
5897
|
+
# Corresponds to the JSON property `milliAccelerator`
|
5898
|
+
# @return [Fixnum]
|
5899
|
+
attr_accessor :milli_accelerator
|
5900
|
+
|
5835
5901
|
# Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc
|
5836
5902
|
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
5837
5903
|
# Corresponds to the JSON property `milliDcu`
|
@@ -5869,6 +5935,8 @@ module Google
|
|
5869
5935
|
|
5870
5936
|
# Update properties of this object
|
5871
5937
|
def update!(**args)
|
5938
|
+
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
5939
|
+
@milli_accelerator = args[:milli_accelerator] if args.key?(:milli_accelerator)
|
5872
5940
|
@milli_dcu = args[:milli_dcu] if args.key?(:milli_dcu)
|
5873
5941
|
@milli_dcu_premium = args[:milli_dcu_premium] if args.key?(:milli_dcu_premium)
|
5874
5942
|
@shuffle_storage_gb = args[:shuffle_storage_gb] if args.key?(:shuffle_storage_gb)
|
@@ -6126,6 +6194,11 @@ module Google
|
|
6126
6194
|
# @return [String]
|
6127
6195
|
attr_accessor :dag_timeout
|
6128
6196
|
|
6197
|
+
# Encryption settings for the encrypting customer core content. NEXT ID: 2
|
6198
|
+
# Corresponds to the JSON property `encryptionConfig`
|
6199
|
+
# @return [Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig]
|
6200
|
+
attr_accessor :encryption_config
|
6201
|
+
|
6129
6202
|
#
|
6130
6203
|
# Corresponds to the JSON property `id`
|
6131
6204
|
# @return [String]
|
@@ -6194,6 +6267,7 @@ module Google
|
|
6194
6267
|
def update!(**args)
|
6195
6268
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6196
6269
|
@dag_timeout = args[:dag_timeout] if args.key?(:dag_timeout)
|
6270
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
6197
6271
|
@id = args[:id] if args.key?(:id)
|
6198
6272
|
@jobs = args[:jobs] if args.key?(:jobs)
|
6199
6273
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -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
|
@@ -268,6 +268,12 @@ module Google
|
|
268
268
|
include Google::Apis::Core::JsonObjectSupport
|
269
269
|
end
|
270
270
|
|
271
|
+
class GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
271
277
|
class HadoopJob
|
272
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
279
|
|
@@ -1165,6 +1171,7 @@ module Google
|
|
1165
1171
|
# @private
|
1166
1172
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1167
1173
|
property :gce_pd_kms_key_name, as: 'gcePdKmsKeyName'
|
1174
|
+
property :kms_key, as: 'kmsKey'
|
1168
1175
|
end
|
1169
1176
|
end
|
1170
1177
|
|
@@ -1325,6 +1332,13 @@ module Google
|
|
1325
1332
|
end
|
1326
1333
|
end
|
1327
1334
|
|
1335
|
+
class GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
|
1336
|
+
# @private
|
1337
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1338
|
+
property :kms_key, as: 'kmsKey'
|
1339
|
+
end
|
1340
|
+
end
|
1341
|
+
|
1328
1342
|
class HadoopJob
|
1329
1343
|
# @private
|
1330
1344
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1638,6 +1652,7 @@ module Google
|
|
1638
1652
|
collection :jobs, as: 'jobs', class: Google::Apis::DataprocV1::Job, decorator: Google::Apis::DataprocV1::Job::Representation
|
1639
1653
|
|
1640
1654
|
property :next_page_token, as: 'nextPageToken'
|
1655
|
+
collection :unreachable, as: 'unreachable'
|
1641
1656
|
end
|
1642
1657
|
end
|
1643
1658
|
|
@@ -1674,6 +1689,7 @@ module Google
|
|
1674
1689
|
property :next_page_token, as: 'nextPageToken'
|
1675
1690
|
collection :templates, as: 'templates', class: Google::Apis::DataprocV1::WorkflowTemplate, decorator: Google::Apis::DataprocV1::WorkflowTemplate::Representation
|
1676
1691
|
|
1692
|
+
collection :unreachable, as: 'unreachable'
|
1677
1693
|
end
|
1678
1694
|
end
|
1679
1695
|
|
@@ -2286,6 +2302,8 @@ module Google
|
|
2286
2302
|
class UsageMetrics
|
2287
2303
|
# @private
|
2288
2304
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2305
|
+
property :accelerator_type, as: 'acceleratorType'
|
2306
|
+
property :milli_accelerator_seconds, :numeric_string => true, as: 'milliAcceleratorSeconds'
|
2289
2307
|
property :milli_dcu_seconds, :numeric_string => true, as: 'milliDcuSeconds'
|
2290
2308
|
property :shuffle_storage_gb_seconds, :numeric_string => true, as: 'shuffleStorageGbSeconds'
|
2291
2309
|
end
|
@@ -2294,6 +2312,8 @@ module Google
|
|
2294
2312
|
class UsageSnapshot
|
2295
2313
|
# @private
|
2296
2314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2315
|
+
property :accelerator_type, as: 'acceleratorType'
|
2316
|
+
property :milli_accelerator, :numeric_string => true, as: 'milliAccelerator'
|
2297
2317
|
property :milli_dcu, :numeric_string => true, as: 'milliDcu'
|
2298
2318
|
property :milli_dcu_premium, :numeric_string => true, as: 'milliDcuPremium'
|
2299
2319
|
property :shuffle_storage_gb, :numeric_string => true, as: 'shuffleStorageGb'
|
@@ -2367,6 +2387,8 @@ module Google
|
|
2367
2387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2368
2388
|
property :create_time, as: 'createTime'
|
2369
2389
|
property :dag_timeout, as: 'dagTimeout'
|
2390
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig, decorator: Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig::Representation
|
2391
|
+
|
2370
2392
|
property :id, as: 'id'
|
2371
2393
|
collection :jobs, as: 'jobs', class: Google::Apis::DataprocV1::OrderedJob, decorator: Google::Apis::DataprocV1::OrderedJob::Representation
|
2372
2394
|
|
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: []
|