google-apis-tpu_v2alpha1 0.34.0 → 0.36.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: 0d7c49d08c116dd9ba428074c2c94223f1cfe821da8f821374be1d2b8e365b3b
|
4
|
+
data.tar.gz: 30fdc8d9b74a32560366bd03266bb3758e402cbc5d5e2d3d9918432167b025a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e640e09963179273ea86a60223a88988b56373f8d95700972421608c661dfa3a93ee434c38720601e30c42db2dfbea482cde5446efb0b52d2b0acc73c16f9700
|
7
|
+
data.tar.gz: c8d26b69f6581496eebf01c7124f05cd6775cdc4b2f351b2aaeda3e8510d144bd0d27a819fc13f0acf159773a32a3f5eee1e6faf8d0d7a63ee5f35e718d17fef
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-tpu_v2alpha1
|
2
2
|
|
3
|
+
### v0.36.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250225
|
6
|
+
|
7
|
+
### v0.35.0 (2025-01-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250103
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.34.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241126
|
@@ -123,7 +123,7 @@ module Google
|
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
126
|
-
# A node-attached disk resource.
|
126
|
+
# A node-attached disk resource.
|
127
127
|
class AttachedDisk
|
128
128
|
include Google::Apis::Core::Hashable
|
129
129
|
|
@@ -139,6 +139,11 @@ module Google
|
|
139
139
|
# @return [String]
|
140
140
|
attr_accessor :source_disk
|
141
141
|
|
142
|
+
# Optional. The list of worker IDs this disk is attached to.
|
143
|
+
# Corresponds to the JSON property `workerIds`
|
144
|
+
# @return [Array<String>]
|
145
|
+
attr_accessor :worker_ids
|
146
|
+
|
142
147
|
def initialize(**args)
|
143
148
|
update!(**args)
|
144
149
|
end
|
@@ -147,6 +152,7 @@ module Google
|
|
147
152
|
def update!(**args)
|
148
153
|
@mode = args[:mode] if args.key?(:mode)
|
149
154
|
@source_disk = args[:source_disk] if args.key?(:source_disk)
|
155
|
+
@worker_ids = args[:worker_ids] if args.key?(:worker_ids)
|
150
156
|
end
|
151
157
|
end
|
152
158
|
|
@@ -954,7 +960,10 @@ module Google
|
|
954
960
|
# @return [Google::Apis::TpuV2alpha1::NetworkConfig]
|
955
961
|
attr_accessor :network_config
|
956
962
|
|
957
|
-
# Optional. Repeated network configurations for the TPU node.
|
963
|
+
# Optional. Repeated network configurations for the TPU node. This field is used
|
964
|
+
# to specify multiple networks configs for the TPU node. network_config and
|
965
|
+
# network_configs are mutually exclusive, you can only specify one of them. If
|
966
|
+
# both are specified, an error will be returned.
|
958
967
|
# Corresponds to the JSON property `networkConfigs`
|
959
968
|
# @return [Array<Google::Apis::TpuV2alpha1::NetworkConfig>]
|
960
969
|
attr_accessor :network_configs
|
@@ -1460,7 +1469,7 @@ module Google
|
|
1460
1469
|
# @return [String]
|
1461
1470
|
attr_accessor :name
|
1462
1471
|
|
1463
|
-
#
|
1472
|
+
# Details of a standard reservation.
|
1464
1473
|
# Corresponds to the JSON property `standard`
|
1465
1474
|
# @return [Google::Apis::TpuV2alpha1::Standard]
|
1466
1475
|
attr_accessor :standard
|
@@ -1655,11 +1664,11 @@ module Google
|
|
1655
1664
|
end
|
1656
1665
|
end
|
1657
1666
|
|
1658
|
-
#
|
1667
|
+
# Details of a standard reservation.
|
1659
1668
|
class Standard
|
1660
1669
|
include Google::Apis::Core::Hashable
|
1661
1670
|
|
1662
|
-
#
|
1671
|
+
# Capacity units this reservation is measured in.
|
1663
1672
|
# Corresponds to the JSON property `capacityUnits`
|
1664
1673
|
# @return [String]
|
1665
1674
|
attr_accessor :capacity_units
|
@@ -1683,7 +1692,7 @@ module Google
|
|
1683
1692
|
# @return [Fixnum]
|
1684
1693
|
attr_accessor :size
|
1685
1694
|
|
1686
|
-
#
|
1695
|
+
# Usage details of a reservation.
|
1687
1696
|
# Corresponds to the JSON property `usage`
|
1688
1697
|
# @return [Google::Apis::TpuV2alpha1::Usage]
|
1689
1698
|
attr_accessor :usage
|
@@ -1902,7 +1911,7 @@ module Google
|
|
1902
1911
|
end
|
1903
1912
|
end
|
1904
1913
|
|
1905
|
-
#
|
1914
|
+
# Usage details of a reservation.
|
1906
1915
|
class Usage
|
1907
1916
|
include Google::Apis::Core::Hashable
|
1908
1917
|
|
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250225"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -927,7 +927,8 @@ module Google
|
|
927
927
|
# @param [String] parent
|
928
928
|
# Required. The parent for reservations.
|
929
929
|
# @param [Fixnum] page_size
|
930
|
-
# The maximum number of items to return.
|
930
|
+
# The maximum number of items to return. Defaults to 0 if not specified, which
|
931
|
+
# means no limit.
|
931
932
|
# @param [String] page_token
|
932
933
|
# The next_page_token value returned from a previous List request, if any.
|
933
934
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,14 +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.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.36.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud TPU API V2alpha1
|
82
79
|
test_files: []
|