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,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
244244
* // CAIdentifier: "STRING_VALUE",
245245
* // ValidTill: new Date("TIMESTAMP"),
246246
* // },
247+
* // EngineLifecycleSupport: "STRING_VALUE",
247248
* // },
248249
* // };
249250
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ export interface FailoverGlobalClusterCommandOutput extends FailoverGlobalCluste
8585
* // Status: "STRING_VALUE",
8686
* // Engine: "STRING_VALUE",
8787
* // EngineVersion: "STRING_VALUE",
88+
* // EngineLifecycleSupport: "STRING_VALUE",
8889
* // DatabaseName: "STRING_VALUE",
8990
* // StorageEncrypted: true || false,
9091
* // DeletionProtection: true || false,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
296296
* // CAIdentifier: "STRING_VALUE",
297297
* // ValidTill: new Date("TIMESTAMP"),
298298
* // },
299+
* // EngineLifecycleSupport: "STRING_VALUE",
299300
* // },
300301
* // };
301302
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
343343
* // DedicatedLogVolume: true || false,
344344
* // IsStorageConfigUpgradeAvailable: true || false,
345345
* // MultiTenant: true || false,
346+
* // EngineLifecycleSupport: "STRING_VALUE",
346347
* // },
347348
* // };
348349
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes
5757
* // Status: "STRING_VALUE",
5858
* // Engine: "STRING_VALUE",
5959
* // EngineVersion: "STRING_VALUE",
60+
* // EngineLifecycleSupport: "STRING_VALUE",
6061
* // DatabaseName: "STRING_VALUE",
6162
* // StorageEncrypted: true || false,
6263
* // DeletionProtection: true || false,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
281281
* // DedicatedLogVolume: true || false,
282282
* // IsStorageConfigUpgradeAvailable: true || false,
283283
* // MultiTenant: true || false,
284+
* // EngineLifecycleSupport: "STRING_VALUE",
284285
* // },
285286
* // };
286287
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
225225
* // CAIdentifier: "STRING_VALUE",
226226
* // ValidTill: new Date("TIMESTAMP"),
227227
* // },
228+
* // EngineLifecycleSupport: "STRING_VALUE",
228229
* // },
229230
* // };
230231
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
235235
* // CAIdentifier: "STRING_VALUE",
236236
* // ValidTill: new Date("TIMESTAMP"),
237237
* // },
238+
* // EngineLifecycleSupport: "STRING_VALUE",
238239
* // },
239240
* // };
240241
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
272272
* // DedicatedLogVolume: true || false,
273273
* // IsStorageConfigUpgradeAvailable: true || false,
274274
* // MultiTenant: true || false,
275+
* // EngineLifecycleSupport: "STRING_VALUE",
275276
* // },
276277
* // };
277278
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl
5353
* // Status: "STRING_VALUE",
5454
* // Engine: "STRING_VALUE",
5555
* // EngineVersion: "STRING_VALUE",
56+
* // EngineLifecycleSupport: "STRING_VALUE",
5657
* // DatabaseName: "STRING_VALUE",
5758
* // StorageEncrypted: true || false,
5859
* // DeletionProtection: true || false,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
102102
* ManageMasterUserPassword: true || false,
103103
* MasterUserSecretKmsKeyId: "STRING_VALUE",
104104
* StorageType: "STRING_VALUE",
105+
* EngineLifecycleSupport: "STRING_VALUE",
105106
* };
106107
* const command = new RestoreDBClusterFromS3Command(input);
107108
* const response = await client.send(command);
@@ -291,6 +292,7 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
291292
* // CAIdentifier: "STRING_VALUE",
292293
* // ValidTill: new Date("TIMESTAMP"),
293294
* // },
295+
* // EngineLifecycleSupport: "STRING_VALUE",
294296
* // },
295297
* // };
296298
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
109109
* TransitGatewayMulticastDomainId: "STRING_VALUE",
110110
* ReplicaMode: "open-read-only" || "mounted",
111111
* },
112+
* EngineLifecycleSupport: "STRING_VALUE",
112113
* };
113114
* const command = new RestoreDBClusterFromSnapshotCommand(input);
114115
* const response = await client.send(command);
@@ -298,6 +299,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
298299
* // CAIdentifier: "STRING_VALUE",
299300
* // ValidTill: new Date("TIMESTAMP"),
300301
* // },
302+
* // EngineLifecycleSupport: "STRING_VALUE",
301303
* // },
302304
* // };
303305
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
111111
* TransitGatewayMulticastDomainId: "STRING_VALUE",
112112
* ReplicaMode: "open-read-only" || "mounted",
113113
* },
114+
* EngineLifecycleSupport: "STRING_VALUE",
114115
* };
115116
* const command = new RestoreDBClusterToPointInTimeCommand(input);
116117
* const response = await client.send(command);
@@ -300,6 +301,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
300301
* // CAIdentifier: "STRING_VALUE",
301302
* // ValidTill: new Date("TIMESTAMP"),
302303
* // },
304+
* // EngineLifecycleSupport: "STRING_VALUE",
303305
* // },
304306
* // };
305307
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput
110110
* AllocatedStorage: Number("int"),
111111
* DedicatedLogVolume: true || false,
112112
* CACertificateIdentifier: "STRING_VALUE",
113+
* EngineLifecycleSupport: "STRING_VALUE",
113114
* };
114115
* const command = new RestoreDBInstanceFromDBSnapshotCommand(input);
115116
* const response = await client.send(command);
@@ -336,6 +337,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput
336337
* // DedicatedLogVolume: true || false,
337338
* // IsStorageConfigUpgradeAvailable: true || false,
338339
* // MultiTenant: true || false,
340+
* // EngineLifecycleSupport: "STRING_VALUE",
339341
* // },
340342
* // };
341343
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
109109
* MasterUserSecretKmsKeyId: "STRING_VALUE",
110110
* DedicatedLogVolume: true || false,
111111
* CACertificateIdentifier: "STRING_VALUE",
112+
* EngineLifecycleSupport: "STRING_VALUE",
112113
* };
113114
* const command = new RestoreDBInstanceFromS3Command(input);
114115
* const response = await client.send(command);
@@ -335,6 +336,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
335336
* // DedicatedLogVolume: true || false,
336337
* // IsStorageConfigUpgradeAvailable: true || false,
337338
* // MultiTenant: true || false,
339+
* // EngineLifecycleSupport: "STRING_VALUE",
338340
* // },
339341
* // };
340342
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
110110
* AllocatedStorage: Number("int"),
111111
* DedicatedLogVolume: true || false,
112112
* CACertificateIdentifier: "STRING_VALUE",
113+
* EngineLifecycleSupport: "STRING_VALUE",
113114
* };
114115
* const command = new RestoreDBInstanceToPointInTimeCommand(input);
115116
* const response = await client.send(command);
@@ -336,6 +337,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
336337
* // DedicatedLogVolume: true || false,
337338
* // IsStorageConfigUpgradeAvailable: true || false,
338339
* // MultiTenant: true || false,
340+
* // EngineLifecycleSupport: "STRING_VALUE",
339341
* // },
340342
* // };
341343
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
232232
* // CAIdentifier: "STRING_VALUE",
233233
* // ValidTill: new Date("TIMESTAMP"),
234234
* // },
235+
* // EngineLifecycleSupport: "STRING_VALUE",
235236
* // },
236237
* // };
237238
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
271271
* // DedicatedLogVolume: true || false,
272272
* // IsStorageConfigUpgradeAvailable: true || false,
273273
* // MultiTenant: true || false,
274+
* // EngineLifecycleSupport: "STRING_VALUE",
274275
* // },
275276
* // };
276277
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
233233
* // CAIdentifier: "STRING_VALUE",
234234
* // ValidTill: new Date("TIMESTAMP"),
235235
* // },
236+
* // EngineLifecycleSupport: "STRING_VALUE",
236237
* // },
237238
* // };
238239
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
274274
* // DedicatedLogVolume: true || false,
275275
* // IsStorageConfigUpgradeAvailable: true || false,
276276
* // MultiTenant: true || false,
277+
* // EngineLifecycleSupport: "STRING_VALUE",
277278
* // },
278279
* // };
279280
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export interface SwitchoverGlobalClusterCommandOutput extends SwitchoverGlobalCl
5858
* // Status: "STRING_VALUE",
5959
* // Engine: "STRING_VALUE",
6060
* // EngineVersion: "STRING_VALUE",
61+
* // EngineLifecycleSupport: "STRING_VALUE",
6162
* // DatabaseName: "STRING_VALUE",
6263
* // StorageEncrypted: true || false,
6364
* // DeletionProtection: true || false,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
263263
* // DedicatedLogVolume: true || false,
264264
* // IsStorageConfigUpgradeAvailable: true || false,
265265
* // MultiTenant: true || false,
266+
* // EngineLifecycleSupport: "STRING_VALUE",
266267
* // },
267268
* // };
268269
*

0 commit comments

Comments
 (0)