google-apis-redis_v1 0.21.0 → 0.22.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: 379b9fb2dcff276ae97acdfac051264575fe20a36ab701da67bddc802494d2d4
4
- data.tar.gz: bc37d2195b72fa4a8b39ca2f0a527b0f3a9bed68a10ac654bc06d81de7ed4b48
3
+ metadata.gz: 2ac2da84d92f1ea6c7fd0fd58ee91f45fb134ff32b6b3e01f2601435606ac86c
4
+ data.tar.gz: b2f178a0f3eb185fc112d1de8baf6fe65be197cd9182843193f45e2d3424403d
5
5
  SHA512:
6
- metadata.gz: 4b911737e2e8b1b87674cba76e9db3454f77d2e3a3d1c57cd7f1c3a55252b42141c0437accb89e3d5d45c74ec05b66207389d75437d88e90769bd2efcab30871
7
- data.tar.gz: e611d06c1579a5758c162deeb53a6f4296933ba776bfda450be3b47fd715afec02d79b5710b9e3d3adff85c05ad931ef88aa2c36f676385e2f0c7ec0d836feb2
6
+ metadata.gz: 4dae3836806f8b72e238613589bf8ad3a8410b09f99a0e6ff64acaf7057cee2dd5751b41f1485128fca5f16d5d195f5c6e60b448ad47a1fb56d22130d747c9ad
7
+ data.tar.gz: e62411e26b08738d57a4603d410e15c926b4b058bfafb799188f043c912c5d6762265fa6b22e531e88dc1514f0484f609b719c5e064c81b27216b77db1ea543e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.22.0 (2022-02-04)
4
+
5
+ * Regenerated from discovery document revision 20220125
6
+
3
7
  ### v0.21.0 (2022-01-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20220111
@@ -22,137 +22,6 @@ 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
-
156
25
  # A generic empty message that you can re-use to avoid defining duplicated empty
157
26
  # messages in your APIs. A typical example is to use it as the request or the
158
27
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -170,34 +39,6 @@ module Google
170
39
  end
171
40
  end
172
41
 
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
-
201
42
  # Request for Export.
202
43
  class ExportInstanceRequest
203
44
  include Google::Apis::Core::Hashable
@@ -1057,33 +898,6 @@ module Google
1057
898
  end
1058
899
  end
1059
900
 
1060
- # Contains private service connect specific options.
1061
- class PrivateServiceConnect
1062
- include Google::Apis::Core::Hashable
1063
-
1064
- # Output only. The address of the Private Service Connect (PSC) service that the
1065
- # customer can use to connect this instance to their local network.
1066
- # Corresponds to the JSON property `pscService`
1067
- # @return [String]
1068
- attr_accessor :psc_service
1069
-
1070
- # Optional. The service route to connect using Private Service Connect. On
1071
- # Instance creation, this will automatically connect this route to this instance.
1072
- # Corresponds to the JSON property `pscServiceRoute`
1073
- # @return [String]
1074
- attr_accessor :psc_service_route
1075
-
1076
- def initialize(**args)
1077
- update!(**args)
1078
- end
1079
-
1080
- # Update properties of this object
1081
- def update!(**args)
1082
- @psc_service = args[:psc_service] if args.key?(:psc_service)
1083
- @psc_service_route = args[:psc_service_route] if args.key?(:psc_service_route)
1084
- end
1085
- end
1086
-
1087
901
  # Request for RescheduleMaintenance.
1088
902
  class RescheduleMaintenanceRequest
1089
903
  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.21.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220111"
25
+ REVISION = "20220125"
26
26
  end
27
27
  end
28
28
  end
@@ -22,30 +22,12 @@ 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
-
37
25
  class Empty
38
26
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
27
 
40
28
  include Google::Apis::Core::JsonObjectSupport
41
29
  end
42
30
 
43
- class Endpoint
44
- class Representation < Google::Apis::Core::JsonRepresentation; end
45
-
46
- include Google::Apis::Core::JsonObjectSupport
47
- end
48
-
49
31
  class ExportInstanceRequest
50
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
33
 
@@ -172,12 +154,6 @@ module Google
172
154
  include Google::Apis::Core::JsonObjectSupport
173
155
  end
174
156
 
175
- class PrivateServiceConnect
176
- class Representation < Google::Apis::Core::JsonRepresentation; end
177
-
178
- include Google::Apis::Core::JsonObjectSupport
179
- end
180
-
181
157
  class RescheduleMaintenanceRequest
182
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
159
 
@@ -214,51 +190,12 @@ module Google
214
190
  include Google::Apis::Core::JsonObjectSupport
215
191
  end
216
192
 
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
-
248
193
  class Empty
249
194
  # @private
250
195
  class Representation < Google::Apis::Core::JsonRepresentation
251
196
  end
252
197
  end
253
198
 
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
-
262
199
  class ExportInstanceRequest
263
200
  # @private
264
201
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -478,14 +415,6 @@ module Google
478
415
  end
479
416
  end
480
417
 
481
- class PrivateServiceConnect
482
- # @private
483
- class Representation < Google::Apis::Core::JsonRepresentation
484
- property :psc_service, as: 'pscService'
485
- property :psc_service_route, as: 'pscServiceRoute'
486
- end
487
- end
488
-
489
418
  class RescheduleMaintenanceRequest
490
419
  # @private
491
420
  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.21.0
4
+ version: 0.22.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: 2022-01-24 00:00:00.000000000 Z
11
+ date: 2022-02-07 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.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.22.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: []