google-apis-redis_v1 0.74.0 → 0.75.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 +4 -0
- data/lib/google/apis/redis_v1/classes.rb +59 -1
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +24 -0
- 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: 42adca7aceb9e762fa6f61186ed28fda01163adcac4f1346ac9ff4911f1d41da
|
4
|
+
data.tar.gz: 61eb728df1539c0f1a1467bcc1b8d0b6161968bd1c2efcfd356fdf56b7557640
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da9e1dfcb60360752bc5127debb7c78fae55c97cda282c27cd7ec40b91f6d74b3a6d6082a390e28ea54db9f1ae7dcc06e6d3214d4987537ca85c76fcdb2e9320
|
7
|
+
data.tar.gz: fdb8485e3fcaf35d77b8d0ead7d8add4b87cc51a57724ab340a7d4a71ad18ad6c8da6d11367fe2bfa3475036bbbe841b90a817368688fafd4ef627eee0a715fb
|
data/CHANGELOG.md
CHANGED
@@ -368,6 +368,57 @@ module Google
|
|
368
368
|
end
|
369
369
|
end
|
370
370
|
|
371
|
+
# BackupDRMetadata contains information about the backup and disaster recovery
|
372
|
+
# metadata of a database resource.
|
373
|
+
class BackupDrMetadata
|
374
|
+
include Google::Apis::Core::Hashable
|
375
|
+
|
376
|
+
# Configuration for automatic backups
|
377
|
+
# Corresponds to the JSON property `backupConfiguration`
|
378
|
+
# @return [Google::Apis::RedisV1::BackupConfiguration]
|
379
|
+
attr_accessor :backup_configuration
|
380
|
+
|
381
|
+
# A backup run.
|
382
|
+
# Corresponds to the JSON property `backupRun`
|
383
|
+
# @return [Google::Apis::RedisV1::BackupRun]
|
384
|
+
attr_accessor :backup_run
|
385
|
+
|
386
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
387
|
+
# database resource.
|
388
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
389
|
+
# @return [Google::Apis::RedisV1::BackupDrConfiguration]
|
390
|
+
attr_accessor :backupdr_configuration
|
391
|
+
|
392
|
+
# Required. Full resource name of this instance.
|
393
|
+
# Corresponds to the JSON property `fullResourceName`
|
394
|
+
# @return [String]
|
395
|
+
attr_accessor :full_resource_name
|
396
|
+
|
397
|
+
# Required. Last time backup configuration was refreshed.
|
398
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
399
|
+
# @return [String]
|
400
|
+
attr_accessor :last_refresh_time
|
401
|
+
|
402
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
403
|
+
# Corresponds to the JSON property `resourceId`
|
404
|
+
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
405
|
+
attr_accessor :resource_id
|
406
|
+
|
407
|
+
def initialize(**args)
|
408
|
+
update!(**args)
|
409
|
+
end
|
410
|
+
|
411
|
+
# Update properties of this object
|
412
|
+
def update!(**args)
|
413
|
+
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
414
|
+
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
415
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
416
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
417
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
418
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
419
|
+
end
|
420
|
+
end
|
421
|
+
|
371
422
|
# Backup is consisted of multiple backup files.
|
372
423
|
class BackupFile
|
373
424
|
include Google::Apis::Core::Hashable
|
@@ -1047,10 +1098,16 @@ module Google
|
|
1047
1098
|
end
|
1048
1099
|
|
1049
1100
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
1050
|
-
# database resource level events into Condor platform. Next ID:
|
1101
|
+
# database resource level events into Condor platform. Next ID: 10
|
1051
1102
|
class DatabaseResourceFeed
|
1052
1103
|
include Google::Apis::Core::Hashable
|
1053
1104
|
|
1105
|
+
# BackupDRMetadata contains information about the backup and disaster recovery
|
1106
|
+
# metadata of a database resource.
|
1107
|
+
# Corresponds to the JSON property `backupdrMetadata`
|
1108
|
+
# @return [Google::Apis::RedisV1::BackupDrMetadata]
|
1109
|
+
attr_accessor :backupdr_metadata
|
1110
|
+
|
1054
1111
|
# Config based signal data. This is used to send signals to Condor which are
|
1055
1112
|
# based on the DB level configurations. These will be used to send signals for
|
1056
1113
|
# self managed databases.
|
@@ -1099,6 +1156,7 @@ module Google
|
|
1099
1156
|
|
1100
1157
|
# Update properties of this object
|
1101
1158
|
def update!(**args)
|
1159
|
+
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
1102
1160
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
1103
1161
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
1104
1162
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RedisV1
|
18
18
|
# Version of the google-apis-redis_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.75.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 = "20250729"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class BackupDrMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class BackupFile
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -650,6 +656,22 @@ module Google
|
|
650
656
|
end
|
651
657
|
end
|
652
658
|
|
659
|
+
class BackupDrMetadata
|
660
|
+
# @private
|
661
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
662
|
+
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::RedisV1::BackupConfiguration, decorator: Google::Apis::RedisV1::BackupConfiguration::Representation
|
663
|
+
|
664
|
+
property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
|
665
|
+
|
666
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::RedisV1::BackupDrConfiguration, decorator: Google::Apis::RedisV1::BackupDrConfiguration::Representation
|
667
|
+
|
668
|
+
property :full_resource_name, as: 'fullResourceName'
|
669
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
670
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
|
671
|
+
|
672
|
+
end
|
673
|
+
end
|
674
|
+
|
653
675
|
class BackupFile
|
654
676
|
# @private
|
655
677
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -844,6 +866,8 @@ module Google
|
|
844
866
|
class DatabaseResourceFeed
|
845
867
|
# @private
|
846
868
|
class Representation < Google::Apis::Core::JsonRepresentation
|
869
|
+
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::RedisV1::BackupDrMetadata, decorator: Google::Apis::RedisV1::BackupDrMetadata::Representation
|
870
|
+
|
847
871
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::RedisV1::ConfigBasedSignalData, decorator: Google::Apis::RedisV1::ConfigBasedSignalData::Representation
|
848
872
|
|
849
873
|
property :feed_timestamp, as: 'feedTimestamp'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-redis_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.75.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-redis_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.75.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|