google-apis-redis_v1beta1 0.65.0 → 0.67.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: dffc9f867a7b5e8e7e75d0dce4f5161592514555cb57d59da723bdc4dda872a5
|
4
|
+
data.tar.gz: 0b979159fd538adf3a3d5180b46dbf95828ac65d669852a6b581afe9f4a831ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32352ed7be47ce79f7e75ff68e05b84bdb68989b56d55323e77527d36987d2c1e820e871231a53554c66b1dd517d8b34e6dc55e961b250bfc54c76d06b915e73
|
7
|
+
data.tar.gz: 7373f98d596c2e4cbbacf52b0116b088a02012f4a06e756b30c0810b39b935c83015570214729a2789403122d9d1799a290ead375027ef1c257ce1545614e1f4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-redis_v1beta1
|
2
2
|
|
3
|
+
### v0.67.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250729
|
6
|
+
|
7
|
+
### v0.66.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250718
|
10
|
+
|
3
11
|
### v0.65.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250701
|
@@ -347,6 +347,78 @@ module Google
|
|
347
347
|
end
|
348
348
|
end
|
349
349
|
|
350
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
351
|
+
# database resource.
|
352
|
+
class BackupDrConfiguration
|
353
|
+
include Google::Apis::Core::Hashable
|
354
|
+
|
355
|
+
# Indicates if the resource is managed by BackupDR.
|
356
|
+
# Corresponds to the JSON property `backupdrManaged`
|
357
|
+
# @return [Boolean]
|
358
|
+
attr_accessor :backupdr_managed
|
359
|
+
alias_method :backupdr_managed?, :backupdr_managed
|
360
|
+
|
361
|
+
def initialize(**args)
|
362
|
+
update!(**args)
|
363
|
+
end
|
364
|
+
|
365
|
+
# Update properties of this object
|
366
|
+
def update!(**args)
|
367
|
+
@backupdr_managed = args[:backupdr_managed] if args.key?(:backupdr_managed)
|
368
|
+
end
|
369
|
+
end
|
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
|
+
|
350
422
|
# Backup is consisted of multiple backup files.
|
351
423
|
class BackupFile
|
352
424
|
include Google::Apis::Core::Hashable
|
@@ -616,6 +688,18 @@ module Google
|
|
616
688
|
# @return [Fixnum]
|
617
689
|
attr_accessor :replica_count
|
618
690
|
|
691
|
+
# Optional. Output only. Reserved for future use.
|
692
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
693
|
+
# @return [Boolean]
|
694
|
+
attr_accessor :satisfies_pzi
|
695
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
696
|
+
|
697
|
+
# Optional. Output only. Reserved for future use.
|
698
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
699
|
+
# @return [Boolean]
|
700
|
+
attr_accessor :satisfies_pzs
|
701
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
702
|
+
|
619
703
|
# Optional. Number of shards for the Redis cluster.
|
620
704
|
# Corresponds to the JSON property `shardCount`
|
621
705
|
# @return [Fixnum]
|
@@ -692,6 +776,8 @@ module Google
|
|
692
776
|
@psc_service_attachments = args[:psc_service_attachments] if args.key?(:psc_service_attachments)
|
693
777
|
@redis_configs = args[:redis_configs] if args.key?(:redis_configs)
|
694
778
|
@replica_count = args[:replica_count] if args.key?(:replica_count)
|
779
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
780
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
695
781
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
696
782
|
@simulate_maintenance_event = args[:simulate_maintenance_event] if args.key?(:simulate_maintenance_event)
|
697
783
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
@@ -1012,10 +1098,16 @@ module Google
|
|
1012
1098
|
end
|
1013
1099
|
|
1014
1100
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
1015
|
-
# database resource level events into Condor platform. Next ID:
|
1101
|
+
# database resource level events into Condor platform. Next ID: 10
|
1016
1102
|
class DatabaseResourceFeed
|
1017
1103
|
include Google::Apis::Core::Hashable
|
1018
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
|
+
|
1019
1111
|
# Config based signal data. This is used to send signals to Condor which are
|
1020
1112
|
# based on the DB level configurations. These will be used to send signals for
|
1021
1113
|
# self managed databases.
|
@@ -1053,7 +1145,7 @@ module Google
|
|
1053
1145
|
# @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
|
1054
1146
|
attr_accessor :resource_id
|
1055
1147
|
|
1056
|
-
# Common model for database resource instance metadata. Next ID:
|
1148
|
+
# Common model for database resource instance metadata. Next ID: 26
|
1057
1149
|
# Corresponds to the JSON property `resourceMetadata`
|
1058
1150
|
# @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
|
1059
1151
|
attr_accessor :resource_metadata
|
@@ -1064,6 +1156,7 @@ module Google
|
|
1064
1156
|
|
1065
1157
|
# Update properties of this object
|
1066
1158
|
def update!(**args)
|
1159
|
+
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
1067
1160
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
1068
1161
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
1069
1162
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
@@ -1238,7 +1331,7 @@ module Google
|
|
1238
1331
|
end
|
1239
1332
|
end
|
1240
1333
|
|
1241
|
-
# Common model for database resource instance metadata. Next ID:
|
1334
|
+
# Common model for database resource instance metadata. Next ID: 26
|
1242
1335
|
class DatabaseResourceMetadata
|
1243
1336
|
include Google::Apis::Core::Hashable
|
1244
1337
|
|
@@ -1257,6 +1350,12 @@ module Google
|
|
1257
1350
|
# @return [Google::Apis::RedisV1beta1::BackupRun]
|
1258
1351
|
attr_accessor :backup_run
|
1259
1352
|
|
1353
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
1354
|
+
# database resource.
|
1355
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
1356
|
+
# @return [Google::Apis::RedisV1beta1::BackupDrConfiguration]
|
1357
|
+
attr_accessor :backupdr_configuration
|
1358
|
+
|
1260
1359
|
# The creation time of the resource, i.e. the time when resource is created and
|
1261
1360
|
# recorded in partner service.
|
1262
1361
|
# Corresponds to the JSON property `creationTime`
|
@@ -1385,6 +1484,7 @@ module Google
|
|
1385
1484
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
1386
1485
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
1387
1486
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
1487
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
1388
1488
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
1389
1489
|
@current_state = args[:current_state] if args.key?(:current_state)
|
1390
1490
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.67.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
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class BackupDrConfiguration
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class BackupDrMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class BackupFile
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -637,6 +649,29 @@ module Google
|
|
637
649
|
end
|
638
650
|
end
|
639
651
|
|
652
|
+
class BackupDrConfiguration
|
653
|
+
# @private
|
654
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
655
|
+
property :backupdr_managed, as: 'backupdrManaged'
|
656
|
+
end
|
657
|
+
end
|
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
|
+
|
640
675
|
class BackupFile
|
641
676
|
# @private
|
642
677
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -715,6 +750,8 @@ module Google
|
|
715
750
|
|
716
751
|
hash :redis_configs, as: 'redisConfigs'
|
717
752
|
property :replica_count, as: 'replicaCount'
|
753
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
754
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
718
755
|
property :shard_count, as: 'shardCount'
|
719
756
|
property :simulate_maintenance_event, as: 'simulateMaintenanceEvent'
|
720
757
|
property :size_gb, as: 'sizeGb'
|
@@ -829,6 +866,8 @@ module Google
|
|
829
866
|
class DatabaseResourceFeed
|
830
867
|
# @private
|
831
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
|
+
|
832
871
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::RedisV1beta1::ConfigBasedSignalData, decorator: Google::Apis::RedisV1beta1::ConfigBasedSignalData::Representation
|
833
872
|
|
834
873
|
property :feed_timestamp, as: 'feedTimestamp'
|
@@ -887,6 +926,8 @@ module Google
|
|
887
926
|
|
888
927
|
property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1beta1::BackupRun, decorator: Google::Apis::RedisV1beta1::BackupRun::Representation
|
889
928
|
|
929
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::RedisV1beta1::BackupDrConfiguration, decorator: Google::Apis::RedisV1beta1::BackupDrConfiguration::Representation
|
930
|
+
|
890
931
|
property :creation_time, as: 'creationTime'
|
891
932
|
property :current_state, as: 'currentState'
|
892
933
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::RedisV1beta1::CustomMetadataData, decorator: Google::Apis::RedisV1beta1::CustomMetadataData::Representation
|
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.
|
4
|
+
version: 0.67.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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.67.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:
|