Skip to content

Commit 4d44c0d

Browse files
author
awstools
committed
feat(client-rds): This release adds support for EngineLifecycleSupport on DBInstances, DBClusters, and GlobalClusters.
1 parent 851e675 commit 4d44c0d

36 files changed

+426
-17
lines changed

clients/client-rds/src/commands/CreateDBClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
127127
* MasterUserSecretKmsKeyId: "STRING_VALUE",
128128
* EnableLocalWriteForwarding: true || false,
129129
* CACertificateIdentifier: "STRING_VALUE",
130+
* EngineLifecycleSupport: "STRING_VALUE",
130131
* };
131132
* const command = new CreateDBClusterCommand(input);
132133
* const response = await client.send(command);
@@ -316,6 +317,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
316317
* // CAIdentifier: "STRING_VALUE",
317318
* // ValidTill: new Date("TIMESTAMP"),
318319
* // },
320+
* // EngineLifecycleSupport: "STRING_VALUE",
319321
* // },
320322
* // };
321323
*

clients/client-rds/src/commands/CreateDBInstanceCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
123123
* DBSystemId: "STRING_VALUE",
124124
* DedicatedLogVolume: true || false,
125125
* MultiTenant: true || false,
126+
* EngineLifecycleSupport: "STRING_VALUE",
126127
* };
127128
* const command = new CreateDBInstanceCommand(input);
128129
* const response = await client.send(command);
@@ -349,6 +350,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
349350
* // DedicatedLogVolume: true || false,
350351
* // IsStorageConfigUpgradeAvailable: true || false,
351352
* // MultiTenant: true || false,
353+
* // EngineLifecycleSupport: "STRING_VALUE",
352354
* // },
353355
* // };
354356
*

clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
335335
* // DedicatedLogVolume: true || false,
336336
* // IsStorageConfigUpgradeAvailable: true || false,
337337
* // MultiTenant: true || false,
338+
* // EngineLifecycleSupport: "STRING_VALUE",
338339
* // },
339340
* // };
340341
*

clients/client-rds/src/commands/CreateGlobalClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes
5151
* SourceDBClusterIdentifier: "STRING_VALUE",
5252
* Engine: "STRING_VALUE",
5353
* EngineVersion: "STRING_VALUE",
54+
* EngineLifecycleSupport: "STRING_VALUE",
5455
* DeletionProtection: true || false,
5556
* DatabaseName: "STRING_VALUE",
5657
* StorageEncrypted: true || false,
@@ -65,6 +66,7 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes
6566
* // Status: "STRING_VALUE",
6667
* // Engine: "STRING_VALUE",
6768
* // EngineVersion: "STRING_VALUE",
69+
* // EngineLifecycleSupport: "STRING_VALUE",
6870
* // DatabaseName: "STRING_VALUE",
6971
* // StorageEncrypted: true || false,
7072
* // DeletionProtection: true || false,

clients/client-rds/src/commands/DeleteDBClusterCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
238238
* // CAIdentifier: "STRING_VALUE",
239239
* // ValidTill: new Date("TIMESTAMP"),
240240
* // },
241+
* // EngineLifecycleSupport: "STRING_VALUE",
241242
* // },
242243
* // };
243244
*

clients/client-rds/src/commands/DeleteDBInstanceCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
287287
* // DedicatedLogVolume: true || false,
288288
* // IsStorageConfigUpgradeAvailable: true || false,
289289
* // MultiTenant: true || false,
290+
* // EngineLifecycleSupport: "STRING_VALUE",
290291
* // },
291292
* // };
292293
*

clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterRes
5151
* // Status: "STRING_VALUE",
5252
* // Engine: "STRING_VALUE",
5353
* // EngineVersion: "STRING_VALUE",
54+
* // EngineLifecycleSupport: "STRING_VALUE",
5455
* // DatabaseName: "STRING_VALUE",
5556
* // StorageEncrypted: true || false,
5657
* // DeletionProtection: true || false,

clients/client-rds/src/commands/DescribeDBClustersCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
245245
* // CAIdentifier: "STRING_VALUE",
246246
* // ValidTill: new Date("TIMESTAMP"),
247247
* // },
248+
* // EngineLifecycleSupport: "STRING_VALUE",
248249
* // },
249250
* // ],
250251
* // };

clients/client-rds/src/commands/DescribeDBInstancesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M
277277
* // DedicatedLogVolume: true || false,
278278
* // IsStorageConfigUpgradeAvailable: true || false,
279279
* // MultiTenant: true || false,
280+
* // EngineLifecycleSupport: "STRING_VALUE",
280281
* // },
281282
* // ],
282283
* // };

clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa
6464
* // Status: "STRING_VALUE",
6565
* // Engine: "STRING_VALUE",
6666
* // EngineVersion: "STRING_VALUE",
67+
* // EngineLifecycleSupport: "STRING_VALUE",
6768
* // DatabaseName: "STRING_VALUE",
6869
* // StorageEncrypted: true || false,
6970
* // DeletionProtection: true || false,

0 commit comments

Comments
 (0)