google-apis-tpu_v2 0.19.0 → 0.20.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: ff8e3bd5493db521039e9717ce5935edd6c1561502273beb6c80db14628df044
|
4
|
+
data.tar.gz: a74b0f265666a00dc509c15ccb370c3e25330620ae6cfe4d03fd0fe9f8376918
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b4651bc883ea4771e9bfd1ff6d89d016e2b1bcd956b54a13d9e0772b1f8a5859b1f80137fdc03b3a104e2c0ff54eacaac89882a6a6ed1ac7564251b5bedffd6
|
7
|
+
data.tar.gz: 71e94b9e6937fc075ac93da6b39a3ec21582ce8f150c5b4ac1923203b2bee95a2ea7e959fdb0f34586936da619993e380409daed4e984eebc5594c0a940740f9
|
data/CHANGELOG.md
CHANGED
@@ -563,6 +563,13 @@ module Google
|
|
563
563
|
# @return [Array<Google::Apis::TpuV2::Operation>]
|
564
564
|
attr_accessor :operations
|
565
565
|
|
566
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
567
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
568
|
+
# when attempting to list all resources across all supported locations.
|
569
|
+
# Corresponds to the JSON property `unreachable`
|
570
|
+
# @return [Array<String>]
|
571
|
+
attr_accessor :unreachable
|
572
|
+
|
566
573
|
def initialize(**args)
|
567
574
|
update!(**args)
|
568
575
|
end
|
@@ -571,6 +578,7 @@ module Google
|
|
571
578
|
def update!(**args)
|
572
579
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
573
580
|
@operations = args[:operations] if args.key?(:operations)
|
581
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
574
582
|
end
|
575
583
|
end
|
576
584
|
|
@@ -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.20.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
|
@@ -538,6 +538,7 @@ module Google
|
|
538
538
|
property :next_page_token, as: 'nextPageToken'
|
539
539
|
collection :operations, as: 'operations', class: Google::Apis::TpuV2::Operation, decorator: Google::Apis::TpuV2::Operation::Representation
|
540
540
|
|
541
|
+
collection :unreachable, as: 'unreachable'
|
541
542
|
end
|
542
543
|
end
|
543
544
|
|
@@ -612,6 +612,13 @@ module Google
|
|
612
612
|
# The standard list page size.
|
613
613
|
# @param [String] page_token
|
614
614
|
# The standard list page token.
|
615
|
+
# @param [Boolean] return_partial_success
|
616
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
617
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
618
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
619
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
620
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
621
|
+
# explicitly documented otherwise in service or product specific documentation.
|
615
622
|
# @param [String] fields
|
616
623
|
# Selector specifying which fields to include in a partial response.
|
617
624
|
# @param [String] quota_user
|
@@ -629,7 +636,7 @@ module Google
|
|
629
636
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
630
637
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
631
638
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
632
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
639
|
+
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)
|
633
640
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
634
641
|
command.response_representation = Google::Apis::TpuV2::ListOperationsResponse::Representation
|
635
642
|
command.response_class = Google::Apis::TpuV2::ListOperationsResponse
|
@@ -637,6 +644,7 @@ module Google
|
|
637
644
|
command.query['filter'] = filter unless filter.nil?
|
638
645
|
command.query['pageSize'] = page_size unless page_size.nil?
|
639
646
|
command.query['pageToken'] = page_token unless page_token.nil?
|
647
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
640
648
|
command.query['fields'] = fields unless fields.nil?
|
641
649
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
642
650
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.20.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_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2/v0.20.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|