google-apis-tpu_v2alpha1 0.39.0 → 0.40.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: 0e5f5b1e0c8cde93a2d564b8f87f7549bb14585b05ac73c4ed4367f8c69b7e63
|
4
|
+
data.tar.gz: f7f2eafaf36c9ac69ea5a7a2923fe7f72c05ea212afcf8f8ac92acf7e3e5d75a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8221fa5f03b6c628da4d392e695c1e7bc5c364e5c37fb8b03d0fb8df00b307e2deadad8195e7d6766efed198c710968bc595dc82adf4fcd702ad806adcac2d02
|
7
|
+
data.tar.gz: b6c611bbcb166fc13c1b047d451751cc30f46e22c58c31ca5f66aa779f91f66969d51c1aac6aa793008adc8d1895ed7380fd65fa2ad2d59466c12dd93d99167f
|
data/CHANGELOG.md
CHANGED
@@ -178,12 +178,32 @@ module Google
|
|
178
178
|
# @return [Google::Apis::TpuV2alpha1::CustomerEncryptionKey]
|
179
179
|
attr_accessor :customer_encryption_key
|
180
180
|
|
181
|
+
# Optional. Size of the boot disk in GB. It must be larger than or equal to the
|
182
|
+
# size of the image.
|
183
|
+
# Corresponds to the JSON property `diskSizeGb`
|
184
|
+
# @return [Fixnum]
|
185
|
+
attr_accessor :disk_size_gb
|
186
|
+
|
181
187
|
# Optional. Whether the boot disk will be created with confidential compute mode.
|
182
188
|
# Corresponds to the JSON property `enableConfidentialCompute`
|
183
189
|
# @return [Boolean]
|
184
190
|
attr_accessor :enable_confidential_compute
|
185
191
|
alias_method :enable_confidential_compute?, :enable_confidential_compute
|
186
192
|
|
193
|
+
# Optional. Indicates how many IOPS to provision for the disk. This sets the
|
194
|
+
# number of I/O operations per second that the disk can handle. To learn more
|
195
|
+
# about IOPS, see [Provisioning persistent disk performance](https://cloud.
|
196
|
+
# google.com/compute/docs/disks/performance#provisioned-iops).
|
197
|
+
# Corresponds to the JSON property `provisionedIops`
|
198
|
+
# @return [Fixnum]
|
199
|
+
attr_accessor :provisioned_iops
|
200
|
+
|
201
|
+
# Optional. Indicates how much throughput to provision for the disk. This sets
|
202
|
+
# the number of throughput MB per second that the disk can handle.
|
203
|
+
# Corresponds to the JSON property `provisionedThroughput`
|
204
|
+
# @return [Fixnum]
|
205
|
+
attr_accessor :provisioned_throughput
|
206
|
+
|
187
207
|
# Optional. Image from which boot disk is to be created. If not specified, the
|
188
208
|
# default image for the runtime version will be used. Example: `projects/$
|
189
209
|
# PROJECT_ID/global/images/$IMAGE_NAME`.
|
@@ -198,7 +218,10 @@ module Google
|
|
198
218
|
# Update properties of this object
|
199
219
|
def update!(**args)
|
200
220
|
@customer_encryption_key = args[:customer_encryption_key] if args.key?(:customer_encryption_key)
|
221
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
201
222
|
@enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
|
223
|
+
@provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops)
|
224
|
+
@provisioned_throughput = args[:provisioned_throughput] if args.key?(:provisioned_throughput)
|
202
225
|
@source_image = args[:source_image] if args.key?(:source_image)
|
203
226
|
end
|
204
227
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TpuV2alpha1
|
18
18
|
# Version of the google-apis-tpu_v2alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250423"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -457,7 +457,10 @@ module Google
|
|
457
457
|
class Representation < Google::Apis::Core::JsonRepresentation
|
458
458
|
property :customer_encryption_key, as: 'customerEncryptionKey', class: Google::Apis::TpuV2alpha1::CustomerEncryptionKey, decorator: Google::Apis::TpuV2alpha1::CustomerEncryptionKey::Representation
|
459
459
|
|
460
|
+
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
460
461
|
property :enable_confidential_compute, as: 'enableConfidentialCompute'
|
462
|
+
property :provisioned_iops, :numeric_string => true, as: 'provisionedIops'
|
463
|
+
property :provisioned_throughput, :numeric_string => true, as: 'provisionedThroughput'
|
461
464
|
property :source_image, as: 'sourceImage'
|
462
465
|
end
|
463
466
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tpu_v2alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.40.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|