google-apis-storagebatchoperations_v1 0.4.0 → 0.6.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/storagebatchoperations_v1/classes.rb +8 -0
- data/lib/google/apis/storagebatchoperations_v1/gem_version.rb +2 -2
- data/lib/google/apis/storagebatchoperations_v1/representations.rb +1 -0
- data/lib/google/apis/storagebatchoperations_v1/service.rb +11 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77e8042e41278810bae4ab164e9ace0d0f1f5810bfeff3b10aa402bcff840a0e
|
4
|
+
data.tar.gz: 47cc2c08f14b998923eba75b44d0bef4f13d488d5a11ba30a4573cdf85f3bcf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bf85b958285110ffc44643dfbd6c79cd177a628e63660196a994e3aaadc1ac9672ffdb49a5734bf248a8a537fa5bb2d41597975cd5a67d6b83affda9ec62f0c
|
7
|
+
data.tar.gz: 93f4d991416d7fc8cec470b4d12d2aa5b1bfc8300f87c8967f4a1b0442fba10f1f33098d3b93ed399d67d61f24a0062b18cb1631af772ba7c03c106709951844
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-storagebatchoperations_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250924
|
6
|
+
|
7
|
+
### v0.5.0 (2025-09-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250910
|
10
|
+
|
3
11
|
### v0.4.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250813
|
@@ -426,6 +426,13 @@ module Google
|
|
426
426
|
# @return [Array<Google::Apis::StoragebatchoperationsV1::Operation>]
|
427
427
|
attr_accessor :operations
|
428
428
|
|
429
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
430
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
431
|
+
# when attempting to list all resources across all supported locations.
|
432
|
+
# Corresponds to the JSON property `unreachable`
|
433
|
+
# @return [Array<String>]
|
434
|
+
attr_accessor :unreachable
|
435
|
+
|
429
436
|
def initialize(**args)
|
430
437
|
update!(**args)
|
431
438
|
end
|
@@ -434,6 +441,7 @@ module Google
|
|
434
441
|
def update!(**args)
|
435
442
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
436
443
|
@operations = args[:operations] if args.key?(:operations)
|
444
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
437
445
|
end
|
438
446
|
end
|
439
447
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StoragebatchoperationsV1
|
18
18
|
# Version of the google-apis-storagebatchoperations_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.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 = "20250924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -297,6 +297,7 @@ module Google
|
|
297
297
|
property :next_page_token, as: 'nextPageToken'
|
298
298
|
collection :operations, as: 'operations', class: Google::Apis::StoragebatchoperationsV1::Operation, decorator: Google::Apis::StoragebatchoperationsV1::Operation::Representation
|
299
299
|
|
300
|
+
collection :unreachable, as: 'unreachable'
|
300
301
|
end
|
301
302
|
end
|
302
303
|
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
89
|
+
# field which is primarily intended for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -432,6 +432,13 @@ module Google
|
|
432
432
|
# The standard list page size.
|
433
433
|
# @param [String] page_token
|
434
434
|
# The standard list page token.
|
435
|
+
# @param [Boolean] return_partial_success
|
436
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
437
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
438
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
439
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
440
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
441
|
+
# explicitly documented otherwise in service or product specific documentation.
|
435
442
|
# @param [String] fields
|
436
443
|
# Selector specifying which fields to include in a partial response.
|
437
444
|
# @param [String] quota_user
|
@@ -449,7 +456,7 @@ module Google
|
|
449
456
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
450
457
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
451
458
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
452
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
459
|
+
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)
|
453
460
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
454
461
|
command.response_representation = Google::Apis::StoragebatchoperationsV1::ListOperationsResponse::Representation
|
455
462
|
command.response_class = Google::Apis::StoragebatchoperationsV1::ListOperationsResponse
|
@@ -457,6 +464,7 @@ module Google
|
|
457
464
|
command.query['filter'] = filter unless filter.nil?
|
458
465
|
command.query['pageSize'] = page_size unless page_size.nil?
|
459
466
|
command.query['pageToken'] = page_token unless page_token.nil?
|
467
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
460
468
|
command.query['fields'] = fields unless fields.nil?
|
461
469
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
462
470
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-storagebatchoperations_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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-storagebatchoperations_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storagebatchoperations_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storagebatchoperations_v1/v0.6.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagebatchoperations_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|