google-apis-tpu_v2 0.6.0 → 0.8.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 +8 -0
- data/lib/google/apis/tpu_v2/classes.rb +22 -9
- data/lib/google/apis/tpu_v2/gem_version.rb +2 -2
- data/lib/google/apis/tpu_v2/representations.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce2c355c739486f3012db5b12639367bb2a0ce2c61acbdc61b65db17587ca756
|
4
|
+
data.tar.gz: a7ae6c0777d274918ee798085c595b7a2fd975a556ab421e43dca596fbe6087c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 957a9f1c1cbf1023d7a2bbe7746829c7aa14e7230c95e94cc5629cacd254ceaa2045780bd31e470a534590d5bf67324c8379bfc4c7f828fedb6c25da0061e3d2
|
7
|
+
data.tar.gz: 4cab452a78f739bef4aa281466117acdb52a5f4ac2deaa074e0fa76aeabe4f5105694b4fa0db026197a1c6b6999fad215bf38c7f98b9f924e4419070fb98e4a4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-tpu_v2
|
2
2
|
|
3
|
+
### v0.8.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230803
|
6
|
+
|
7
|
+
### v0.7.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230707
|
10
|
+
|
3
11
|
### v0.6.0 (2023-04-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230420
|
@@ -61,7 +61,7 @@ module Google
|
|
61
61
|
# @return [String]
|
62
62
|
attr_accessor :name
|
63
63
|
|
64
|
-
#
|
64
|
+
# The accelerator type.
|
65
65
|
# Corresponds to the JSON property `type`
|
66
66
|
# @return [String]
|
67
67
|
attr_accessor :type
|
@@ -568,7 +568,7 @@ module Google
|
|
568
568
|
# @return [Google::Apis::TpuV2::AcceleratorConfig]
|
569
569
|
attr_accessor :accelerator_config
|
570
570
|
|
571
|
-
#
|
571
|
+
# Optional. The type of hardware accelerators associated with this node.
|
572
572
|
# Corresponds to the JSON property `acceleratorType`
|
573
573
|
# @return [String]
|
574
574
|
attr_accessor :accelerator_type
|
@@ -631,6 +631,12 @@ module Google
|
|
631
631
|
# @return [Hash<String,String>]
|
632
632
|
attr_accessor :metadata
|
633
633
|
|
634
|
+
# Output only. Whether the Node belongs to a Multislice group.
|
635
|
+
# Corresponds to the JSON property `multisliceNode`
|
636
|
+
# @return [Boolean]
|
637
|
+
attr_accessor :multislice_node
|
638
|
+
alias_method :multislice_node?, :multislice_node
|
639
|
+
|
634
640
|
# Output only. Immutable. The name of the TPU.
|
635
641
|
# Corresponds to the JSON property `name`
|
636
642
|
# @return [String]
|
@@ -648,6 +654,11 @@ module Google
|
|
648
654
|
# @return [Array<Google::Apis::TpuV2::NetworkEndpoint>]
|
649
655
|
attr_accessor :network_endpoints
|
650
656
|
|
657
|
+
# Output only. The qualified name of the QueuedResource that requested this Node.
|
658
|
+
# Corresponds to the JSON property `queuedResource`
|
659
|
+
# @return [String]
|
660
|
+
attr_accessor :queued_resource
|
661
|
+
|
651
662
|
# Required. The runtime version running in the Node.
|
652
663
|
# Corresponds to the JSON property `runtimeVersion`
|
653
664
|
# @return [String]
|
@@ -702,9 +713,11 @@ module Google
|
|
702
713
|
@id = args[:id] if args.key?(:id)
|
703
714
|
@labels = args[:labels] if args.key?(:labels)
|
704
715
|
@metadata = args[:metadata] if args.key?(:metadata)
|
716
|
+
@multislice_node = args[:multislice_node] if args.key?(:multislice_node)
|
705
717
|
@name = args[:name] if args.key?(:name)
|
706
718
|
@network_config = args[:network_config] if args.key?(:network_config)
|
707
719
|
@network_endpoints = args[:network_endpoints] if args.key?(:network_endpoints)
|
720
|
+
@queued_resource = args[:queued_resource] if args.key?(:queued_resource)
|
708
721
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
709
722
|
@scheduling_config = args[:scheduling_config] if args.key?(:scheduling_config)
|
710
723
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -752,13 +765,13 @@ module Google
|
|
752
765
|
# @return [String]
|
753
766
|
attr_accessor :name
|
754
767
|
|
755
|
-
# The normal response of the operation
|
756
|
-
#
|
757
|
-
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
761
|
-
#
|
768
|
+
# The normal, successful response of the operation. If the original method
|
769
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
770
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
771
|
+
# response should be the resource. For other methods, the response should have
|
772
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
773
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
774
|
+
# `TakeSnapshotResponse`.
|
762
775
|
# Corresponds to the JSON property `response`
|
763
776
|
# @return [Hash<String,Object>]
|
764
777
|
attr_accessor :response
|
@@ -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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230803"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -405,11 +405,13 @@ module Google
|
|
405
405
|
property :id, :numeric_string => true, as: 'id'
|
406
406
|
hash :labels, as: 'labels'
|
407
407
|
hash :metadata, as: 'metadata'
|
408
|
+
property :multislice_node, as: 'multisliceNode'
|
408
409
|
property :name, as: 'name'
|
409
410
|
property :network_config, as: 'networkConfig', class: Google::Apis::TpuV2::NetworkConfig, decorator: Google::Apis::TpuV2::NetworkConfig::Representation
|
410
411
|
|
411
412
|
collection :network_endpoints, as: 'networkEndpoints', class: Google::Apis::TpuV2::NetworkEndpoint, decorator: Google::Apis::TpuV2::NetworkEndpoint::Representation
|
412
413
|
|
414
|
+
property :queued_resource, as: 'queuedResource'
|
413
415
|
property :runtime_version, as: 'runtimeVersion'
|
414
416
|
property :scheduling_config, as: 'schedulingConfig', class: Google::Apis::TpuV2::SchedulingConfig, decorator: Google::Apis::TpuV2::SchedulingConfig::Representation
|
415
417
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.8.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: 2023-
|
11
|
+
date: 2023-08-13 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-tpu_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|