google-apis-tpu_v2alpha1 0.35.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: 3fcff765ab5695297cb1e96fe95d9d4d38dd8dcce98b9cf6f2719cb3546dc29a
4
- data.tar.gz: e4cbf6d562b1d90565b90b4673191a4116fca39bd7304514242fafd9f33350cd
3
+ metadata.gz: 0d7c49d08c116dd9ba428074c2c94223f1cfe821da8f821374be1d2b8e365b3b
4
+ data.tar.gz: 30fdc8d9b74a32560366bd03266bb3758e402cbc5d5e2d3d9918432167b025a3
5
5
  SHA512:
6
- metadata.gz: b2cbe18c40bac7a0b84ff1e1c3eb67f560852a0c93d7b1f215b12485a5425a8f0e0a399303d7fb22e354a9f49398448bd99c9a159325e49e9b731da4f24fb998
7
- data.tar.gz: 17e09825f4277cc397a46f62750b604429f53b4f688104549a43120256d675437646795addd3923dc3879c5fd7fb914979c9a784c9b84e6e2da96da8e8d54b26
6
+ metadata.gz: e640e09963179273ea86a60223a88988b56373f8d95700972421608c661dfa3a93ee434c38720601e30c42db2dfbea482cde5446efb0b52d2b0acc73c16f9700
7
+ data.tar.gz: c8d26b69f6581496eebf01c7124f05cd6775cdc4b2f351b2aaeda3e8510d144bd0d27a819fc13f0acf159773a32a3f5eee1e6faf8d0d7a63ee5f35e718d17fef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.35.0 (2025-01-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20250103
@@ -123,7 +123,7 @@ module Google
123
123
  end
124
124
  end
125
125
 
126
- # A node-attached disk resource. Next ID: 8;
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
 
@@ -1463,7 +1469,7 @@ module Google
1463
1469
  # @return [String]
1464
1470
  attr_accessor :name
1465
1471
 
1466
- #
1472
+ # Details of a standard reservation.
1467
1473
  # Corresponds to the JSON property `standard`
1468
1474
  # @return [Google::Apis::TpuV2alpha1::Standard]
1469
1475
  attr_accessor :standard
@@ -1658,11 +1664,11 @@ module Google
1658
1664
  end
1659
1665
  end
1660
1666
 
1661
- #
1667
+ # Details of a standard reservation.
1662
1668
  class Standard
1663
1669
  include Google::Apis::Core::Hashable
1664
1670
 
1665
- #
1671
+ # Capacity units this reservation is measured in.
1666
1672
  # Corresponds to the JSON property `capacityUnits`
1667
1673
  # @return [String]
1668
1674
  attr_accessor :capacity_units
@@ -1686,7 +1692,7 @@ module Google
1686
1692
  # @return [Fixnum]
1687
1693
  attr_accessor :size
1688
1694
 
1689
- #
1695
+ # Usage details of a reservation.
1690
1696
  # Corresponds to the JSON property `usage`
1691
1697
  # @return [Google::Apis::TpuV2alpha1::Usage]
1692
1698
  attr_accessor :usage
@@ -1905,7 +1911,7 @@ module Google
1905
1911
  end
1906
1912
  end
1907
1913
 
1908
- #
1914
+ # Usage details of a reservation.
1909
1915
  class Usage
1910
1916
  include Google::Apis::Core::Hashable
1911
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.35.0"
19
+ GEM_VERSION = "0.36.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 = "20250103"
25
+ REVISION = "20250225"
26
26
  end
27
27
  end
28
28
  end
@@ -436,6 +436,7 @@ module Google
436
436
  class Representation < Google::Apis::Core::JsonRepresentation
437
437
  property :mode, as: 'mode'
438
438
  property :source_disk, as: 'sourceDisk'
439
+ collection :worker_ids, as: 'workerIds'
439
440
  end
440
441
  end
441
442
 
@@ -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,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.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 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.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.36.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud TPU API V2alpha1
79
79
  test_files: []