google-apis-dataproc_v1 0.57.0 → 0.58.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: 92983eff91ad1c0499abe73d3ec3061db236d420823f624c2d0b0e33cdd59605
|
4
|
+
data.tar.gz: 253b02e05ae313b90e7dd0285433b5c390e55a92a3664c12c26ffceb99988d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4abdff2993701269ab4f5ad6129f1549c44d0e2aa3d75564082db73d3a2b419c11deacd5fa102be1c0064bb54bb21ade4ed77c2d9a722e7510eaf1858e14d0ee
|
7
|
+
data.tar.gz: a84639b7c532eee0bc343e2ed7db6268161e407f69578d8d88b336d2dab5bdeff0f9ca004c91ba6a749f98b6b235ebe3fb67a6988026ab5b9757d0bf6592b34d
|
data/CHANGELOG.md
CHANGED
@@ -1940,6 +1940,25 @@ module Google
|
|
1940
1940
|
end
|
1941
1941
|
end
|
1942
1942
|
|
1943
|
+
# Encryption settings for the encrypting customer core content. NEXT ID: 2
|
1944
|
+
class GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
|
1945
|
+
include Google::Apis::Core::Hashable
|
1946
|
+
|
1947
|
+
# Optional. The Cloud KMS key name to use for encrypting customer core content.
|
1948
|
+
# Corresponds to the JSON property `kmsKey`
|
1949
|
+
# @return [String]
|
1950
|
+
attr_accessor :kms_key
|
1951
|
+
|
1952
|
+
def initialize(**args)
|
1953
|
+
update!(**args)
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
# Update properties of this object
|
1957
|
+
def update!(**args)
|
1958
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1959
|
+
end
|
1960
|
+
end
|
1961
|
+
|
1943
1962
|
# A Dataproc job for running Apache Hadoop MapReduce (https://hadoop.apache.org/
|
1944
1963
|
# docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/
|
1945
1964
|
# MapReduceTutorial.html) jobs on Apache Hadoop YARN (https://hadoop.apache.org/
|
@@ -3298,6 +3317,13 @@ module Google
|
|
3298
3317
|
# @return [Array<Google::Apis::DataprocV1::WorkflowTemplate>]
|
3299
3318
|
attr_accessor :templates
|
3300
3319
|
|
3320
|
+
# Output only. List of workflow templates that could not be included in the
|
3321
|
+
# response. Attempting to get one of these resources may indicate why it was not
|
3322
|
+
# included in the list response.
|
3323
|
+
# Corresponds to the JSON property `unreachable`
|
3324
|
+
# @return [Array<String>]
|
3325
|
+
attr_accessor :unreachable
|
3326
|
+
|
3301
3327
|
def initialize(**args)
|
3302
3328
|
update!(**args)
|
3303
3329
|
end
|
@@ -3306,6 +3332,7 @@ module Google
|
|
3306
3332
|
def update!(**args)
|
3307
3333
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3308
3334
|
@templates = args[:templates] if args.key?(:templates)
|
3335
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3309
3336
|
end
|
3310
3337
|
end
|
3311
3338
|
|
@@ -5803,6 +5830,17 @@ module Google
|
|
5803
5830
|
class UsageMetrics
|
5804
5831
|
include Google::Apis::Core::Hashable
|
5805
5832
|
|
5833
|
+
# Optional. Accelerator type being used, if any
|
5834
|
+
# Corresponds to the JSON property `acceleratorType`
|
5835
|
+
# @return [String]
|
5836
|
+
attr_accessor :accelerator_type
|
5837
|
+
|
5838
|
+
# Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc
|
5839
|
+
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
5840
|
+
# Corresponds to the JSON property `milliAcceleratorSeconds`
|
5841
|
+
# @return [Fixnum]
|
5842
|
+
attr_accessor :milli_accelerator_seconds
|
5843
|
+
|
5806
5844
|
# Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see
|
5807
5845
|
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
5808
5846
|
# pricing)).
|
@@ -5822,6 +5860,8 @@ module Google
|
|
5822
5860
|
|
5823
5861
|
# Update properties of this object
|
5824
5862
|
def update!(**args)
|
5863
|
+
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
5864
|
+
@milli_accelerator_seconds = args[:milli_accelerator_seconds] if args.key?(:milli_accelerator_seconds)
|
5825
5865
|
@milli_dcu_seconds = args[:milli_dcu_seconds] if args.key?(:milli_dcu_seconds)
|
5826
5866
|
@shuffle_storage_gb_seconds = args[:shuffle_storage_gb_seconds] if args.key?(:shuffle_storage_gb_seconds)
|
5827
5867
|
end
|
@@ -5832,6 +5872,17 @@ module Google
|
|
5832
5872
|
class UsageSnapshot
|
5833
5873
|
include Google::Apis::Core::Hashable
|
5834
5874
|
|
5875
|
+
# Optional. Accelerator type being used, if any
|
5876
|
+
# Corresponds to the JSON property `acceleratorType`
|
5877
|
+
# @return [String]
|
5878
|
+
attr_accessor :accelerator_type
|
5879
|
+
|
5880
|
+
# Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
|
5881
|
+
# (https://cloud.google.com/dataproc-serverless/pricing))
|
5882
|
+
# Corresponds to the JSON property `milliAccelerator`
|
5883
|
+
# @return [Fixnum]
|
5884
|
+
attr_accessor :milli_accelerator
|
5885
|
+
|
5835
5886
|
# Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc
|
5836
5887
|
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
5837
5888
|
# Corresponds to the JSON property `milliDcu`
|
@@ -5869,6 +5920,8 @@ module Google
|
|
5869
5920
|
|
5870
5921
|
# Update properties of this object
|
5871
5922
|
def update!(**args)
|
5923
|
+
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
5924
|
+
@milli_accelerator = args[:milli_accelerator] if args.key?(:milli_accelerator)
|
5872
5925
|
@milli_dcu = args[:milli_dcu] if args.key?(:milli_dcu)
|
5873
5926
|
@milli_dcu_premium = args[:milli_dcu_premium] if args.key?(:milli_dcu_premium)
|
5874
5927
|
@shuffle_storage_gb = args[:shuffle_storage_gb] if args.key?(:shuffle_storage_gb)
|
@@ -6126,6 +6179,11 @@ module Google
|
|
6126
6179
|
# @return [String]
|
6127
6180
|
attr_accessor :dag_timeout
|
6128
6181
|
|
6182
|
+
# Encryption settings for the encrypting customer core content. NEXT ID: 2
|
6183
|
+
# Corresponds to the JSON property `encryptionConfig`
|
6184
|
+
# @return [Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig]
|
6185
|
+
attr_accessor :encryption_config
|
6186
|
+
|
6129
6187
|
#
|
6130
6188
|
# Corresponds to the JSON property `id`
|
6131
6189
|
# @return [String]
|
@@ -6194,6 +6252,7 @@ module Google
|
|
6194
6252
|
def update!(**args)
|
6195
6253
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6196
6254
|
@dag_timeout = args[:dag_timeout] if args.key?(:dag_timeout)
|
6255
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
6197
6256
|
@id = args[:id] if args.key?(:id)
|
6198
6257
|
@jobs = args[:jobs] if args.key?(:jobs)
|
6199
6258
|
@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.58.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 = "20231019"
|
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
|
|
@@ -1325,6 +1331,13 @@ module Google
|
|
1325
1331
|
end
|
1326
1332
|
end
|
1327
1333
|
|
1334
|
+
class GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
|
1335
|
+
# @private
|
1336
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1337
|
+
property :kms_key, as: 'kmsKey'
|
1338
|
+
end
|
1339
|
+
end
|
1340
|
+
|
1328
1341
|
class HadoopJob
|
1329
1342
|
# @private
|
1330
1343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1674,6 +1687,7 @@ module Google
|
|
1674
1687
|
property :next_page_token, as: 'nextPageToken'
|
1675
1688
|
collection :templates, as: 'templates', class: Google::Apis::DataprocV1::WorkflowTemplate, decorator: Google::Apis::DataprocV1::WorkflowTemplate::Representation
|
1676
1689
|
|
1690
|
+
collection :unreachable, as: 'unreachable'
|
1677
1691
|
end
|
1678
1692
|
end
|
1679
1693
|
|
@@ -2286,6 +2300,8 @@ module Google
|
|
2286
2300
|
class UsageMetrics
|
2287
2301
|
# @private
|
2288
2302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2303
|
+
property :accelerator_type, as: 'acceleratorType'
|
2304
|
+
property :milli_accelerator_seconds, :numeric_string => true, as: 'milliAcceleratorSeconds'
|
2289
2305
|
property :milli_dcu_seconds, :numeric_string => true, as: 'milliDcuSeconds'
|
2290
2306
|
property :shuffle_storage_gb_seconds, :numeric_string => true, as: 'shuffleStorageGbSeconds'
|
2291
2307
|
end
|
@@ -2294,6 +2310,8 @@ module Google
|
|
2294
2310
|
class UsageSnapshot
|
2295
2311
|
# @private
|
2296
2312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2313
|
+
property :accelerator_type, as: 'acceleratorType'
|
2314
|
+
property :milli_accelerator, :numeric_string => true, as: 'milliAccelerator'
|
2297
2315
|
property :milli_dcu, :numeric_string => true, as: 'milliDcu'
|
2298
2316
|
property :milli_dcu_premium, :numeric_string => true, as: 'milliDcuPremium'
|
2299
2317
|
property :shuffle_storage_gb, :numeric_string => true, as: 'shuffleStorageGb'
|
@@ -2367,6 +2385,8 @@ module Google
|
|
2367
2385
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2368
2386
|
property :create_time, as: 'createTime'
|
2369
2387
|
property :dag_timeout, as: 'dagTimeout'
|
2388
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig, decorator: Google::Apis::DataprocV1::GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig::Representation
|
2389
|
+
|
2370
2390
|
property :id, as: 'id'
|
2371
2391
|
collection :jobs, as: 'jobs', class: Google::Apis::DataprocV1::OrderedJob, decorator: Google::Apis::DataprocV1::OrderedJob::Representation
|
2372
2392
|
|
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.58.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-29 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.58.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: []
|