google-apis-dataproc_v1 0.70.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
@@ -1287,6 +1287,21 @@ module Google
|
|
1287
1287
|
class DiskConfig
|
1288
1288
|
include Google::Apis::Core::Hashable
|
1289
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
|
+
|
1290
1305
|
# Optional. Size in GB of the boot disk (default is 500GB).
|
1291
1306
|
# Corresponds to the JSON property `bootDiskSizeGb`
|
1292
1307
|
# @return [Fixnum]
|
@@ -1324,6 +1339,8 @@ module Google
|
|
1324
1339
|
|
1325
1340
|
# Update properties of this object
|
1326
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)
|
1327
1344
|
@boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
|
1328
1345
|
@boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
|
1329
1346
|
@local_ssd_interface = args[:local_ssd_interface] if args.key?(:local_ssd_interface)
|
@@ -1771,8 +1788,8 @@ module Google
|
|
1771
1788
|
# @return [String]
|
1772
1789
|
attr_accessor :subnetwork_uri
|
1773
1790
|
|
1774
|
-
# The Compute Engine tags to add to all instances (see Tagging instances
|
1775
|
-
#
|
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)).
|
1776
1793
|
# Corresponds to the JSON property `tags`
|
1777
1794
|
# @return [Array<String>]
|
1778
1795
|
attr_accessor :tags
|
@@ -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
|
@@ -1199,6 +1199,8 @@ module Google
|
|
1199
1199
|
class DiskConfig
|
1200
1200
|
# @private
|
1201
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'
|
1202
1204
|
property :boot_disk_size_gb, as: 'bootDiskSizeGb'
|
1203
1205
|
property :boot_disk_type, as: 'bootDiskType'
|
1204
1206
|
property :local_ssd_interface, as: 'localSsdInterface'
|
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-06-
|
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: []
|