google-apis-redis_v1 0.73.0 → 0.74.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 +44 -2
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +17 -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: e0efb62c0ce391c04529a1ada0d8c08040d07f39c261d8308590c2e0899c2c1f
|
4
|
+
data.tar.gz: f935fc4f5ff063057b57629fb2bd4a0499c426807bc09989c354bab0d53cc0b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4574ff9c3655218e168ac57546fc2d4a5e43c30ead853f5b68f903a8acd5e2542d3b06b567d4263a8cb7a9393b3a7dbb8f6601ac766856695ae2020e314ce9b
|
7
|
+
data.tar.gz: e0d29d7af34cf22cb3c9c5a3d53c83d840d6e3a030d6bfed29715de7b0e190a01c5e204082f54e886d7cd6920e0a96c04076c725a64a915309ddea14c2331e3d
|
data/CHANGELOG.md
CHANGED
@@ -347,6 +347,27 @@ 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
|
+
|
350
371
|
# Backup is consisted of multiple backup files.
|
351
372
|
class BackupFile
|
352
373
|
include Google::Apis::Core::Hashable
|
@@ -616,6 +637,18 @@ module Google
|
|
616
637
|
# @return [Fixnum]
|
617
638
|
attr_accessor :replica_count
|
618
639
|
|
640
|
+
# Optional. Output only. Reserved for future use.
|
641
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
642
|
+
# @return [Boolean]
|
643
|
+
attr_accessor :satisfies_pzi
|
644
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
645
|
+
|
646
|
+
# Optional. Output only. Reserved for future use.
|
647
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
648
|
+
# @return [Boolean]
|
649
|
+
attr_accessor :satisfies_pzs
|
650
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
651
|
+
|
619
652
|
# Optional. Number of shards for the Redis cluster.
|
620
653
|
# Corresponds to the JSON property `shardCount`
|
621
654
|
# @return [Fixnum]
|
@@ -692,6 +725,8 @@ module Google
|
|
692
725
|
@psc_service_attachments = args[:psc_service_attachments] if args.key?(:psc_service_attachments)
|
693
726
|
@redis_configs = args[:redis_configs] if args.key?(:redis_configs)
|
694
727
|
@replica_count = args[:replica_count] if args.key?(:replica_count)
|
728
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
729
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
695
730
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
696
731
|
@simulate_maintenance_event = args[:simulate_maintenance_event] if args.key?(:simulate_maintenance_event)
|
697
732
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
@@ -1053,7 +1088,7 @@ module Google
|
|
1053
1088
|
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
1054
1089
|
attr_accessor :resource_id
|
1055
1090
|
|
1056
|
-
# Common model for database resource instance metadata. Next ID:
|
1091
|
+
# Common model for database resource instance metadata. Next ID: 26
|
1057
1092
|
# Corresponds to the JSON property `resourceMetadata`
|
1058
1093
|
# @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
|
1059
1094
|
attr_accessor :resource_metadata
|
@@ -1238,7 +1273,7 @@ module Google
|
|
1238
1273
|
end
|
1239
1274
|
end
|
1240
1275
|
|
1241
|
-
# Common model for database resource instance metadata. Next ID:
|
1276
|
+
# Common model for database resource instance metadata. Next ID: 26
|
1242
1277
|
class DatabaseResourceMetadata
|
1243
1278
|
include Google::Apis::Core::Hashable
|
1244
1279
|
|
@@ -1257,6 +1292,12 @@ module Google
|
|
1257
1292
|
# @return [Google::Apis::RedisV1::BackupRun]
|
1258
1293
|
attr_accessor :backup_run
|
1259
1294
|
|
1295
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
1296
|
+
# database resource.
|
1297
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
1298
|
+
# @return [Google::Apis::RedisV1::BackupDrConfiguration]
|
1299
|
+
attr_accessor :backupdr_configuration
|
1300
|
+
|
1260
1301
|
# The creation time of the resource, i.e. the time when resource is created and
|
1261
1302
|
# recorded in partner service.
|
1262
1303
|
# Corresponds to the JSON property `creationTime`
|
@@ -1385,6 +1426,7 @@ module Google
|
|
1385
1426
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
1386
1427
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
1387
1428
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
1429
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
1388
1430
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
1389
1431
|
@current_state = args[:current_state] if args.key?(:current_state)
|
1390
1432
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
@@ -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.74.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 = "20250718"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ 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
|
+
|
67
73
|
class BackupFile
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -637,6 +643,13 @@ module Google
|
|
637
643
|
end
|
638
644
|
end
|
639
645
|
|
646
|
+
class BackupDrConfiguration
|
647
|
+
# @private
|
648
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
649
|
+
property :backupdr_managed, as: 'backupdrManaged'
|
650
|
+
end
|
651
|
+
end
|
652
|
+
|
640
653
|
class BackupFile
|
641
654
|
# @private
|
642
655
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -715,6 +728,8 @@ module Google
|
|
715
728
|
|
716
729
|
hash :redis_configs, as: 'redisConfigs'
|
717
730
|
property :replica_count, as: 'replicaCount'
|
731
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
732
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
718
733
|
property :shard_count, as: 'shardCount'
|
719
734
|
property :simulate_maintenance_event, as: 'simulateMaintenanceEvent'
|
720
735
|
property :size_gb, as: 'sizeGb'
|
@@ -887,6 +902,8 @@ module Google
|
|
887
902
|
|
888
903
|
property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
|
889
904
|
|
905
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::RedisV1::BackupDrConfiguration, decorator: Google::Apis::RedisV1::BackupDrConfiguration::Representation
|
906
|
+
|
890
907
|
property :creation_time, as: 'creationTime'
|
891
908
|
property :current_state, as: 'currentState'
|
892
909
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::RedisV1::CustomMetadataData, decorator: Google::Apis::RedisV1::CustomMetadataData::Representation
|
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.74.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.74.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:
|