google-apis-tpu_v2 0.6.0 → 0.7.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: 346defd70f7be0901ed8add37f43d22b2d40e00536789e2dbab3469e3b15eb6a
4
- data.tar.gz: a7ba236ed864aaf1f5055bc3d58966383658da369615cb2fd5fcf01600d9412d
3
+ metadata.gz: 4b3ee256bf9af001fe7b0d0a477f505eae455d0df52cb3b0e1a458a73de17977
4
+ data.tar.gz: 3cfa1f2d16ab016699c3961337212f21ae4981a451040b18a8360d5dff0f63b8
5
5
  SHA512:
6
- metadata.gz: '0789ecadd810c885a36a5b8785ab964fc94402ce7508a94741c87df3a960d8c43c4da5c9864f85f35b4c140bb09616b3b27a48dd09c95ce5e061e64127cb1237'
7
- data.tar.gz: f3ae9b5ac699595e38f38b9e2e43a464aabe92b628e6e9c75ce99f84a3e3f2d91cbdafd1758cacb9f77eec38f19c7d3cca2f53569202d62e66c718ac21d41ed6
6
+ metadata.gz: '08088acbd5f52f9a35105c81e0263fde3cbd343b4a5c74ee071adeccc7d6d3f42e7d78a4e519a88de20514fd20a59b6feb1db975ab6275f229ffd996511c6557'
7
+ data.tar.gz: 81b4e3f2388c158a39f342f21ded37a81dc3329e1e9b26b09f58ee8b296dcfd824da01bab64206e4634fab57839458aa9920a14f5041fdaf84408b2d9aecbf2d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-tpu_v2
2
2
 
3
+ ### v0.7.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230707
6
+
3
7
  ### v0.6.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230420
@@ -61,7 +61,7 @@ module Google
61
61
  # @return [String]
62
62
  attr_accessor :name
63
63
 
64
- # the accelerator type.
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
- # Required. The type of hardware accelerators associated with this node.
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)
@@ -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.6.0"
19
+ GEM_VERSION = "0.7.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 = "20230420"
25
+ REVISION = "20230707"
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.6.0
4
+ version: 0.7.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-07-16 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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.7.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: []