google-apis-tpu_v1alpha1 0.31.0 → 0.32.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: dc6ca87fe28e74bb59c005432bfd05b233e4714058add8db6be4a1a8a0c850a9
4
- data.tar.gz: 179ea1455016d4b27c77b3152dbe066a4bf67eddaa3fedcc30437931d3f08206
3
+ metadata.gz: 4b1f6de6d4f587c151b0f672f7c99cbf2828b7069f25a05a53bccd91f61c4ace
4
+ data.tar.gz: baeebe4ffdea92ca0dd2d80ced714b07b90c01bcf7d89484f7f07c2005bb54bc
5
5
  SHA512:
6
- metadata.gz: c57439e056589b294cd5c11f87846b4bd4065cd8ae0c77e6d03881ef08bdc9e4080ac664aeb4b59e863b41d3124742d62599d9a63bc135f9eff113f08f705862
7
- data.tar.gz: '08ac83a94e769b8885aa4fd37dbccca845dad32132d9251e8c194b999755454b3c5762cc2b6cf8e95109794a23ecb0a4454215c6ac73cf3d2b37f0183a796d86'
6
+ metadata.gz: 89c7d7a091979ffc47299e925db55801b6d0ec2c41dbe3c1a7903cc2c0c20f6fd4ce3381e5c54b9bd28e7f022f063b633e1c53f5e3e3e08f57ed880ba88f96fc
7
+ data.tar.gz: fa32448a7d3d010e69df39d6b21ec80c963a9d1dbcd51847c312405d34a9aee4c85f52a07a0204b2b810c116d9139fb8da460492bd4cb80b0c94504a11bf14bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-tpu_v1alpha1
2
2
 
3
+ ### v0.32.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251005
6
+
3
7
  ### v0.31.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250903
@@ -164,6 +164,13 @@ module Google
164
164
  # @return [Array<Google::Apis::TpuV1alpha1::Operation>]
165
165
  attr_accessor :operations
166
166
 
167
+ # Unordered list. Unreachable resources. Populated when the request sets `
168
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
169
+ # when attempting to list all resources across all supported locations.
170
+ # Corresponds to the JSON property `unreachable`
171
+ # @return [Array<String>]
172
+ attr_accessor :unreachable
173
+
167
174
  def initialize(**args)
168
175
  update!(**args)
169
176
  end
@@ -172,6 +179,7 @@ module Google
172
179
  def update!(**args)
173
180
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
174
181
  @operations = args[:operations] if args.key?(:operations)
182
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
175
183
  end
176
184
  end
177
185
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TpuV1alpha1
18
18
  # Version of the google-apis-tpu_v1alpha1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250903"
25
+ REVISION = "20251005"
26
26
  end
27
27
  end
28
28
  end
@@ -185,6 +185,7 @@ module Google
185
185
  property :next_page_token, as: 'nextPageToken'
186
186
  collection :operations, as: 'operations', class: Google::Apis::TpuV1alpha1::Operation, decorator: Google::Apis::TpuV1alpha1::Operation::Representation
187
187
 
188
+ collection :unreachable, as: 'unreachable'
188
189
  end
189
190
  end
190
191
 
@@ -548,6 +548,13 @@ module Google
548
548
  # The standard list page size.
549
549
  # @param [String] page_token
550
550
  # The standard list page token.
551
+ # @param [Boolean] return_partial_success
552
+ # When set to `true`, operations that are reachable are returned as normal, and
553
+ # those that are unreachable are returned in the [ListOperationsResponse.
554
+ # unreachable] field. This can only be `true` when reading across collections e.
555
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
556
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
557
+ # explicitly documented otherwise in service or product specific documentation.
551
558
  # @param [String] fields
552
559
  # Selector specifying which fields to include in a partial response.
553
560
  # @param [String] quota_user
@@ -565,7 +572,7 @@ module Google
565
572
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
566
573
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
567
574
  # @raise [Google::Apis::AuthorizationError] Authorization is required
568
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
575
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
569
576
  command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
570
577
  command.response_representation = Google::Apis::TpuV1alpha1::ListOperationsResponse::Representation
571
578
  command.response_class = Google::Apis::TpuV1alpha1::ListOperationsResponse
@@ -573,6 +580,7 @@ module Google
573
580
  command.query['filter'] = filter unless filter.nil?
574
581
  command.query['pageSize'] = page_size unless page_size.nil?
575
582
  command.query['pageToken'] = page_token unless page_token.nil?
583
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
576
584
  command.query['fields'] = fields unless fields.nil?
577
585
  command.query['quotaUser'] = quota_user unless quota_user.nil?
578
586
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-tpu_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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_v1alpha1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v1alpha1/v0.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v1alpha1/v0.32.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v1alpha1
62
62
  rdoc_options: []
63
63
  require_paths: