google-apis-gkebackup_v1 0.50.0 → 0.51.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: ab54790e136172d58389f946196a1f0a6338c5b12709e16f438ddfb0b21180df
|
4
|
+
data.tar.gz: d523e6d7b065c9e82243380b2d21db4e8d435c3830b591dd4f42948805032bcb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68ae1b8dbf1104c1432afcc69c4fdc30b50bf50757604f37d266ea742d61bd87d6e72e999fc49669343d40b7b8e781da6e765b1bd5519c0560666b232d046366
|
7
|
+
data.tar.gz: ce99a328fd195eac6f8121ed785aa292e0abae6cf0208be7e911233ef518df68d3b9b25e0f405a7eccea5451550343ab5902ab36a791de9eaff774ccadb567c4
|
data/CHANGELOG.md
CHANGED
@@ -191,8 +191,8 @@ module Google
|
|
191
191
|
attr_accessor :manual
|
192
192
|
alias_method :manual?, :manual
|
193
193
|
|
194
|
-
# Output only. The fully qualified name of the Backup. `projects/*/
|
195
|
-
# backupPlans/*/backups/*`
|
194
|
+
# Output only. Identifier. The fully qualified name of the Backup. `projects/*/
|
195
|
+
# locations/*/backupPlans/*/backups/*`
|
196
196
|
# Corresponds to the JSON property `name`
|
197
197
|
# @return [String]
|
198
198
|
attr_accessor :name
|
@@ -620,8 +620,8 @@ module Google
|
|
620
620
|
# @return [String]
|
621
621
|
attr_accessor :last_successful_backup_time
|
622
622
|
|
623
|
-
# Output only. The full name of the BackupPlan resource. Format: `
|
624
|
-
# locations/*/backupPlans/*`
|
623
|
+
# Output only. Identifier. The full name of the BackupPlan resource. Format: `
|
624
|
+
# projects/*/locations/*/backupPlans/*`
|
625
625
|
# Corresponds to the JSON property `name`
|
626
626
|
# @return [String]
|
627
627
|
attr_accessor :name
|
@@ -1339,6 +1339,13 @@ module Google
|
|
1339
1339
|
# @return [Array<Google::Apis::GkebackupV1::GoogleLongrunningOperation>]
|
1340
1340
|
attr_accessor :operations
|
1341
1341
|
|
1342
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
1343
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
1344
|
+
# when attempting to list all resources across all supported locations.
|
1345
|
+
# Corresponds to the JSON property `unreachable`
|
1346
|
+
# @return [Array<String>]
|
1347
|
+
attr_accessor :unreachable
|
1348
|
+
|
1342
1349
|
def initialize(**args)
|
1343
1350
|
update!(**args)
|
1344
1351
|
end
|
@@ -1347,6 +1354,7 @@ module Google
|
|
1347
1354
|
def update!(**args)
|
1348
1355
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1349
1356
|
@operations = args[:operations] if args.key?(:operations)
|
1357
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1350
1358
|
end
|
1351
1359
|
end
|
1352
1360
|
|
@@ -2316,8 +2324,8 @@ module Google
|
|
2316
2324
|
# @return [Hash<String,String>]
|
2317
2325
|
attr_accessor :labels
|
2318
2326
|
|
2319
|
-
# Output only. The full name of the Restore resource. Format: `
|
2320
|
-
# locations/*/restorePlans/*/restores/*`
|
2327
|
+
# Output only. Identifier. The full name of the Restore resource. Format: `
|
2328
|
+
# projects/*/locations/*/restorePlans/*/restores/*`
|
2321
2329
|
# Corresponds to the JSON property `name`
|
2322
2330
|
# @return [String]
|
2323
2331
|
attr_accessor :name
|
@@ -2685,8 +2693,8 @@ module Google
|
|
2685
2693
|
# @return [Hash<String,String>]
|
2686
2694
|
attr_accessor :labels
|
2687
2695
|
|
2688
|
-
# Output only. The full name of the RestorePlan resource. Format: `
|
2689
|
-
# locations/*/restorePlans/*`.
|
2696
|
+
# Output only. Identifier. The full name of the RestorePlan resource. Format: `
|
2697
|
+
# projects/*/locations/*/restorePlans/*`.
|
2690
2698
|
# Corresponds to the JSON property `name`
|
2691
2699
|
# @return [String]
|
2692
2700
|
attr_accessor :name
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkebackupV1
|
18
18
|
# Version of the google-apis-gkebackup_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.51.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
|
@@ -719,6 +719,7 @@ module Google
|
|
719
719
|
property :next_page_token, as: 'nextPageToken'
|
720
720
|
collection :operations, as: 'operations', class: Google::Apis::GkebackupV1::GoogleLongrunningOperation, decorator: Google::Apis::GkebackupV1::GoogleLongrunningOperation::Representation
|
721
721
|
|
722
|
+
collection :unreachable, as: 'unreachable'
|
722
723
|
end
|
723
724
|
end
|
724
725
|
|
@@ -621,8 +621,8 @@ module Google
|
|
621
621
|
|
622
622
|
# Update a BackupPlan.
|
623
623
|
# @param [String] name
|
624
|
-
# Output only. The full name of the BackupPlan resource. Format: `
|
625
|
-
# locations/*/backupPlans/*`
|
624
|
+
# Output only. Identifier. The full name of the BackupPlan resource. Format: `
|
625
|
+
# projects/*/locations/*/backupPlans/*`
|
626
626
|
# @param [Google::Apis::GkebackupV1::BackupPlan] backup_plan_object
|
627
627
|
# @param [String] update_mask
|
628
628
|
# Optional. This is used to specify the fields to be overwritten in the
|
@@ -983,8 +983,8 @@ module Google
|
|
983
983
|
|
984
984
|
# Update a Backup.
|
985
985
|
# @param [String] name
|
986
|
-
# Output only. The fully qualified name of the Backup. `projects/*/
|
987
|
-
# backupPlans/*/backups/*`
|
986
|
+
# Output only. Identifier. The fully qualified name of the Backup. `projects/*/
|
987
|
+
# locations/*/backupPlans/*/backups/*`
|
988
988
|
# @param [Google::Apis::GkebackupV1::Backup] backup_object
|
989
989
|
# @param [String] update_mask
|
990
990
|
# Optional. This is used to specify the fields to be overwritten in the Backup
|
@@ -1416,6 +1416,13 @@ module Google
|
|
1416
1416
|
# The standard list page size.
|
1417
1417
|
# @param [String] page_token
|
1418
1418
|
# The standard list page token.
|
1419
|
+
# @param [Boolean] return_partial_success
|
1420
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1421
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1422
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1423
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1424
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1425
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1419
1426
|
# @param [String] fields
|
1420
1427
|
# Selector specifying which fields to include in a partial response.
|
1421
1428
|
# @param [String] quota_user
|
@@ -1433,7 +1440,7 @@ module Google
|
|
1433
1440
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1434
1441
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1435
1442
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1436
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1443
|
+
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)
|
1437
1444
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
1438
1445
|
command.response_representation = Google::Apis::GkebackupV1::GoogleLongrunningListOperationsResponse::Representation
|
1439
1446
|
command.response_class = Google::Apis::GkebackupV1::GoogleLongrunningListOperationsResponse
|
@@ -1441,6 +1448,7 @@ module Google
|
|
1441
1448
|
command.query['filter'] = filter unless filter.nil?
|
1442
1449
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1443
1450
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1451
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1444
1452
|
command.query['fields'] = fields unless fields.nil?
|
1445
1453
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1446
1454
|
execute_or_queue_command(command, &block)
|
@@ -1938,8 +1946,8 @@ module Google
|
|
1938
1946
|
|
1939
1947
|
# Update a RestorePlan.
|
1940
1948
|
# @param [String] name
|
1941
|
-
# Output only. The full name of the RestorePlan resource. Format: `
|
1942
|
-
# locations/*/restorePlans/*`.
|
1949
|
+
# Output only. Identifier. The full name of the RestorePlan resource. Format: `
|
1950
|
+
# projects/*/locations/*/restorePlans/*`.
|
1943
1951
|
# @param [Google::Apis::GkebackupV1::RestorePlan] restore_plan_object
|
1944
1952
|
# @param [String] update_mask
|
1945
1953
|
# Optional. This is used to specify the fields to be overwritten in the
|
@@ -2264,8 +2272,8 @@ module Google
|
|
2264
2272
|
|
2265
2273
|
# Update a Restore.
|
2266
2274
|
# @param [String] name
|
2267
|
-
# Output only. The full name of the Restore resource. Format: `
|
2268
|
-
# locations/*/restorePlans/*/restores/*`
|
2275
|
+
# Output only. Identifier. The full name of the Restore resource. Format: `
|
2276
|
+
# projects/*/locations/*/restorePlans/*/restores/*`
|
2269
2277
|
# @param [Google::Apis::GkebackupV1::Restore] restore_object
|
2270
2278
|
# @param [String] update_mask
|
2271
2279
|
# Optional. This is used to specify the fields to be overwritten in the Restore
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkebackup_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.51.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-gkebackup_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkebackup_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkebackup_v1/v0.51.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkebackup_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|