google-apis-redis_v1 0.57.0 → 0.58.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 +5 -0
- data/lib/google/apis/redis_v1/classes.rb +163 -46
- data/lib/google/apis/redis_v1/gem_version.rb +3 -3
- data/lib/google/apis/redis_v1/representations.rb +66 -13
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: caf8c6de7c21a53e73a79476e0dd7d1bb07cc2e2bbd441d939d408b5edd7d940
|
|
4
|
+
data.tar.gz: 2d400afe439395b3365a9924027404b8176f17fe6d52e92187b9460d4e3696e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c75b7a6e081263a0152712c77b3d40025304843b3fb06401a1b2bb0cdcd8952c8eee16d915edc406878a75c864b86f89591f5e844bdbca3f1318a9bddd932dff
|
|
7
|
+
data.tar.gz: 1f904dc2439b4fb09fc00e31e442324104fdc1c837bd97223f13bfe22d3dfd047ee2c6306904b4407bc03254d47889569d9d5128f376ffe95e77f6f356fd0536
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-redis_v1
|
|
2
2
|
|
|
3
|
+
### v0.58.0 (2024-08-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240812
|
|
6
|
+
* Regenerated using generator version 0.15.1
|
|
7
|
+
|
|
3
8
|
### v0.57.0 (2024-07-25)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240711
|
|
@@ -218,6 +218,11 @@ module Google
|
|
|
218
218
|
# @return [String]
|
|
219
219
|
attr_accessor :create_time
|
|
220
220
|
|
|
221
|
+
# Cross cluster replication config.
|
|
222
|
+
# Corresponds to the JSON property `crossClusterReplicationConfig`
|
|
223
|
+
# @return [Google::Apis::RedisV1::CrossClusterReplicationConfig]
|
|
224
|
+
attr_accessor :cross_cluster_replication_config
|
|
225
|
+
|
|
221
226
|
# Optional. The delete operation will fail when the value is set to true.
|
|
222
227
|
# Corresponds to the JSON property `deletionProtectionEnabled`
|
|
223
228
|
# @return [Boolean]
|
|
@@ -276,7 +281,7 @@ module Google
|
|
|
276
281
|
# @return [Fixnum]
|
|
277
282
|
attr_accessor :replica_count
|
|
278
283
|
|
|
279
|
-
#
|
|
284
|
+
# Optional. Number of shards for the Redis cluster.
|
|
280
285
|
# Corresponds to the JSON property `shardCount`
|
|
281
286
|
# @return [Fixnum]
|
|
282
287
|
attr_accessor :shard_count
|
|
@@ -322,6 +327,7 @@ module Google
|
|
|
322
327
|
def update!(**args)
|
|
323
328
|
@authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
|
|
324
329
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
330
|
+
@cross_cluster_replication_config = args[:cross_cluster_replication_config] if args.key?(:cross_cluster_replication_config)
|
|
325
331
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
|
326
332
|
@discovery_endpoints = args[:discovery_endpoints] if args.key?(:discovery_endpoints)
|
|
327
333
|
@name = args[:name] if args.key?(:name)
|
|
@@ -399,16 +405,37 @@ module Google
|
|
|
399
405
|
end
|
|
400
406
|
end
|
|
401
407
|
|
|
402
|
-
#
|
|
403
|
-
|
|
404
|
-
# individual databases can be captured in custom metadata data
|
|
405
|
-
class CustomMetadataData
|
|
408
|
+
# Cross cluster replication config.
|
|
409
|
+
class CrossClusterReplicationConfig
|
|
406
410
|
include Google::Apis::Core::Hashable
|
|
407
411
|
|
|
408
|
-
#
|
|
409
|
-
# Corresponds to the JSON property `
|
|
410
|
-
# @return [
|
|
411
|
-
attr_accessor :
|
|
412
|
+
# The role of the cluster in cross cluster replication.
|
|
413
|
+
# Corresponds to the JSON property `clusterRole`
|
|
414
|
+
# @return [String]
|
|
415
|
+
attr_accessor :cluster_role
|
|
416
|
+
|
|
417
|
+
# An output only view of all the member clusters participating in the cross
|
|
418
|
+
# cluster replication.
|
|
419
|
+
# Corresponds to the JSON property `membership`
|
|
420
|
+
# @return [Google::Apis::RedisV1::Membership]
|
|
421
|
+
attr_accessor :membership
|
|
422
|
+
|
|
423
|
+
# Details of the remote cluster associated with this cluster in a cross cluster
|
|
424
|
+
# replication setup.
|
|
425
|
+
# Corresponds to the JSON property `primaryCluster`
|
|
426
|
+
# @return [Google::Apis::RedisV1::RemoteCluster]
|
|
427
|
+
attr_accessor :primary_cluster
|
|
428
|
+
|
|
429
|
+
# List of secondary clusters that are replicating from this primary cluster.
|
|
430
|
+
# This field is only set for a primary cluster.
|
|
431
|
+
# Corresponds to the JSON property `secondaryClusters`
|
|
432
|
+
# @return [Array<Google::Apis::RedisV1::RemoteCluster>]
|
|
433
|
+
attr_accessor :secondary_clusters
|
|
434
|
+
|
|
435
|
+
# Output only. The last time cross cluster replication config was updated.
|
|
436
|
+
# Corresponds to the JSON property `updateTime`
|
|
437
|
+
# @return [String]
|
|
438
|
+
attr_accessor :update_time
|
|
412
439
|
|
|
413
440
|
def initialize(**args)
|
|
414
441
|
update!(**args)
|
|
@@ -416,40 +443,25 @@ module Google
|
|
|
416
443
|
|
|
417
444
|
# Update properties of this object
|
|
418
445
|
def update!(**args)
|
|
419
|
-
@
|
|
446
|
+
@cluster_role = args[:cluster_role] if args.key?(:cluster_role)
|
|
447
|
+
@membership = args[:membership] if args.key?(:membership)
|
|
448
|
+
@primary_cluster = args[:primary_cluster] if args.key?(:primary_cluster)
|
|
449
|
+
@secondary_clusters = args[:secondary_clusters] if args.key?(:secondary_clusters)
|
|
450
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
420
451
|
end
|
|
421
452
|
end
|
|
422
453
|
|
|
423
|
-
#
|
|
424
|
-
#
|
|
425
|
-
|
|
454
|
+
# Any custom metadata associated with the resource. e.g. A spanner instance can
|
|
455
|
+
# have multiple databases with its own unique metadata. Information for these
|
|
456
|
+
# individual databases can be captured in custom metadata data
|
|
457
|
+
class CustomMetadataData
|
|
426
458
|
include Google::Apis::Core::Hashable
|
|
427
459
|
|
|
428
|
-
#
|
|
429
|
-
#
|
|
430
|
-
#
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
# A backup run.
|
|
434
|
-
# Corresponds to the JSON property `backupRun`
|
|
435
|
-
# @return [Google::Apis::RedisV1::BackupRun]
|
|
436
|
-
attr_accessor :backup_run
|
|
437
|
-
|
|
438
|
-
# Product specification for Condor resources.
|
|
439
|
-
# Corresponds to the JSON property `product`
|
|
440
|
-
# @return [Google::Apis::RedisV1::Product]
|
|
441
|
-
attr_accessor :product
|
|
442
|
-
|
|
443
|
-
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
|
444
|
-
# Corresponds to the JSON property `resourceId`
|
|
445
|
-
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
|
446
|
-
attr_accessor :resource_id
|
|
447
|
-
|
|
448
|
-
# Required. Database name. Resource name to follow CAIS resource_name format as
|
|
449
|
-
# noted here go/condor-common-datamodel
|
|
450
|
-
# Corresponds to the JSON property `resourceName`
|
|
451
|
-
# @return [String]
|
|
452
|
-
attr_accessor :resource_name
|
|
460
|
+
# Metadata for individual internal resources in an instance. e.g. spanner
|
|
461
|
+
# instance can have multiple databases with unique configuration.
|
|
462
|
+
# Corresponds to the JSON property `internalResourceMetadata`
|
|
463
|
+
# @return [Array<Google::Apis::RedisV1::InternalResourceMetadata>]
|
|
464
|
+
attr_accessor :internal_resource_metadata
|
|
453
465
|
|
|
454
466
|
def initialize(**args)
|
|
455
467
|
update!(**args)
|
|
@@ -457,11 +469,7 @@ module Google
|
|
|
457
469
|
|
|
458
470
|
# Update properties of this object
|
|
459
471
|
def update!(**args)
|
|
460
|
-
@
|
|
461
|
-
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
|
462
|
-
@product = args[:product] if args.key?(:product)
|
|
463
|
-
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
464
|
-
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
472
|
+
@internal_resource_metadata = args[:internal_resource_metadata] if args.key?(:internal_resource_metadata)
|
|
465
473
|
end
|
|
466
474
|
end
|
|
467
475
|
|
|
@@ -593,6 +601,11 @@ module Google
|
|
|
593
601
|
# @return [String]
|
|
594
602
|
attr_accessor :signal_id
|
|
595
603
|
|
|
604
|
+
# The severity of the signal, such as if it's a HIGH or LOW severity.
|
|
605
|
+
# Corresponds to the JSON property `signalSeverity`
|
|
606
|
+
# @return [String]
|
|
607
|
+
attr_accessor :signal_severity
|
|
608
|
+
|
|
596
609
|
# Required. Type of signal, for example, `AVAILABLE_IN_MULTIPLE_ZONES`, `
|
|
597
610
|
# LOGGING_MOST_ERRORS`, etc.
|
|
598
611
|
# Corresponds to the JSON property `signalType`
|
|
@@ -621,6 +634,7 @@ module Google
|
|
|
621
634
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
622
635
|
@signal_class = args[:signal_class] if args.key?(:signal_class)
|
|
623
636
|
@signal_id = args[:signal_id] if args.key?(:signal_id)
|
|
637
|
+
@signal_severity = args[:signal_severity] if args.key?(:signal_severity)
|
|
624
638
|
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
|
625
639
|
@state = args[:state] if args.key?(:state)
|
|
626
640
|
end
|
|
@@ -642,8 +656,10 @@ module Google
|
|
|
642
656
|
|
|
643
657
|
# Required. The type of resource this ID is identifying. Ex redis.googleapis.com/
|
|
644
658
|
# Instance, redis.googleapis.com/Cluster, alloydb.googleapis.com/Cluster,
|
|
645
|
-
# alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance
|
|
646
|
-
#
|
|
659
|
+
# alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance, spanner.
|
|
660
|
+
# googleapis.com/Database, firestore.googleapis.com/Database, sqladmin.
|
|
661
|
+
# googleapis.com/Instance, bigtableadmin.googleapis.com/Cluster, bigtableadmin.
|
|
662
|
+
# googleapis.com/Instance REQUIRED Please refer go/condor-common-datamodel
|
|
647
663
|
# Corresponds to the JSON property `resourceType`
|
|
648
664
|
# @return [String]
|
|
649
665
|
attr_accessor :resource_type
|
|
@@ -697,7 +713,7 @@ module Google
|
|
|
697
713
|
# @return [String]
|
|
698
714
|
attr_accessor :current_state
|
|
699
715
|
|
|
700
|
-
# Any custom metadata associated with the resource.
|
|
716
|
+
# Any custom metadata associated with the resource. e.g. A spanner instance can
|
|
701
717
|
# have multiple databases with its own unique metadata. Information for these
|
|
702
718
|
# individual databases can be captured in custom metadata data
|
|
703
719
|
# Corresponds to the JSON property `customMetadata`
|
|
@@ -1473,6 +1489,52 @@ module Google
|
|
|
1473
1489
|
end
|
|
1474
1490
|
end
|
|
1475
1491
|
|
|
1492
|
+
# Metadata for individual internal resources in an instance. e.g. spanner
|
|
1493
|
+
# instance can have multiple databases with unique configuration settings.
|
|
1494
|
+
# Similarly bigtable can have multiple clusters within same bigtable instance.
|
|
1495
|
+
class InternalResourceMetadata
|
|
1496
|
+
include Google::Apis::Core::Hashable
|
|
1497
|
+
|
|
1498
|
+
# Configuration for automatic backups
|
|
1499
|
+
# Corresponds to the JSON property `backupConfiguration`
|
|
1500
|
+
# @return [Google::Apis::RedisV1::BackupConfiguration]
|
|
1501
|
+
attr_accessor :backup_configuration
|
|
1502
|
+
|
|
1503
|
+
# A backup run.
|
|
1504
|
+
# Corresponds to the JSON property `backupRun`
|
|
1505
|
+
# @return [Google::Apis::RedisV1::BackupRun]
|
|
1506
|
+
attr_accessor :backup_run
|
|
1507
|
+
|
|
1508
|
+
# Product specification for Condor resources.
|
|
1509
|
+
# Corresponds to the JSON property `product`
|
|
1510
|
+
# @return [Google::Apis::RedisV1::Product]
|
|
1511
|
+
attr_accessor :product
|
|
1512
|
+
|
|
1513
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
|
1514
|
+
# Corresponds to the JSON property `resourceId`
|
|
1515
|
+
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
|
1516
|
+
attr_accessor :resource_id
|
|
1517
|
+
|
|
1518
|
+
# Required. internal resource name for spanner this will be database name e.g."
|
|
1519
|
+
# spanner.googleapis.com/projects/123/abc/instances/inst1/databases/db1"
|
|
1520
|
+
# Corresponds to the JSON property `resourceName`
|
|
1521
|
+
# @return [String]
|
|
1522
|
+
attr_accessor :resource_name
|
|
1523
|
+
|
|
1524
|
+
def initialize(**args)
|
|
1525
|
+
update!(**args)
|
|
1526
|
+
end
|
|
1527
|
+
|
|
1528
|
+
# Update properties of this object
|
|
1529
|
+
def update!(**args)
|
|
1530
|
+
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
|
1531
|
+
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
|
1532
|
+
@product = args[:product] if args.key?(:product)
|
|
1533
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
1534
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
1535
|
+
end
|
|
1536
|
+
end
|
|
1537
|
+
|
|
1476
1538
|
# Response for ListClusters.
|
|
1477
1539
|
class ListClustersResponse
|
|
1478
1540
|
include Google::Apis::Core::Hashable
|
|
@@ -1779,6 +1841,34 @@ module Google
|
|
|
1779
1841
|
end
|
|
1780
1842
|
end
|
|
1781
1843
|
|
|
1844
|
+
# An output only view of all the member clusters participating in the cross
|
|
1845
|
+
# cluster replication.
|
|
1846
|
+
class Membership
|
|
1847
|
+
include Google::Apis::Core::Hashable
|
|
1848
|
+
|
|
1849
|
+
# Details of the remote cluster associated with this cluster in a cross cluster
|
|
1850
|
+
# replication setup.
|
|
1851
|
+
# Corresponds to the JSON property `primaryCluster`
|
|
1852
|
+
# @return [Google::Apis::RedisV1::RemoteCluster]
|
|
1853
|
+
attr_accessor :primary_cluster
|
|
1854
|
+
|
|
1855
|
+
# Output only. The list of secondary clusters replicating from the primary
|
|
1856
|
+
# cluster.
|
|
1857
|
+
# Corresponds to the JSON property `secondaryClusters`
|
|
1858
|
+
# @return [Array<Google::Apis::RedisV1::RemoteCluster>]
|
|
1859
|
+
attr_accessor :secondary_clusters
|
|
1860
|
+
|
|
1861
|
+
def initialize(**args)
|
|
1862
|
+
update!(**args)
|
|
1863
|
+
end
|
|
1864
|
+
|
|
1865
|
+
# Update properties of this object
|
|
1866
|
+
def update!(**args)
|
|
1867
|
+
@primary_cluster = args[:primary_cluster] if args.key?(:primary_cluster)
|
|
1868
|
+
@secondary_clusters = args[:secondary_clusters] if args.key?(:secondary_clusters)
|
|
1869
|
+
end
|
|
1870
|
+
end
|
|
1871
|
+
|
|
1782
1872
|
# Node specific properties.
|
|
1783
1873
|
class NodeInfo
|
|
1784
1874
|
include Google::Apis::Core::Hashable
|
|
@@ -2222,6 +2312,33 @@ module Google
|
|
|
2222
2312
|
end
|
|
2223
2313
|
end
|
|
2224
2314
|
|
|
2315
|
+
# Details of the remote cluster associated with this cluster in a cross cluster
|
|
2316
|
+
# replication setup.
|
|
2317
|
+
class RemoteCluster
|
|
2318
|
+
include Google::Apis::Core::Hashable
|
|
2319
|
+
|
|
2320
|
+
# The full resource path of the remote cluster in the format: projects//
|
|
2321
|
+
# locations//clusters/
|
|
2322
|
+
# Corresponds to the JSON property `cluster`
|
|
2323
|
+
# @return [String]
|
|
2324
|
+
attr_accessor :cluster
|
|
2325
|
+
|
|
2326
|
+
# Output only. The unique identifier of the remote cluster.
|
|
2327
|
+
# Corresponds to the JSON property `uid`
|
|
2328
|
+
# @return [String]
|
|
2329
|
+
attr_accessor :uid
|
|
2330
|
+
|
|
2331
|
+
def initialize(**args)
|
|
2332
|
+
update!(**args)
|
|
2333
|
+
end
|
|
2334
|
+
|
|
2335
|
+
# Update properties of this object
|
|
2336
|
+
def update!(**args)
|
|
2337
|
+
@cluster = args[:cluster] if args.key?(:cluster)
|
|
2338
|
+
@uid = args[:uid] if args.key?(:uid)
|
|
2339
|
+
end
|
|
2340
|
+
end
|
|
2341
|
+
|
|
2225
2342
|
# Request for RescheduleMaintenance.
|
|
2226
2343
|
class RescheduleMaintenanceRequest
|
|
2227
2344
|
include Google::Apis::Core::Hashable
|
|
@@ -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.58.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.15.
|
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240812"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -76,13 +76,13 @@ module Google
|
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
-
class
|
|
79
|
+
class CrossClusterReplicationConfig
|
|
80
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
81
|
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class CustomMetadataData
|
|
86
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
87
|
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
|
@@ -202,6 +202,12 @@ module Google
|
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
|
203
203
|
end
|
|
204
204
|
|
|
205
|
+
class InternalResourceMetadata
|
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
|
+
|
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
209
|
+
end
|
|
210
|
+
|
|
205
211
|
class ListClustersResponse
|
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
213
|
|
|
@@ -256,6 +262,12 @@ module Google
|
|
|
256
262
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
263
|
end
|
|
258
264
|
|
|
265
|
+
class Membership
|
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
|
+
|
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
269
|
+
end
|
|
270
|
+
|
|
259
271
|
class NodeInfo
|
|
260
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
273
|
|
|
@@ -328,6 +340,12 @@ module Google
|
|
|
328
340
|
include Google::Apis::Core::JsonObjectSupport
|
|
329
341
|
end
|
|
330
342
|
|
|
343
|
+
class RemoteCluster
|
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
|
+
|
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
347
|
+
end
|
|
348
|
+
|
|
331
349
|
class RescheduleMaintenanceRequest
|
|
332
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
333
351
|
|
|
@@ -459,6 +477,8 @@ module Google
|
|
|
459
477
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
460
478
|
property :authorization_mode, as: 'authorizationMode'
|
|
461
479
|
property :create_time, as: 'createTime'
|
|
480
|
+
property :cross_cluster_replication_config, as: 'crossClusterReplicationConfig', class: Google::Apis::RedisV1::CrossClusterReplicationConfig, decorator: Google::Apis::RedisV1::CrossClusterReplicationConfig::Representation
|
|
481
|
+
|
|
462
482
|
property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
|
|
463
483
|
collection :discovery_endpoints, as: 'discoveryEndpoints', class: Google::Apis::RedisV1::DiscoveryEndpoint, decorator: Google::Apis::RedisV1::DiscoveryEndpoint::Representation
|
|
464
484
|
|
|
@@ -504,26 +524,25 @@ module Google
|
|
|
504
524
|
end
|
|
505
525
|
end
|
|
506
526
|
|
|
507
|
-
class
|
|
527
|
+
class CrossClusterReplicationConfig
|
|
508
528
|
# @private
|
|
509
529
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
510
|
-
|
|
530
|
+
property :cluster_role, as: 'clusterRole'
|
|
531
|
+
property :membership, as: 'membership', class: Google::Apis::RedisV1::Membership, decorator: Google::Apis::RedisV1::Membership::Representation
|
|
511
532
|
|
|
533
|
+
property :primary_cluster, as: 'primaryCluster', class: Google::Apis::RedisV1::RemoteCluster, decorator: Google::Apis::RedisV1::RemoteCluster::Representation
|
|
534
|
+
|
|
535
|
+
collection :secondary_clusters, as: 'secondaryClusters', class: Google::Apis::RedisV1::RemoteCluster, decorator: Google::Apis::RedisV1::RemoteCluster::Representation
|
|
536
|
+
|
|
537
|
+
property :update_time, as: 'updateTime'
|
|
512
538
|
end
|
|
513
539
|
end
|
|
514
540
|
|
|
515
|
-
class
|
|
541
|
+
class CustomMetadataData
|
|
516
542
|
# @private
|
|
517
543
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
|
|
521
|
-
|
|
522
|
-
property :product, as: 'product', class: Google::Apis::RedisV1::Product, decorator: Google::Apis::RedisV1::Product::Representation
|
|
523
|
-
|
|
524
|
-
property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
|
|
544
|
+
collection :internal_resource_metadata, as: 'internalResourceMetadata', class: Google::Apis::RedisV1::InternalResourceMetadata, decorator: Google::Apis::RedisV1::InternalResourceMetadata::Representation
|
|
525
545
|
|
|
526
|
-
property :resource_name, as: 'resourceName'
|
|
527
546
|
end
|
|
528
547
|
end
|
|
529
548
|
|
|
@@ -560,6 +579,7 @@ module Google
|
|
|
560
579
|
property :resource_name, as: 'resourceName'
|
|
561
580
|
property :signal_class, as: 'signalClass'
|
|
562
581
|
property :signal_id, as: 'signalId'
|
|
582
|
+
property :signal_severity, as: 'signalSeverity'
|
|
563
583
|
property :signal_type, as: 'signalType'
|
|
564
584
|
property :state, as: 'state'
|
|
565
585
|
end
|
|
@@ -774,6 +794,21 @@ module Google
|
|
|
774
794
|
end
|
|
775
795
|
end
|
|
776
796
|
|
|
797
|
+
class InternalResourceMetadata
|
|
798
|
+
# @private
|
|
799
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
800
|
+
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::RedisV1::BackupConfiguration, decorator: Google::Apis::RedisV1::BackupConfiguration::Representation
|
|
801
|
+
|
|
802
|
+
property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
|
|
803
|
+
|
|
804
|
+
property :product, as: 'product', class: Google::Apis::RedisV1::Product, decorator: Google::Apis::RedisV1::Product::Representation
|
|
805
|
+
|
|
806
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
|
|
807
|
+
|
|
808
|
+
property :resource_name, as: 'resourceName'
|
|
809
|
+
end
|
|
810
|
+
end
|
|
811
|
+
|
|
777
812
|
class ListClustersResponse
|
|
778
813
|
# @private
|
|
779
814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -860,6 +895,16 @@ module Google
|
|
|
860
895
|
end
|
|
861
896
|
end
|
|
862
897
|
|
|
898
|
+
class Membership
|
|
899
|
+
# @private
|
|
900
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
901
|
+
property :primary_cluster, as: 'primaryCluster', class: Google::Apis::RedisV1::RemoteCluster, decorator: Google::Apis::RedisV1::RemoteCluster::Representation
|
|
902
|
+
|
|
903
|
+
collection :secondary_clusters, as: 'secondaryClusters', class: Google::Apis::RedisV1::RemoteCluster, decorator: Google::Apis::RedisV1::RemoteCluster::Representation
|
|
904
|
+
|
|
905
|
+
end
|
|
906
|
+
end
|
|
907
|
+
|
|
863
908
|
class NodeInfo
|
|
864
909
|
# @private
|
|
865
910
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -975,6 +1020,14 @@ module Google
|
|
|
975
1020
|
end
|
|
976
1021
|
end
|
|
977
1022
|
|
|
1023
|
+
class RemoteCluster
|
|
1024
|
+
# @private
|
|
1025
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1026
|
+
property :cluster, as: 'cluster'
|
|
1027
|
+
property :uid, as: 'uid'
|
|
1028
|
+
end
|
|
1029
|
+
end
|
|
1030
|
+
|
|
978
1031
|
class RescheduleMaintenanceRequest
|
|
979
1032
|
# @private
|
|
980
1033
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.58.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.58.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|