google-apis-tpu_v2 0.12.0 → 0.14.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/tpu_v2/classes.rb +11 -2
- data/lib/google/apis/tpu_v2/gem_version.rb +3 -3
- data/lib/google/apis/tpu_v2/representations.rb +2 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f37390d6bd1e5a74a7aa68007daa5c9f12d328136b813c7e62a27f802b83669
|
4
|
+
data.tar.gz: 5ff4264605e3cbf06a98416a3e54013dfb4707deea36848ad5e1eb22589367a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e7d7bfce45ebd9ebb3c21e6ba64e26a82b97f572d1353b5f682b12aaf8f6062942a932bccd0fb1f004e6090f16aba659578897fd95b36e3ddabf982fcdd2ecf
|
7
|
+
data.tar.gz: 3b4669ec34439a19fba7a10a53c76c85be6e2b048f64bc6a21bc28a39216cb80155066174d667fb462ba6fd778959de4c224926944e05abf80857859f60b82e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-tpu_v2
|
2
2
|
|
3
|
+
### v0.14.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250116
|
6
|
+
|
7
|
+
### v0.13.0 (2025-01-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250103
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.12.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241126
|
@@ -646,8 +646,8 @@ module Google
|
|
646
646
|
class MultisliceParams
|
647
647
|
include Google::Apis::Core::Hashable
|
648
648
|
|
649
|
-
# Required. Number of nodes with this spec. The system will attempt to
|
650
|
-
# node_count" nodes as part of the request. This needs to be > 1.
|
649
|
+
# Required. Number of nodes with this spec. The system will attempt to provision
|
650
|
+
# "node_count" nodes as part of the request. This needs to be > 1.
|
651
651
|
# Corresponds to the JSON property `nodeCount`
|
652
652
|
# @return [Fixnum]
|
653
653
|
attr_accessor :node_count
|
@@ -842,6 +842,14 @@ module Google
|
|
842
842
|
# @return [Google::Apis::TpuV2::NetworkConfig]
|
843
843
|
attr_accessor :network_config
|
844
844
|
|
845
|
+
# Optional. Repeated network configurations for the TPU node. This field is used
|
846
|
+
# to specify multiple networks configs for the TPU node. network_config and
|
847
|
+
# network_configs are mutually exclusive, you can only specify one of them. If
|
848
|
+
# both are specified, an error will be returned.
|
849
|
+
# Corresponds to the JSON property `networkConfigs`
|
850
|
+
# @return [Array<Google::Apis::TpuV2::NetworkConfig>]
|
851
|
+
attr_accessor :network_configs
|
852
|
+
|
845
853
|
# Output only. The network endpoints where TPU workers can be accessed and sent
|
846
854
|
# work. It is recommended that runtime clients of the node reach out to the 0th
|
847
855
|
# entry in this map first.
|
@@ -911,6 +919,7 @@ module Google
|
|
911
919
|
@multislice_node = args[:multislice_node] if args.key?(:multislice_node)
|
912
920
|
@name = args[:name] if args.key?(:name)
|
913
921
|
@network_config = args[:network_config] if args.key?(:network_config)
|
922
|
+
@network_configs = args[:network_configs] if args.key?(:network_configs)
|
914
923
|
@network_endpoints = args[:network_endpoints] if args.key?(:network_endpoints)
|
915
924
|
@queued_resource = args[:queued_resource] if args.key?(:queued_resource)
|
916
925
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TpuV2
|
18
18
|
# Version of the google-apis-tpu_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.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 = "20250116"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -589,6 +589,8 @@ module Google
|
|
589
589
|
property :name, as: 'name'
|
590
590
|
property :network_config, as: 'networkConfig', class: Google::Apis::TpuV2::NetworkConfig, decorator: Google::Apis::TpuV2::NetworkConfig::Representation
|
591
591
|
|
592
|
+
collection :network_configs, as: 'networkConfigs', class: Google::Apis::TpuV2::NetworkConfig, decorator: Google::Apis::TpuV2::NetworkConfig::Representation
|
593
|
+
|
592
594
|
collection :network_endpoints, as: 'networkEndpoints', class: Google::Apis::TpuV2::NetworkEndpoint, decorator: Google::Apis::TpuV2::NetworkEndpoint::Representation
|
593
595
|
|
594
596
|
property :queued_resource, as: 'queuedResource'
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tpu_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.14.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2
|
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 V2
|
82
79
|
test_files: []
|