google-apis-dataproc_v1 0.69.0 → 0.71.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: 806998a89c2be609a88d2b3851ede03ed339e675eb0dfc2a3deb40d4dfc0000a
|
4
|
+
data.tar.gz: '0078df41148ec8280bd199a2510bf08673dd183382ea8d2ff2902a43f76b3af9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 531b781c9c007a921492f93aea9d6e7949a866b0b05f7151b5cc831ec93c020c100a0bb0fb2aed822dbca5590ff594f4aa1fa96d4e2aba9690f7de8c7f8bb9fa
|
7
|
+
data.tar.gz: 4f7a83d7878c57c0c887b82e27a31e3447f30249f718d96a9718a78304d518f4d332a5ce3a48985115c88818480ca58b1133c5a3988acc68605fce4167493b15
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.71.0 (2024-06-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240617
|
6
|
+
|
7
|
+
### v0.70.0 (2024-06-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240605
|
10
|
+
|
3
11
|
### v0.69.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.15.0
|
@@ -235,6 +235,25 @@ module Google
|
|
235
235
|
end
|
236
236
|
end
|
237
237
|
|
238
|
+
# Autotuning configuration of the workload.
|
239
|
+
class AutotuningConfig
|
240
|
+
include Google::Apis::Core::Hashable
|
241
|
+
|
242
|
+
# Optional. Scenarios for which tunings are applied.
|
243
|
+
# Corresponds to the JSON property `scenarios`
|
244
|
+
# @return [Array<String>]
|
245
|
+
attr_accessor :scenarios
|
246
|
+
|
247
|
+
def initialize(**args)
|
248
|
+
update!(**args)
|
249
|
+
end
|
250
|
+
|
251
|
+
# Update properties of this object
|
252
|
+
def update!(**args)
|
253
|
+
@scenarios = args[:scenarios] if args.key?(:scenarios)
|
254
|
+
end
|
255
|
+
end
|
256
|
+
|
238
257
|
# Node group identification and configuration information.
|
239
258
|
class AuxiliaryNodeGroup
|
240
259
|
include Google::Apis::Core::Hashable
|
@@ -1268,6 +1287,21 @@ module Google
|
|
1268
1287
|
class DiskConfig
|
1269
1288
|
include Google::Apis::Core::Hashable
|
1270
1289
|
|
1290
|
+
# Optional. Indicates how many IOPS to provision for the disk. This sets the
|
1291
|
+
# number of I/O operations per second that the disk can handle. Note: This field
|
1292
|
+
# is only supported if boot_disk_type is hyperdisk-balanced.
|
1293
|
+
# Corresponds to the JSON property `bootDiskProvisionedIops`
|
1294
|
+
# @return [Fixnum]
|
1295
|
+
attr_accessor :boot_disk_provisioned_iops
|
1296
|
+
|
1297
|
+
# Optional. Indicates how much throughput to provision for the disk. This sets
|
1298
|
+
# the number of throughput mb per second that the disk can handle. Values must
|
1299
|
+
# be greater than or equal to 1. Note: This field is only supported if
|
1300
|
+
# boot_disk_type is hyperdisk-balanced.
|
1301
|
+
# Corresponds to the JSON property `bootDiskProvisionedThroughput`
|
1302
|
+
# @return [Fixnum]
|
1303
|
+
attr_accessor :boot_disk_provisioned_throughput
|
1304
|
+
|
1271
1305
|
# Optional. Size in GB of the boot disk (default is 500GB).
|
1272
1306
|
# Corresponds to the JSON property `bootDiskSizeGb`
|
1273
1307
|
# @return [Fixnum]
|
@@ -1305,6 +1339,8 @@ module Google
|
|
1305
1339
|
|
1306
1340
|
# Update properties of this object
|
1307
1341
|
def update!(**args)
|
1342
|
+
@boot_disk_provisioned_iops = args[:boot_disk_provisioned_iops] if args.key?(:boot_disk_provisioned_iops)
|
1343
|
+
@boot_disk_provisioned_throughput = args[:boot_disk_provisioned_throughput] if args.key?(:boot_disk_provisioned_throughput)
|
1308
1344
|
@boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
|
1309
1345
|
@boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
|
1310
1346
|
@local_ssd_interface = args[:local_ssd_interface] if args.key?(:local_ssd_interface)
|
@@ -1752,8 +1788,8 @@ module Google
|
|
1752
1788
|
# @return [String]
|
1753
1789
|
attr_accessor :subnetwork_uri
|
1754
1790
|
|
1755
|
-
# The Compute Engine tags to add to all instances (see Tagging instances
|
1756
|
-
#
|
1791
|
+
# The Compute Engine network tags to add to all instances (see Tagging instances
|
1792
|
+
# (https://cloud.google.com/vpc/docs/add-remove-network-tags)).
|
1757
1793
|
# Corresponds to the JSON property `tags`
|
1758
1794
|
# @return [Array<String>]
|
1759
1795
|
attr_accessor :tags
|
@@ -4738,6 +4774,17 @@ module Google
|
|
4738
4774
|
class RuntimeConfig
|
4739
4775
|
include Google::Apis::Core::Hashable
|
4740
4776
|
|
4777
|
+
# Autotuning configuration of the workload.
|
4778
|
+
# Corresponds to the JSON property `autotuningConfig`
|
4779
|
+
# @return [Google::Apis::DataprocV1::AutotuningConfig]
|
4780
|
+
attr_accessor :autotuning_config
|
4781
|
+
|
4782
|
+
# Optional. Cohort identifier. Identifies families of the workloads having the
|
4783
|
+
# same shape, e.g. daily ETL jobs.
|
4784
|
+
# Corresponds to the JSON property `cohort`
|
4785
|
+
# @return [String]
|
4786
|
+
attr_accessor :cohort
|
4787
|
+
|
4741
4788
|
# Optional. Optional custom container image for the job runtime environment. If
|
4742
4789
|
# not specified, a default container image will be used.
|
4743
4790
|
# Corresponds to the JSON property `containerImage`
|
@@ -4766,6 +4813,8 @@ module Google
|
|
4766
4813
|
|
4767
4814
|
# Update properties of this object
|
4768
4815
|
def update!(**args)
|
4816
|
+
@autotuning_config = args[:autotuning_config] if args.key?(:autotuning_config)
|
4817
|
+
@cohort = args[:cohort] if args.key?(:cohort)
|
4769
4818
|
@container_image = args[:container_image] if args.key?(:container_image)
|
4770
4819
|
@properties = args[:properties] if args.key?(:properties)
|
4771
4820
|
@repository_config = args[:repository_config] if args.key?(:repository_config)
|
@@ -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.71.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class AutotuningConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class AuxiliaryNodeGroup
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -925,6 +931,13 @@ module Google
|
|
925
931
|
end
|
926
932
|
end
|
927
933
|
|
934
|
+
class AutotuningConfig
|
935
|
+
# @private
|
936
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
937
|
+
collection :scenarios, as: 'scenarios'
|
938
|
+
end
|
939
|
+
end
|
940
|
+
|
928
941
|
class AuxiliaryNodeGroup
|
929
942
|
# @private
|
930
943
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1186,6 +1199,8 @@ module Google
|
|
1186
1199
|
class DiskConfig
|
1187
1200
|
# @private
|
1188
1201
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1202
|
+
property :boot_disk_provisioned_iops, :numeric_string => true, as: 'bootDiskProvisionedIops'
|
1203
|
+
property :boot_disk_provisioned_throughput, :numeric_string => true, as: 'bootDiskProvisionedThroughput'
|
1189
1204
|
property :boot_disk_size_gb, as: 'bootDiskSizeGb'
|
1190
1205
|
property :boot_disk_type, as: 'bootDiskType'
|
1191
1206
|
property :local_ssd_interface, as: 'localSsdInterface'
|
@@ -2035,6 +2050,9 @@ module Google
|
|
2035
2050
|
class RuntimeConfig
|
2036
2051
|
# @private
|
2037
2052
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2053
|
+
property :autotuning_config, as: 'autotuningConfig', class: Google::Apis::DataprocV1::AutotuningConfig, decorator: Google::Apis::DataprocV1::AutotuningConfig::Representation
|
2054
|
+
|
2055
|
+
property :cohort, as: 'cohort'
|
2038
2056
|
property :container_image, as: 'containerImage'
|
2039
2057
|
hash :properties, as: 'properties'
|
2040
2058
|
property :repository_config, as: 'repositoryConfig', class: Google::Apis::DataprocV1::RepositoryConfig, decorator: Google::Apis::DataprocV1::RepositoryConfig::Representation
|
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.71.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: 2024-
|
11
|
+
date: 2024-06-23 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.71.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: []
|