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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0efb62c0ce391c04529a1ada0d8c08040d07f39c261d8308590c2e0899c2c1f
4
- data.tar.gz: f935fc4f5ff063057b57629fb2bd4a0499c426807bc09989c354bab0d53cc0b4
3
+ metadata.gz: 42adca7aceb9e762fa6f61186ed28fda01163adcac4f1346ac9ff4911f1d41da
4
+ data.tar.gz: 61eb728df1539c0f1a1467bcc1b8d0b6161968bd1c2efcfd356fdf56b7557640
5
5
  SHA512:
6
- metadata.gz: a4574ff9c3655218e168ac57546fc2d4a5e43c30ead853f5b68f903a8acd5e2542d3b06b567d4263a8cb7a9393b3a7dbb8f6601ac766856695ae2020e314ce9b
7
- data.tar.gz: e0d29d7af34cf22cb3c9c5a3d53c83d840d6e3a030d6bfed29715de7b0e190a01c5e204082f54e886d7cd6920e0a96c04076c725a64a915309ddea14c2331e3d
6
+ metadata.gz: da9e1dfcb60360752bc5127debb7c78fae55c97cda282c27cd7ec40b91f6d74b3a6d6082a390e28ea54db9f1ae7dcc06e6d3214d4987537ca85c76fcdb2e9320
7
+ data.tar.gz: fdb8485e3fcaf35d77b8d0ead7d8add4b87cc51a57724ab340a7d4a71ad18ad6c8da6d11367fe2bfa3475036bbbe841b90a817368688fafd4ef627eee0a715fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.75.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250729
6
+
3
7
  ### v0.74.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250718
@@ -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: 9
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.74.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 = "20250718"
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.74.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.74.0
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: