google-apis-gkebackup_v1 0.47.0 → 0.48.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: 222f0fa986c7422afc5b54807f0a23dc11ca1f9f40bddf5d934ae03d354dce8f
|
4
|
+
data.tar.gz: 00712642051e3eca9fc529eef8fef749aaa6118a4d10c201d0e8fff9a61e3007
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d58c0735d0ae9fbe19a948b0966d71a6daf836f5a01266ce4c8f626ab5e19cc0c905846974d7a476b76faebbf71fdcd9405a3775e8e5a2ad872b12b4fb35a9ee
|
7
|
+
data.tar.gz: ab8ab4c80140ab2b9cfdbe8be8db5eec36067b007eef2ddc7149de5b4c82753b740bda4e72d96496bf353dbc8d40d8aa15cf32313f27fe54c8b833e25cf01bb5
|
data/CHANGELOG.md
CHANGED
@@ -275,6 +275,13 @@ module Google
|
|
275
275
|
# @return [String]
|
276
276
|
attr_accessor :state_reason
|
277
277
|
|
278
|
+
# Stores information about troubleshooting doc for debugging a particular state
|
279
|
+
# of an operation (eg - backup/restore). This will be used by the end user to
|
280
|
+
# debug their operation failure scenario easily.
|
281
|
+
# Corresponds to the JSON property `troubleshootingInfo`
|
282
|
+
# @return [Google::Apis::GkebackupV1::TroubleshootingInfo]
|
283
|
+
attr_accessor :troubleshooting_info
|
284
|
+
|
278
285
|
# Output only. Server generated global unique identifier of [UUID4](https://en.
|
279
286
|
# wikipedia.org/wiki/Universally_unique_identifier)
|
280
287
|
# Corresponds to the JSON property `uid`
|
@@ -325,6 +332,7 @@ module Google
|
|
325
332
|
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
326
333
|
@state = args[:state] if args.key?(:state)
|
327
334
|
@state_reason = args[:state_reason] if args.key?(:state_reason)
|
335
|
+
@troubleshooting_info = args[:troubleshooting_info] if args.key?(:troubleshooting_info)
|
328
336
|
@uid = args[:uid] if args.key?(:uid)
|
329
337
|
@update_time = args[:update_time] if args.key?(:update_time)
|
330
338
|
@volume_count = args[:volume_count] if args.key?(:volume_count)
|
@@ -2347,6 +2355,13 @@ module Google
|
|
2347
2355
|
# @return [String]
|
2348
2356
|
attr_accessor :state_reason
|
2349
2357
|
|
2358
|
+
# Stores information about troubleshooting doc for debugging a particular state
|
2359
|
+
# of an operation (eg - backup/restore). This will be used by the end user to
|
2360
|
+
# debug their operation failure scenario easily.
|
2361
|
+
# Corresponds to the JSON property `troubleshootingInfo`
|
2362
|
+
# @return [Google::Apis::GkebackupV1::TroubleshootingInfo]
|
2363
|
+
attr_accessor :troubleshooting_info
|
2364
|
+
|
2350
2365
|
# Output only. Server generated global unique identifier of [UUID](https://en.
|
2351
2366
|
# wikipedia.org/wiki/Universally_unique_identifier) format.
|
2352
2367
|
# Corresponds to the JSON property `uid`
|
@@ -2390,6 +2405,7 @@ module Google
|
|
2390
2405
|
@restore_config = args[:restore_config] if args.key?(:restore_config)
|
2391
2406
|
@state = args[:state] if args.key?(:state)
|
2392
2407
|
@state_reason = args[:state_reason] if args.key?(:state_reason)
|
2408
|
+
@troubleshooting_info = args[:troubleshooting_info] if args.key?(:troubleshooting_info)
|
2393
2409
|
@uid = args[:uid] if args.key?(:uid)
|
2394
2410
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2395
2411
|
@volume_data_restore_policy_overrides = args[:volume_data_restore_policy_overrides] if args.key?(:volume_data_restore_policy_overrides)
|
@@ -3253,6 +3269,35 @@ module Google
|
|
3253
3269
|
end
|
3254
3270
|
end
|
3255
3271
|
|
3272
|
+
# Stores information about troubleshooting doc for debugging a particular state
|
3273
|
+
# of an operation (eg - backup/restore). This will be used by the end user to
|
3274
|
+
# debug their operation failure scenario easily.
|
3275
|
+
class TroubleshootingInfo
|
3276
|
+
include Google::Apis::Core::Hashable
|
3277
|
+
|
3278
|
+
# Output only. Unique code for each backup/restore operation failure message
|
3279
|
+
# which helps user identify the failure.
|
3280
|
+
# Corresponds to the JSON property `stateReasonCode`
|
3281
|
+
# @return [String]
|
3282
|
+
attr_accessor :state_reason_code
|
3283
|
+
|
3284
|
+
# Output only. URL for the troubleshooting doc which will help the user fix the
|
3285
|
+
# failing backup/restore operation.
|
3286
|
+
# Corresponds to the JSON property `stateReasonUri`
|
3287
|
+
# @return [String]
|
3288
|
+
attr_accessor :state_reason_uri
|
3289
|
+
|
3290
|
+
def initialize(**args)
|
3291
|
+
update!(**args)
|
3292
|
+
end
|
3293
|
+
|
3294
|
+
# Update properties of this object
|
3295
|
+
def update!(**args)
|
3296
|
+
@state_reason_code = args[:state_reason_code] if args.key?(:state_reason_code)
|
3297
|
+
@state_reason_uri = args[:state_reason_uri] if args.key?(:state_reason_uri)
|
3298
|
+
end
|
3299
|
+
end
|
3300
|
+
|
3256
3301
|
# Represents the backup of a specific persistent volume as a component of a
|
3257
3302
|
# Backup - both the record of the operation and a pointer to the underlying
|
3258
3303
|
# storage-specific artifacts.
|
@@ -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.48.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 = "20250723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -406,6 +406,12 @@ module Google
|
|
406
406
|
include Google::Apis::Core::JsonObjectSupport
|
407
407
|
end
|
408
408
|
|
409
|
+
class TroubleshootingInfo
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
409
415
|
class VolumeBackup
|
410
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
417
|
|
@@ -483,6 +489,8 @@ module Google
|
|
483
489
|
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
484
490
|
property :state, as: 'state'
|
485
491
|
property :state_reason, as: 'stateReason'
|
492
|
+
property :troubleshooting_info, as: 'troubleshootingInfo', class: Google::Apis::GkebackupV1::TroubleshootingInfo, decorator: Google::Apis::GkebackupV1::TroubleshootingInfo::Representation
|
493
|
+
|
486
494
|
property :uid, as: 'uid'
|
487
495
|
property :update_time, as: 'updateTime'
|
488
496
|
property :volume_count, as: 'volumeCount'
|
@@ -976,6 +984,8 @@ module Google
|
|
976
984
|
|
977
985
|
property :state, as: 'state'
|
978
986
|
property :state_reason, as: 'stateReason'
|
987
|
+
property :troubleshooting_info, as: 'troubleshootingInfo', class: Google::Apis::GkebackupV1::TroubleshootingInfo, decorator: Google::Apis::GkebackupV1::TroubleshootingInfo::Representation
|
988
|
+
|
979
989
|
property :uid, as: 'uid'
|
980
990
|
property :update_time, as: 'updateTime'
|
981
991
|
collection :volume_data_restore_policy_overrides, as: 'volumeDataRestorePolicyOverrides', class: Google::Apis::GkebackupV1::VolumeDataRestorePolicyOverride, decorator: Google::Apis::GkebackupV1::VolumeDataRestorePolicyOverride::Representation
|
@@ -1170,6 +1180,14 @@ module Google
|
|
1170
1180
|
end
|
1171
1181
|
end
|
1172
1182
|
|
1183
|
+
class TroubleshootingInfo
|
1184
|
+
# @private
|
1185
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1186
|
+
property :state_reason_code, as: 'stateReasonCode'
|
1187
|
+
property :state_reason_uri, as: 'stateReasonUri'
|
1188
|
+
end
|
1189
|
+
end
|
1190
|
+
|
1173
1191
|
class VolumeBackup
|
1174
1192
|
# @private
|
1175
1193
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.48.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.48.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:
|