@@ -82,7 +82,7 @@ export interface AvailableClusterSetting {
8282 minValue ?: number
8383 /** Optional validation rule of the setting. */
8484 regex ?: string
85- /** Whether or not the setting is deprecated. */
85+ /** Defines whether or not the setting is deprecated. */
8686 deprecated : boolean
8787}
8888
@@ -108,7 +108,7 @@ export interface Cluster {
108108 createdAt ?: Date
109109 /** Update date (Format ISO 8601). */
110110 updatedAt ?: Date
111- /** Whether or not TLS is enabled. */
111+ /** Defines whether or not TLS is enabled. */
112112 tlsEnabled : boolean
113113 /** List of Database Instance settings. */
114114 clusterSettings : ClusterSetting [ ]
@@ -257,9 +257,9 @@ export interface NodeType {
257257 vcpus : number
258258 /** Quantity of RAM. */
259259 memory : number
260- /** The node type is currently disabled. */
260+ /** Defines whether node type is currently disabled or not . */
261261 disabled : boolean
262- /** The node type is currently in beta. */
262+ /** Defines whether node type is currently in beta. */
263263 beta : boolean
264264 /** Zone of the node type. */
265265 zone : Zone
@@ -292,7 +292,7 @@ export interface SetEndpointsResponse {
292292export type CreateClusterRequest = {
293293 /** Zone to target. If none is passed will use default zone from the config. */
294294 zone ?: Zone
295- /** The Project ID in which to create the Database Instance. */
295+ /** Project ID in which to create the Database Instance. */
296296 projectId ?: string
297297 /** Name of the Database Instance. */
298298 name ?: string
@@ -317,7 +317,7 @@ export type CreateClusterRequest = {
317317 * the cluster will be publicly exposed by default.
318318 */
319319 endpoints ?: EndpointSpec [ ]
320- /** Whether or not TLS is enabled. */
320+ /** Defines whether or not TLS is enabled. */
321321 tlsEnabled : boolean
322322 /** List of advanced settings to be set upon Database Instance initialization. */
323323 clusterSettings ?: ClusterSetting [ ]
@@ -415,7 +415,7 @@ export type GetClusterMetricsRequest = {
415415export type ListNodeTypesRequest = {
416416 /** Zone to target. If none is passed will use default zone from the config. */
417417 zone ?: Zone
418- /** Whether or not to include disabled types. */
418+ /** Defines whether or not to include disabled types. */
419419 includeDisabledTypes : boolean
420420 page ?: number
421421 pageSize ?: number
@@ -424,11 +424,11 @@ export type ListNodeTypesRequest = {
424424export type ListClusterVersionsRequest = {
425425 /** Zone to target. If none is passed will use default zone from the config. */
426426 zone ?: Zone
427- /** Whether or not to include disabled Redis™ engine versions. */
427+ /** Defines whether or not to include disabled Redis™ engine versions. */
428428 includeDisabled : boolean
429- /** Whether or not to include beta Redis™ engine versions. */
429+ /** Defines whether or not to include beta Redis™ engine versions. */
430430 includeBeta : boolean
431- /** Whether or not to include deprecated Redis™ engine versions. */
431+ /** Defines whether or not to include deprecated Redis™ engine versions. */
432432 includeDeprecated : boolean
433433 /** List Redis™ engine versions that match a given name pattern. */
434434 version ?: string
0 commit comments