google-apis-tpu_v2alpha1 0.46.0 → 0.47.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c00fdc1b926949369c9e9fa903b8421e3b4bd300393ed7bea0c95512ac3132f4
|
4
|
+
data.tar.gz: 14628a69baece67839b16a0c84c1a7a14df312b8e8454d40393e6b47332925be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fb70810ef0f7c0771333fa81b63d766ed1f925fb774443b309d97fb09d7d9c35d96d521080949cec042257fb9b3c038a84c814637ba788e615c509fd2ceeb47
|
7
|
+
data.tar.gz: a248c5449a270234c9dd939b4414501bdf48166fa0398219b5e16005f2a482d5aafa58f74a61dd9513a621ea4754b9aace4c4ac6c247ffb2b4517da9bdf399ce
|
data/CHANGELOG.md
CHANGED
@@ -653,6 +653,13 @@ module Google
|
|
653
653
|
# @return [Array<Google::Apis::TpuV2alpha1::Operation>]
|
654
654
|
attr_accessor :operations
|
655
655
|
|
656
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
657
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
658
|
+
# when attempting to list all resources across all supported locations.
|
659
|
+
# Corresponds to the JSON property `unreachable`
|
660
|
+
# @return [Array<String>]
|
661
|
+
attr_accessor :unreachable
|
662
|
+
|
656
663
|
def initialize(**args)
|
657
664
|
update!(**args)
|
658
665
|
end
|
@@ -661,6 +668,7 @@ module Google
|
|
661
668
|
def update!(**args)
|
662
669
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
663
670
|
@operations = args[:operations] if args.key?(:operations)
|
671
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
664
672
|
end
|
665
673
|
end
|
666
674
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.47.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 = "
|
25
|
+
REVISION = "20251005"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -626,6 +626,7 @@ module Google
|
|
626
626
|
property :next_page_token, as: 'nextPageToken'
|
627
627
|
collection :operations, as: 'operations', class: Google::Apis::TpuV2alpha1::Operation, decorator: Google::Apis::TpuV2alpha1::Operation::Representation
|
628
628
|
|
629
|
+
collection :unreachable, as: 'unreachable'
|
629
630
|
end
|
630
631
|
end
|
631
632
|
|
@@ -684,6 +684,13 @@ module Google
|
|
684
684
|
# The standard list page size.
|
685
685
|
# @param [String] page_token
|
686
686
|
# The standard list page token.
|
687
|
+
# @param [Boolean] return_partial_success
|
688
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
689
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
690
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
691
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
692
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
693
|
+
# explicitly documented otherwise in service or product specific documentation.
|
687
694
|
# @param [String] fields
|
688
695
|
# Selector specifying which fields to include in a partial response.
|
689
696
|
# @param [String] quota_user
|
@@ -701,7 +708,7 @@ module Google
|
|
701
708
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
702
709
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
703
710
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
704
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
711
|
+
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)
|
705
712
|
command = make_simple_command(:get, 'v2alpha1/{+name}/operations', options)
|
706
713
|
command.response_representation = Google::Apis::TpuV2alpha1::ListOperationsResponse::Representation
|
707
714
|
command.response_class = Google::Apis::TpuV2alpha1::ListOperationsResponse
|
@@ -709,6 +716,7 @@ module Google
|
|
709
716
|
command.query['filter'] = filter unless filter.nil?
|
710
717
|
command.query['pageSize'] = page_size unless page_size.nil?
|
711
718
|
command.query['pageToken'] = page_token unless page_token.nil?
|
719
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
712
720
|
command.query['fields'] = fields unless fields.nil?
|
713
721
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
714
722
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tpu_v2alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.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_v2alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.47.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:
|