google-apis-redis_v1beta1 0.66.0 → 0.68.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: 5ddd5df3ada247f51794920eb67f27a73896ec574b359defdcf24bfc7cd4e4c4
4
- data.tar.gz: f9ccdb5ba3622c79d8506b3ae18cb7214130fe963623487c30eaf4fe7485ae28
3
+ metadata.gz: 33539a2e245570d7717b2c618d8d4c417617917d4ca32a6fef643974292a47ed
4
+ data.tar.gz: 7bc53e46e50ccddebd36a3189cead1cc2349c81f0fe7b9c8466b498b09b459b3
5
5
  SHA512:
6
- metadata.gz: b1f7789eca86773320c8e473bd95e137ebad9d9b6143ce17057dec378fbfd1413f1ff094699ab650ef7ea0a2330ca13300ae5cef9f82ee2cbeb33dfdebec928a
7
- data.tar.gz: c3f90f370da59a55a31ce9fab3a53a2962a5f0c5b2675ad1aaeb01075dba0ca499d255f414a84c7695acf90c9419f6cd97920153baf7e767e39500753441015c
6
+ metadata.gz: 5578d80b7ff39f76c23084dc6ab6516b1e7330dadd9161974d50ffb84c525cd2e08d2c87d6967409762525a36ad3598185305fa6a410e942e6198e589bf41f18
7
+ data.tar.gz: 465d0a2f221dbe9bb018d4a20d2494b8d4b64267f3dd329bd77721a2776375db9d7ebb478e0b1fa0f795c5358b98c4389c8b0e3acac44e4a95b544d937435ed7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.68.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250807
6
+
7
+ ### v0.67.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250729
10
+
3
11
  ### v0.66.0 (2025-07-27)
4
12
 
5
13
  * 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::RedisV1beta1::BackupConfiguration]
379
+ attr_accessor :backup_configuration
380
+
381
+ # A backup run.
382
+ # Corresponds to the JSON property `backupRun`
383
+ # @return [Google::Apis::RedisV1beta1::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::RedisV1beta1::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::RedisV1beta1::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: 11
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::RedisV1beta1::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.
@@ -1093,12 +1150,23 @@ module Google
1093
1150
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
1094
1151
  attr_accessor :resource_metadata
1095
1152
 
1153
+ # Optional. If true, the feed won't be ingested by DB Center. This indicates
1154
+ # that the feed is intentionally skipped. For example, BackupDR feeds are only
1155
+ # needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
1156
+ # Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
1157
+ # be skipped.
1158
+ # Corresponds to the JSON property `skipIngestion`
1159
+ # @return [Boolean]
1160
+ attr_accessor :skip_ingestion
1161
+ alias_method :skip_ingestion?, :skip_ingestion
1162
+
1096
1163
  def initialize(**args)
1097
1164
  update!(**args)
1098
1165
  end
1099
1166
 
1100
1167
  # Update properties of this object
1101
1168
  def update!(**args)
1169
+ @backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
1102
1170
  @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
1103
1171
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
1104
1172
  @feed_type = args[:feed_type] if args.key?(:feed_type)
@@ -1107,6 +1175,7 @@ module Google
1107
1175
  @resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
1108
1176
  @resource_id = args[:resource_id] if args.key?(:resource_id)
1109
1177
  @resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
1178
+ @skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
1110
1179
  end
1111
1180
  end
1112
1181
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1beta1
18
18
  # Version of the google-apis-redis_v1beta1 gem
19
- GEM_VERSION = "0.66.0"
19
+ GEM_VERSION = "0.68.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 = "20250807"
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::RedisV1beta1::BackupConfiguration, decorator: Google::Apis::RedisV1beta1::BackupConfiguration::Representation
663
+
664
+ property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1beta1::BackupRun, decorator: Google::Apis::RedisV1beta1::BackupRun::Representation
665
+
666
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::RedisV1beta1::BackupDrConfiguration, decorator: Google::Apis::RedisV1beta1::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::RedisV1beta1::DatabaseResourceId, decorator: Google::Apis::RedisV1beta1::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::RedisV1beta1::BackupDrMetadata, decorator: Google::Apis::RedisV1beta1::BackupDrMetadata::Representation
870
+
847
871
  property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::RedisV1beta1::ConfigBasedSignalData, decorator: Google::Apis::RedisV1beta1::ConfigBasedSignalData::Representation
848
872
 
849
873
  property :feed_timestamp, as: 'feedTimestamp'
@@ -858,6 +882,7 @@ module Google
858
882
 
859
883
  property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::RedisV1beta1::DatabaseResourceMetadata, decorator: Google::Apis::RedisV1beta1::DatabaseResourceMetadata::Representation
860
884
 
885
+ property :skip_ingestion, as: 'skipIngestion'
861
886
  end
862
887
  end
863
888
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.66.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.68.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
63
63
  rdoc_options: []
64
64
  require_paths: