google-apis-backupdr_v1 0.41.0 → 0.42.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: 7a43f13bf95486ba39fd02c0af3de0f44a860971b2a0cc99b0cf63d8e199a511
|
4
|
+
data.tar.gz: ef23456c4977ae588d2ef658e95ef15b81d8313c9853423309ec3081f70cd91d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7a4614c093876212fc19b6596eb92319d470eb3b6f07d3b92e8b07f574c108e364727e1fad58afb35589fd82c92a872a2db0b6d421635673abf51342e1074f7
|
7
|
+
data.tar.gz: 684735ed8ddc023a4c7615ae82bf0b038aa22b9fb397a8a1c36a27d894e35de35fc6ec429564096e0b9232eb8fcc7d2d76fc9e2aa07b459815e3f23154a8217d
|
data/CHANGELOG.md
CHANGED
@@ -3870,6 +3870,13 @@ module Google
|
|
3870
3870
|
# @return [Array<Google::Apis::BackupdrV1::Operation>]
|
3871
3871
|
attr_accessor :operations
|
3872
3872
|
|
3873
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
3874
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
3875
|
+
# when attempting to list all resources across all supported locations.
|
3876
|
+
# Corresponds to the JSON property `unreachable`
|
3877
|
+
# @return [Array<String>]
|
3878
|
+
attr_accessor :unreachable
|
3879
|
+
|
3873
3880
|
def initialize(**args)
|
3874
3881
|
update!(**args)
|
3875
3882
|
end
|
@@ -3878,6 +3885,7 @@ module Google
|
|
3878
3885
|
def update!(**args)
|
3879
3886
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3880
3887
|
@operations = args[:operations] if args.key?(:operations)
|
3888
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3881
3889
|
end
|
3882
3890
|
end
|
3883
3891
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BackupdrV1
|
18
18
|
# Version of the google-apis-backupdr_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.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 = "20251001"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1690,6 +1690,7 @@ module Google
|
|
1690
1690
|
property :next_page_token, as: 'nextPageToken'
|
1691
1691
|
collection :operations, as: 'operations', class: Google::Apis::BackupdrV1::Operation, decorator: Google::Apis::BackupdrV1::Operation::Representation
|
1692
1692
|
|
1693
|
+
collection :unreachable, as: 'unreachable'
|
1693
1694
|
end
|
1694
1695
|
end
|
1695
1696
|
|
@@ -2240,6 +2240,13 @@ module Google
|
|
2240
2240
|
# The standard list page size.
|
2241
2241
|
# @param [String] page_token
|
2242
2242
|
# The standard list page token.
|
2243
|
+
# @param [Boolean] return_partial_success
|
2244
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2245
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2246
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2247
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2248
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2249
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2243
2250
|
# @param [String] fields
|
2244
2251
|
# Selector specifying which fields to include in a partial response.
|
2245
2252
|
# @param [String] quota_user
|
@@ -2257,7 +2264,7 @@ module Google
|
|
2257
2264
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2258
2265
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2259
2266
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2260
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2267
|
+
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)
|
2261
2268
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
2262
2269
|
command.response_representation = Google::Apis::BackupdrV1::ListOperationsResponse::Representation
|
2263
2270
|
command.response_class = Google::Apis::BackupdrV1::ListOperationsResponse
|
@@ -2265,6 +2272,7 @@ module Google
|
|
2265
2272
|
command.query['filter'] = filter unless filter.nil?
|
2266
2273
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2267
2274
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2275
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2268
2276
|
command.query['fields'] = fields unless fields.nil?
|
2269
2277
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2270
2278
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-backupdr_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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-backupdr_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.42.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|