@@ -89,7 +89,7 @@ export interface Cluster {
8989 projectId : string
9090 /** Status of the cluster */
9191 status : ClusterStatus
92- /** Redis version of the cluster */
92+ /** Redis™ engine version of the cluster */
9393 version : string
9494 /** List of cluster endpoints */
9595 endpoints : Array < Endpoint >
@@ -135,15 +135,15 @@ export interface ClusterSettingsResponse {
135135
136136/** Cluster version */
137137export interface ClusterVersion {
138- /** Redis version */
138+ /** Redis™ engine version */
139139 version : string
140140 /** End of life date */
141141 eolDate ?: Date
142142 /** Cluster settings available to be set */
143143 availableSettings : Array < AvailableClusterSetting >
144- /** Redis logo url */
144+ /** Redis™ logo url */
145145 logoUrl : string
146- /** Zone of the Redis version */
146+ /** Zone of the Managed Database for Redis™ */
147147 zone : Zone
148148}
149149
@@ -221,9 +221,9 @@ export interface ListNodeTypesResponse {
221221
222222/** List versions response */
223223export interface ListVersionsResponse {
224- /** List of the available Redis versions */
224+ /** List of the available Redis™ engine versions */
225225 versions : Array < ClusterVersion >
226- /** Total count of Redis versions available */
226+ /** Total count of available Redis™ engine versions */
227227 totalCount : number
228228}
229229
@@ -272,7 +272,7 @@ export type CreateClusterRequest = {
272272 projectId ?: string
273273 /** Name of the cluster */
274274 name ?: string
275- /** Redis version of the cluster */
275+ /** Redis™ engine version of the cluster */
276276 version : string
277277 /** Tags to apply to the cluster */
278278 tags ?: Array < string >
@@ -343,7 +343,7 @@ export type MigrateClusterRequest = {
343343 /** UUID of the cluster to update */
344344 clusterId : string
345345 /**
346- * Redis version of the cluster.
346+ * Redis™ engine version of the cluster.
347347 *
348348 * One-of ('action'): at most one of 'version', 'nodeType', 'clusterSize' could be set.
349349 */
@@ -394,13 +394,13 @@ export type ListNodeTypesRequest = {
394394export type ListVersionsRequest = {
395395 /** Zone to target. If none is passed will use default zone from the config */
396396 zone ?: Zone
397- /** Whether or not to include disabled Redis versions */
397+ /** Whether or not to include disabled Redis™ engine versions */
398398 includeDisabled : boolean
399- /** Whether or not to include beta Redis versions */
399+ /** Whether or not to include beta Redis™ engine versions */
400400 includeBeta : boolean
401- /** Whether or not to include deprecated Redis versions */
401+ /** Whether or not to include deprecated Redis™ engine versions */
402402 includeDeprecated : boolean
403- /** List Redis versions that match a given name pattern */
403+ /** List Redis™ engine versions that match a given name pattern */
404404 versionName ?: string
405405 page ?: number
406406 pageSize ?: number
0 commit comments