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: 528a3689a86bcd709fd35ca822652442c6ee5f900dda10518b93d828794a4929
4
- data.tar.gz: fcc0a499bf239db7fa51e1097a6fa0b55825f0295d7fa31ebea5ca2b8f0acbab
3
+ metadata.gz: 806998a89c2be609a88d2b3851ede03ed339e675eb0dfc2a3deb40d4dfc0000a
4
+ data.tar.gz: '0078df41148ec8280bd199a2510bf08673dd183382ea8d2ff2902a43f76b3af9'
5
5
  SHA512:
6
- metadata.gz: a8e0a1d5c4e378d6daa4bde88d9c59bd97162f6b7a3048152f6a53d0df363ff0a2ce1d6c1b62d64473666ecd6f51892c0d80d5afbfd0a267adb0467fbc236c2d
7
- data.tar.gz: 7d783b27e5e874c2e61f3e4509e4125c7ab2d9779e630a81117465cda373b314345c83fce34c32600c7f72386abcffc4f02b76cc0e511ac485e4595f1332f963
6
+ metadata.gz: 531b781c9c007a921492f93aea9d6e7949a866b0b05f7151b5cc831ec93c020c100a0bb0fb2aed822dbca5590ff594f4aa1fa96d4e2aba9690f7de8c7f8bb9fa
7
+ data.tar.gz: 4f7a83d7878c57c0c887b82e27a31e3447f30249f718d96a9718a78304d518f4d332a5ce3a48985115c88818480ca58b1133c5a3988acc68605fce4167493b15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.70.0 (2024-06-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20240605
@@ -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 (https:/
1775
- # /cloud.google.com/compute/docs/label-or-tag-resources#tags)).
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.70.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 = "20240605"
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.70.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-09 00:00:00.000000000 Z
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.70.0
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: []