google-apis-redis_v1 0.15.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/redis_v1/classes.rb +259 -17
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +89 -0
- data/lib/google/apis/redis_v1/service.rb +2 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98daf5a48574d19891640937d210071c33365c464e80acb8255ec7ffad224ac9
|
4
|
+
data.tar.gz: 565040a67c4844747ce8715034d53346c5f8e44e491aec27ebcb48fcc59c4055
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f23542983373ce270eac4e3f115c35a0e4f5913a6e816d860b4f81c3d92a89c053ee736e05d97a0589198cca00a92303f76e46b27c2b8146b0d35fb660b68110
|
7
|
+
data.tar.gz: 5652d0b9c4c15f69b5a93bb22fb066f5f1865ce5414baeab79565d40e0fe540b8ba754c4a357661d8025546599ea4653fc622ff3e470c86c6ca22d8d8ab60649
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-redis_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2021-12-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211202
|
6
|
+
|
7
|
+
### v0.18.0 (2021-11-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20211104
|
10
|
+
|
11
|
+
### v0.17.0 (2021-10-30)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20211021
|
14
|
+
|
15
|
+
### v0.16.0 (2021-10-20)
|
16
|
+
|
17
|
+
* Unspecified changes
|
18
|
+
|
3
19
|
### v0.15.0 (2021-10-10)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210930
|
data/OVERVIEW.md
CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Redis service in particular.)
|
67
67
|
|
@@ -22,6 +22,137 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module RedisV1
|
24
24
|
|
25
|
+
# A cluster instance.
|
26
|
+
class Cluster
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Output only. UID of the cluster for use by Pantheon for analytics.
|
30
|
+
# Corresponds to the JSON property `clusterUid`
|
31
|
+
# @return [String]
|
32
|
+
attr_accessor :cluster_uid
|
33
|
+
|
34
|
+
# Output only. The timestamp associated with the cluster creation request.
|
35
|
+
# Corresponds to the JSON property `createTime`
|
36
|
+
# @return [String]
|
37
|
+
attr_accessor :create_time
|
38
|
+
|
39
|
+
# Input only. The KMS key reference that the customer provides when trying to
|
40
|
+
# create the instance.
|
41
|
+
# Corresponds to the JSON property `customerManagedKey`
|
42
|
+
# @return [String]
|
43
|
+
attr_accessor :customer_managed_key
|
44
|
+
|
45
|
+
# Optional. The number of replica nodes per shard. Valid range is [1-2] and
|
46
|
+
# defaults to 1.
|
47
|
+
# Corresponds to the JSON property `defaultReplicaCount`
|
48
|
+
# @return [Fixnum]
|
49
|
+
attr_accessor :default_replica_count
|
50
|
+
|
51
|
+
# Optional. An arbitrary and optional user-provided name for the cluster.
|
52
|
+
# Corresponds to the JSON property `displayName`
|
53
|
+
# @return [String]
|
54
|
+
attr_accessor :display_name
|
55
|
+
|
56
|
+
# Output only. Hostname or IP address and port pairs used to connect to the
|
57
|
+
# cluster.
|
58
|
+
# Corresponds to the JSON property `endpoints`
|
59
|
+
# @return [Array<Google::Apis::RedisV1::Endpoint>]
|
60
|
+
attr_accessor :endpoints
|
61
|
+
|
62
|
+
# Required. Unique name of the resource in this scope including project and
|
63
|
+
# location using the form: `projects/`project_id`/locations/`location_id`/
|
64
|
+
# clusters/`cluster_id``
|
65
|
+
# Corresponds to the JSON property `name`
|
66
|
+
# @return [String]
|
67
|
+
attr_accessor :name
|
68
|
+
|
69
|
+
# Contains private service connect specific options.
|
70
|
+
# Corresponds to the JSON property `privateServiceConnect`
|
71
|
+
# @return [Google::Apis::RedisV1::PrivateServiceConnect]
|
72
|
+
attr_accessor :private_service_connect
|
73
|
+
|
74
|
+
# Optional. Redis configuration parameters, according to http://redis.io/topics/
|
75
|
+
# config. Currently, the only supported parameters are: Redis version 6.x and
|
76
|
+
# newer: * lfu-decay-time * lfu-log-factor * maxmemory-policy
|
77
|
+
# Corresponds to the JSON property `redisConfigs`
|
78
|
+
# @return [Hash<String,String>]
|
79
|
+
attr_accessor :redis_configs
|
80
|
+
|
81
|
+
# Output only. The slots making up the cluster. Read-only. In future versions
|
82
|
+
# this will be writable to allow for heterogeneous clusters.
|
83
|
+
# Corresponds to the JSON property `slots`
|
84
|
+
# @return [Array<Google::Apis::RedisV1::ClusterSlots>]
|
85
|
+
attr_accessor :slots
|
86
|
+
|
87
|
+
# Output only. The current state of this cluster. Can be CREATING, READY,
|
88
|
+
# UPDATING, DELETING and SUSPENDED
|
89
|
+
# Corresponds to the JSON property `state`
|
90
|
+
# @return [String]
|
91
|
+
attr_accessor :state
|
92
|
+
|
93
|
+
# Optional. Redis memory size in GiB for the entire cluster. Defaults to 32.
|
94
|
+
# Corresponds to the JSON property `totalMemorySizeGb`
|
95
|
+
# @return [Fixnum]
|
96
|
+
attr_accessor :total_memory_size_gb
|
97
|
+
|
98
|
+
def initialize(**args)
|
99
|
+
update!(**args)
|
100
|
+
end
|
101
|
+
|
102
|
+
# Update properties of this object
|
103
|
+
def update!(**args)
|
104
|
+
@cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
|
105
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
106
|
+
@customer_managed_key = args[:customer_managed_key] if args.key?(:customer_managed_key)
|
107
|
+
@default_replica_count = args[:default_replica_count] if args.key?(:default_replica_count)
|
108
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
109
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
110
|
+
@name = args[:name] if args.key?(:name)
|
111
|
+
@private_service_connect = args[:private_service_connect] if args.key?(:private_service_connect)
|
112
|
+
@redis_configs = args[:redis_configs] if args.key?(:redis_configs)
|
113
|
+
@slots = args[:slots] if args.key?(:slots)
|
114
|
+
@state = args[:state] if args.key?(:state)
|
115
|
+
@total_memory_size_gb = args[:total_memory_size_gb] if args.key?(:total_memory_size_gb)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
# A series of slots belonging to a cluster.
|
120
|
+
class ClusterSlots
|
121
|
+
include Google::Apis::Core::Hashable
|
122
|
+
|
123
|
+
# Output only. The end of the slots that make up this series.
|
124
|
+
# Corresponds to the JSON property `endSlotsExclusive`
|
125
|
+
# @return [Fixnum]
|
126
|
+
attr_accessor :end_slots_exclusive
|
127
|
+
|
128
|
+
# Output only. The total size of keyspace this series has.
|
129
|
+
# Corresponds to the JSON property `memorySizeGb`
|
130
|
+
# @return [Fixnum]
|
131
|
+
attr_accessor :memory_size_gb
|
132
|
+
|
133
|
+
# Output only. The number of replicas this series has.
|
134
|
+
# Corresponds to the JSON property `replicaCount`
|
135
|
+
# @return [Fixnum]
|
136
|
+
attr_accessor :replica_count
|
137
|
+
|
138
|
+
# Output only. The start of the slots that make up this series.
|
139
|
+
# Corresponds to the JSON property `startSlotsInclusive`
|
140
|
+
# @return [Fixnum]
|
141
|
+
attr_accessor :start_slots_inclusive
|
142
|
+
|
143
|
+
def initialize(**args)
|
144
|
+
update!(**args)
|
145
|
+
end
|
146
|
+
|
147
|
+
# Update properties of this object
|
148
|
+
def update!(**args)
|
149
|
+
@end_slots_exclusive = args[:end_slots_exclusive] if args.key?(:end_slots_exclusive)
|
150
|
+
@memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
|
151
|
+
@replica_count = args[:replica_count] if args.key?(:replica_count)
|
152
|
+
@start_slots_inclusive = args[:start_slots_inclusive] if args.key?(:start_slots_inclusive)
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
25
156
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
26
157
|
# messages in your APIs. A typical example is to use it as the request or the
|
27
158
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -39,6 +170,34 @@ module Google
|
|
39
170
|
end
|
40
171
|
end
|
41
172
|
|
173
|
+
# An endpoint exposed by a cluster. In the future we will add an enum to
|
174
|
+
# identify whether this endpoint is read/write or read-only when the feature is
|
175
|
+
# ready.
|
176
|
+
class Endpoint
|
177
|
+
include Google::Apis::Core::Hashable
|
178
|
+
|
179
|
+
# Output only. Hostname or IP address of the exposed Redis endpoint used by
|
180
|
+
# clients to connect to the service.
|
181
|
+
# Corresponds to the JSON property `host`
|
182
|
+
# @return [String]
|
183
|
+
attr_accessor :host
|
184
|
+
|
185
|
+
# Output only. The port number of the exposed Redis endpoint.
|
186
|
+
# Corresponds to the JSON property `port`
|
187
|
+
# @return [Fixnum]
|
188
|
+
attr_accessor :port
|
189
|
+
|
190
|
+
def initialize(**args)
|
191
|
+
update!(**args)
|
192
|
+
end
|
193
|
+
|
194
|
+
# Update properties of this object
|
195
|
+
def update!(**args)
|
196
|
+
@host = args[:host] if args.key?(:host)
|
197
|
+
@port = args[:port] if args.key?(:port)
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
42
201
|
# Request for Export.
|
43
202
|
class ExportInstanceRequest
|
44
203
|
include Google::Apis::Core::Hashable
|
@@ -249,13 +408,15 @@ module Google
|
|
249
408
|
end
|
250
409
|
end
|
251
410
|
|
252
|
-
# A Google Cloud Redis instance.
|
411
|
+
# A Google Cloud Redis instance.
|
253
412
|
class Instance
|
254
413
|
include Google::Apis::Core::Hashable
|
255
414
|
|
256
|
-
# Optional.
|
257
|
-
#
|
258
|
-
# must be a different zone from the one provided in
|
415
|
+
# Optional. If specified, at least one node will be provisioned in this zone in
|
416
|
+
# addition to the zone specified in location_id. Only applicable to standard
|
417
|
+
# tier. If provided, it must be a different zone from the one provided in [
|
418
|
+
# location_id]. Additional nodes beyond the first 2 will be placed in zones
|
419
|
+
# selected by the service.
|
259
420
|
# Corresponds to the JSON property `alternativeLocationId`
|
260
421
|
# @return [String]
|
261
422
|
attr_accessor :alternative_location_id
|
@@ -286,10 +447,9 @@ module Google
|
|
286
447
|
# @return [String]
|
287
448
|
attr_accessor :create_time
|
288
449
|
|
289
|
-
# Output only. The current zone where the Redis
|
290
|
-
#
|
291
|
-
#
|
292
|
-
# location_id or alternative_location_id and can change after a failover event.
|
450
|
+
# Output only. The current zone where the Redis primary node is located. In
|
451
|
+
# basic tier, this will always be the same as [location_id]. In standard tier,
|
452
|
+
# this can be the zone of any node in the instance.
|
293
453
|
# Corresponds to the JSON property `currentLocationId`
|
294
454
|
# @return [String]
|
295
455
|
attr_accessor :current_location_id
|
@@ -312,9 +472,9 @@ module Google
|
|
312
472
|
|
313
473
|
# Optional. The zone where the instance will be provisioned. If not provided,
|
314
474
|
# the service will choose a zone from the specified region for the instance. For
|
315
|
-
# standard tier,
|
316
|
-
# against zonal failures. If
|
317
|
-
#
|
475
|
+
# standard tier, additional nodes will be added across multiple zones for
|
476
|
+
# protection against zonal failures. If specified, at least one node will be
|
477
|
+
# provisioned in this zone.
|
318
478
|
# Corresponds to the JSON property `locationId`
|
319
479
|
# @return [String]
|
320
480
|
attr_accessor :location_id
|
@@ -351,6 +511,11 @@ module Google
|
|
351
511
|
# @return [Array<Google::Apis::RedisV1::NodeInfo>]
|
352
512
|
attr_accessor :nodes
|
353
513
|
|
514
|
+
# Configuration of the persistence functionality.
|
515
|
+
# Corresponds to the JSON property `persistenceConfig`
|
516
|
+
# @return [Google::Apis::RedisV1::PersistenceConfig]
|
517
|
+
attr_accessor :persistence_config
|
518
|
+
|
354
519
|
# Output only. Cloud IAM identity used by import / export operations to transfer
|
355
520
|
# data to/from Cloud Storage. Format is "serviceAccount:". The value may change
|
356
521
|
# over time for a given instance so should be checked before each import/export
|
@@ -378,7 +543,8 @@ module Google
|
|
378
543
|
# @return [Fixnum]
|
379
544
|
attr_accessor :read_endpoint_port
|
380
545
|
|
381
|
-
# Optional. Read replica mode.
|
546
|
+
# Optional. Read replica mode. Can only be specified when trying to create the
|
547
|
+
# instance.
|
382
548
|
# Corresponds to the JSON property `readReplicasMode`
|
383
549
|
# @return [String]
|
384
550
|
attr_accessor :read_replicas_mode
|
@@ -401,8 +567,10 @@ module Google
|
|
401
567
|
# @return [String]
|
402
568
|
attr_accessor :redis_version
|
403
569
|
|
404
|
-
# Optional. The number of replica nodes.
|
405
|
-
#
|
570
|
+
# Optional. The number of replica nodes. The valid range for the Standard Tier
|
571
|
+
# with read replicas enabled is [1-5] and defaults to 2. If read replicas are
|
572
|
+
# not enabled for a Standard Tier instance, the only valid value is 1 and the
|
573
|
+
# default is 1. The valid value for basic tier is 0 and the default is also 0.
|
406
574
|
# Corresponds to the JSON property `replicaCount`
|
407
575
|
# @return [Fixnum]
|
408
576
|
attr_accessor :replica_count
|
@@ -412,7 +580,8 @@ module Google
|
|
412
580
|
# existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode,
|
413
581
|
# the name of one allocated IP address ranges associated with this private
|
414
582
|
# service access connection. If not provided, the service will choose an unused /
|
415
|
-
# 29 block, for example, 10.0.0.0/29 or 192.168.0.0/29.
|
583
|
+
# 29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For
|
584
|
+
# READ_REPLICAS_ENABLED the default block size is /28.
|
416
585
|
# Corresponds to the JSON property `reservedIpRange`
|
417
586
|
# @return [String]
|
418
587
|
attr_accessor :reserved_ip_range
|
@@ -465,6 +634,7 @@ module Google
|
|
465
634
|
@memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
|
466
635
|
@name = args[:name] if args.key?(:name)
|
467
636
|
@nodes = args[:nodes] if args.key?(:nodes)
|
637
|
+
@persistence_config = args[:persistence_config] if args.key?(:persistence_config)
|
468
638
|
@persistence_iam_identity = args[:persistence_iam_identity] if args.key?(:persistence_iam_identity)
|
469
639
|
@port = args[:port] if args.key?(:port)
|
470
640
|
@read_endpoint = args[:read_endpoint] if args.key?(:read_endpoint)
|
@@ -725,12 +895,12 @@ module Google
|
|
725
895
|
class NodeInfo
|
726
896
|
include Google::Apis::Core::Hashable
|
727
897
|
|
728
|
-
# Output only.
|
898
|
+
# Output only. Node identifying string. e.g. 'node-0', 'node-1'
|
729
899
|
# Corresponds to the JSON property `id`
|
730
900
|
# @return [String]
|
731
901
|
attr_accessor :id
|
732
902
|
|
733
|
-
# Output only.
|
903
|
+
# Output only. Location of the node.
|
734
904
|
# Corresponds to the JSON property `zone`
|
735
905
|
# @return [String]
|
736
906
|
attr_accessor :zone
|
@@ -831,6 +1001,78 @@ module Google
|
|
831
1001
|
end
|
832
1002
|
end
|
833
1003
|
|
1004
|
+
# Configuration of the persistence functionality.
|
1005
|
+
class PersistenceConfig
|
1006
|
+
include Google::Apis::Core::Hashable
|
1007
|
+
|
1008
|
+
# Optional. Controls whether Persistence features are enabled. If not provided,
|
1009
|
+
# the existing value will be used.
|
1010
|
+
# Corresponds to the JSON property `persistenceMode`
|
1011
|
+
# @return [String]
|
1012
|
+
attr_accessor :persistence_mode
|
1013
|
+
|
1014
|
+
# Output only. The next time that a snapshot attempt is scheduled to occur.
|
1015
|
+
# Corresponds to the JSON property `rdbNextSnapshotTime`
|
1016
|
+
# @return [String]
|
1017
|
+
attr_accessor :rdb_next_snapshot_time
|
1018
|
+
|
1019
|
+
# Optional. Period between RDB snapshots. Snapshots will be attempted every
|
1020
|
+
# period starting from the provided snapshot start time. For example, a start
|
1021
|
+
# time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until
|
1022
|
+
# 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and
|
1023
|
+
# 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used
|
1024
|
+
# as default.
|
1025
|
+
# Corresponds to the JSON property `rdbSnapshotPeriod`
|
1026
|
+
# @return [String]
|
1027
|
+
attr_accessor :rdb_snapshot_period
|
1028
|
+
|
1029
|
+
# Optional. Date and time that the first snapshot was/will be attempted, and to
|
1030
|
+
# which future snapshots will be aligned. If not provided, the current time will
|
1031
|
+
# be used.
|
1032
|
+
# Corresponds to the JSON property `rdbSnapshotStartTime`
|
1033
|
+
# @return [String]
|
1034
|
+
attr_accessor :rdb_snapshot_start_time
|
1035
|
+
|
1036
|
+
def initialize(**args)
|
1037
|
+
update!(**args)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# Update properties of this object
|
1041
|
+
def update!(**args)
|
1042
|
+
@persistence_mode = args[:persistence_mode] if args.key?(:persistence_mode)
|
1043
|
+
@rdb_next_snapshot_time = args[:rdb_next_snapshot_time] if args.key?(:rdb_next_snapshot_time)
|
1044
|
+
@rdb_snapshot_period = args[:rdb_snapshot_period] if args.key?(:rdb_snapshot_period)
|
1045
|
+
@rdb_snapshot_start_time = args[:rdb_snapshot_start_time] if args.key?(:rdb_snapshot_start_time)
|
1046
|
+
end
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
# Contains private service connect specific options.
|
1050
|
+
class PrivateServiceConnect
|
1051
|
+
include Google::Apis::Core::Hashable
|
1052
|
+
|
1053
|
+
# Output only. The address of the Private Service Connect (PSC) service that the
|
1054
|
+
# customer can use to connect this instance to their local network.
|
1055
|
+
# Corresponds to the JSON property `pscService`
|
1056
|
+
# @return [String]
|
1057
|
+
attr_accessor :psc_service
|
1058
|
+
|
1059
|
+
# Optional. The service route to connect using Private Service Connect. On
|
1060
|
+
# Instance creation, this will automatically connect this route to this instance.
|
1061
|
+
# Corresponds to the JSON property `pscServiceRoute`
|
1062
|
+
# @return [String]
|
1063
|
+
attr_accessor :psc_service_route
|
1064
|
+
|
1065
|
+
def initialize(**args)
|
1066
|
+
update!(**args)
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# Update properties of this object
|
1070
|
+
def update!(**args)
|
1071
|
+
@psc_service = args[:psc_service] if args.key?(:psc_service)
|
1072
|
+
@psc_service_route = args[:psc_service_route] if args.key?(:psc_service_route)
|
1073
|
+
end
|
1074
|
+
end
|
1075
|
+
|
834
1076
|
# Request for RescheduleMaintenance.
|
835
1077
|
class RescheduleMaintenanceRequest
|
836
1078
|
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.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211202"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,12 +22,30 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module RedisV1
|
24
24
|
|
25
|
+
class Cluster
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class ClusterSlots
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class Empty
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
28
40
|
include Google::Apis::Core::JsonObjectSupport
|
29
41
|
end
|
30
42
|
|
43
|
+
class Endpoint
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
31
49
|
class ExportInstanceRequest
|
32
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
51
|
|
@@ -148,6 +166,18 @@ module Google
|
|
148
166
|
include Google::Apis::Core::JsonObjectSupport
|
149
167
|
end
|
150
168
|
|
169
|
+
class PersistenceConfig
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
175
|
+
class PrivateServiceConnect
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
151
181
|
class RescheduleMaintenanceRequest
|
152
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
183
|
|
@@ -184,12 +214,51 @@ module Google
|
|
184
214
|
include Google::Apis::Core::JsonObjectSupport
|
185
215
|
end
|
186
216
|
|
217
|
+
class Cluster
|
218
|
+
# @private
|
219
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
220
|
+
property :cluster_uid, as: 'clusterUid'
|
221
|
+
property :create_time, as: 'createTime'
|
222
|
+
property :customer_managed_key, as: 'customerManagedKey'
|
223
|
+
property :default_replica_count, as: 'defaultReplicaCount'
|
224
|
+
property :display_name, as: 'displayName'
|
225
|
+
collection :endpoints, as: 'endpoints', class: Google::Apis::RedisV1::Endpoint, decorator: Google::Apis::RedisV1::Endpoint::Representation
|
226
|
+
|
227
|
+
property :name, as: 'name'
|
228
|
+
property :private_service_connect, as: 'privateServiceConnect', class: Google::Apis::RedisV1::PrivateServiceConnect, decorator: Google::Apis::RedisV1::PrivateServiceConnect::Representation
|
229
|
+
|
230
|
+
hash :redis_configs, as: 'redisConfigs'
|
231
|
+
collection :slots, as: 'slots', class: Google::Apis::RedisV1::ClusterSlots, decorator: Google::Apis::RedisV1::ClusterSlots::Representation
|
232
|
+
|
233
|
+
property :state, as: 'state'
|
234
|
+
property :total_memory_size_gb, as: 'totalMemorySizeGb'
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
class ClusterSlots
|
239
|
+
# @private
|
240
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
241
|
+
property :end_slots_exclusive, as: 'endSlotsExclusive'
|
242
|
+
property :memory_size_gb, as: 'memorySizeGb'
|
243
|
+
property :replica_count, as: 'replicaCount'
|
244
|
+
property :start_slots_inclusive, as: 'startSlotsInclusive'
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
187
248
|
class Empty
|
188
249
|
# @private
|
189
250
|
class Representation < Google::Apis::Core::JsonRepresentation
|
190
251
|
end
|
191
252
|
end
|
192
253
|
|
254
|
+
class Endpoint
|
255
|
+
# @private
|
256
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
257
|
+
property :host, as: 'host'
|
258
|
+
property :port, as: 'port'
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
193
262
|
class ExportInstanceRequest
|
194
263
|
# @private
|
195
264
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -283,6 +352,8 @@ module Google
|
|
283
352
|
property :name, as: 'name'
|
284
353
|
collection :nodes, as: 'nodes', class: Google::Apis::RedisV1::NodeInfo, decorator: Google::Apis::RedisV1::NodeInfo::Representation
|
285
354
|
|
355
|
+
property :persistence_config, as: 'persistenceConfig', class: Google::Apis::RedisV1::PersistenceConfig, decorator: Google::Apis::RedisV1::PersistenceConfig::Representation
|
356
|
+
|
286
357
|
property :persistence_iam_identity, as: 'persistenceIamIdentity'
|
287
358
|
property :port, as: 'port'
|
288
359
|
property :read_endpoint, as: 'readEndpoint'
|
@@ -396,6 +467,24 @@ module Google
|
|
396
467
|
end
|
397
468
|
end
|
398
469
|
|
470
|
+
class PersistenceConfig
|
471
|
+
# @private
|
472
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
473
|
+
property :persistence_mode, as: 'persistenceMode'
|
474
|
+
property :rdb_next_snapshot_time, as: 'rdbNextSnapshotTime'
|
475
|
+
property :rdb_snapshot_period, as: 'rdbSnapshotPeriod'
|
476
|
+
property :rdb_snapshot_start_time, as: 'rdbSnapshotStartTime'
|
477
|
+
end
|
478
|
+
end
|
479
|
+
|
480
|
+
class PrivateServiceConnect
|
481
|
+
# @private
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
483
|
+
property :psc_service, as: 'pscService'
|
484
|
+
property :psc_service_route, as: 'pscServiceRoute'
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
399
488
|
class RescheduleMaintenanceRequest
|
400
489
|
# @private
|
401
490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -445,7 +445,8 @@ module Google
|
|
445
445
|
# @param [String] update_mask
|
446
446
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
447
447
|
# field. The elements of the repeated paths field may only include these fields
|
448
|
-
# from Instance: * `displayName` * `labels` * `memorySizeGb` * `redisConfig`
|
448
|
+
# from Instance: * `displayName` * `labels` * `memorySizeGb` * `redisConfig` * `
|
449
|
+
# replica_count`
|
449
450
|
# @param [String] fields
|
450
451
|
# Selector specifying which fields to include in a partial response.
|
451
452
|
# @param [String] quota_user
|
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.19.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: 2021-
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
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.19.0
|
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: []
|
65
65
|
require_paths:
|