@aws-sdk/client-rds 3.940.0 → 3.943.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.
Files changed (38) hide show
  1. package/dist-cjs/index.js +197 -60
  2. package/dist-es/schemas/schemas_0.js +197 -60
  3. package/dist-types/commands/CopyDBSnapshotCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +7 -0
  5. package/dist-types/commands/CreateDBInstanceCommand.d.ts +32 -0
  6. package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +32 -0
  7. package/dist-types/commands/CreateDBSnapshotCommand.d.ts +10 -0
  8. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +10 -0
  10. package/dist-types/commands/DeleteDBInstanceCommand.d.ts +22 -0
  11. package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +10 -0
  12. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +4 -0
  13. package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +10 -0
  14. package/dist-types/commands/DescribeDBInstancesCommand.d.ts +22 -0
  15. package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +10 -0
  16. package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +17 -0
  17. package/dist-types/commands/DescribeValidDBInstanceModificationsCommand.d.ts +42 -2
  18. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +4 -0
  19. package/dist-types/commands/ModifyDBInstanceCommand.d.ts +33 -0
  20. package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +10 -0
  21. package/dist-types/commands/PromoteReadReplicaCommand.d.ts +22 -0
  22. package/dist-types/commands/RebootDBInstanceCommand.d.ts +22 -0
  23. package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +32 -0
  24. package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +32 -0
  25. package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +32 -0
  26. package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
  27. package/dist-types/commands/StartDBInstanceCommand.d.ts +22 -0
  28. package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
  29. package/dist-types/commands/StopDBInstanceCommand.d.ts +22 -0
  30. package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +22 -0
  31. package/dist-types/models/models_0.d.ts +297 -64
  32. package/dist-types/models/models_1.d.ts +204 -2
  33. package/dist-types/schemas/schemas_0.d.ts +11 -0
  34. package/dist-types/ts3.4/commands/DescribeValidDBInstanceModificationsCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/models/models_0.d.ts +45 -12
  36. package/dist-types/ts3.4/models/models_1.d.ts +35 -2
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
  38. package/package.json +5 -5
@@ -113,6 +113,16 @@ declare const RestoreDBInstanceFromS3Command_base: {
113
113
  * DedicatedLogVolume: true || false,
114
114
  * CACertificateIdentifier: "STRING_VALUE",
115
115
  * EngineLifecycleSupport: "STRING_VALUE",
116
+ * AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
117
+ * { // AdditionalStorageVolume
118
+ * VolumeName: "STRING_VALUE", // required
119
+ * AllocatedStorage: Number("int"),
120
+ * IOPS: Number("int"),
121
+ * MaxAllocatedStorage: Number("int"),
122
+ * StorageThroughput: Number("int"),
123
+ * StorageType: "STRING_VALUE",
124
+ * },
125
+ * ],
116
126
  * };
117
127
  * const command = new RestoreDBInstanceFromS3Command(input);
118
128
  * const response = await client.send(command);
@@ -211,6 +221,16 @@ declare const RestoreDBInstanceFromS3Command_base: {
211
221
  * // IAMDatabaseAuthenticationEnabled: true || false,
212
222
  * // DedicatedLogVolume: true || false,
213
223
  * // Engine: "STRING_VALUE",
224
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
225
+ * // { // AdditionalStorageVolume
226
+ * // VolumeName: "STRING_VALUE", // required
227
+ * // AllocatedStorage: Number("int"),
228
+ * // IOPS: Number("int"),
229
+ * // MaxAllocatedStorage: Number("int"),
230
+ * // StorageThroughput: Number("int"),
231
+ * // StorageType: "STRING_VALUE",
232
+ * // },
233
+ * // ],
214
234
  * // },
215
235
  * // LatestRestorableTime: new Date("TIMESTAMP"),
216
236
  * // MultiAZ: true || false,
@@ -342,6 +362,18 @@ declare const RestoreDBInstanceFromS3Command_base: {
342
362
  * // DedicatedLogVolume: true || false,
343
363
  * // IsStorageConfigUpgradeAvailable: true || false,
344
364
  * // EngineLifecycleSupport: "STRING_VALUE",
365
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesOutputList
366
+ * // { // AdditionalStorageVolumeOutput
367
+ * // VolumeName: "STRING_VALUE",
368
+ * // StorageVolumeStatus: "STRING_VALUE",
369
+ * // AllocatedStorage: Number("int"),
370
+ * // IOPS: Number("int"),
371
+ * // MaxAllocatedStorage: Number("int"),
372
+ * // StorageThroughput: Number("int"),
373
+ * // StorageType: "STRING_VALUE",
374
+ * // },
375
+ * // ],
376
+ * // StorageVolumeStatus: "STRING_VALUE",
345
377
  * // },
346
378
  * // };
347
379
  *
@@ -110,6 +110,16 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
110
110
  * EngineLifecycleSupport: "STRING_VALUE",
111
111
  * ManageMasterUserPassword: true || false,
112
112
  * MasterUserSecretKmsKeyId: "STRING_VALUE",
113
+ * AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
114
+ * { // AdditionalStorageVolume
115
+ * VolumeName: "STRING_VALUE", // required
116
+ * AllocatedStorage: Number("int"),
117
+ * IOPS: Number("int"),
118
+ * MaxAllocatedStorage: Number("int"),
119
+ * StorageThroughput: Number("int"),
120
+ * StorageType: "STRING_VALUE",
121
+ * },
122
+ * ],
113
123
  * };
114
124
  * const command = new RestoreDBInstanceToPointInTimeCommand(input);
115
125
  * const response = await client.send(command);
@@ -208,6 +218,16 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
208
218
  * // IAMDatabaseAuthenticationEnabled: true || false,
209
219
  * // DedicatedLogVolume: true || false,
210
220
  * // Engine: "STRING_VALUE",
221
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
222
+ * // { // AdditionalStorageVolume
223
+ * // VolumeName: "STRING_VALUE", // required
224
+ * // AllocatedStorage: Number("int"),
225
+ * // IOPS: Number("int"),
226
+ * // MaxAllocatedStorage: Number("int"),
227
+ * // StorageThroughput: Number("int"),
228
+ * // StorageType: "STRING_VALUE",
229
+ * // },
230
+ * // ],
211
231
  * // },
212
232
  * // LatestRestorableTime: new Date("TIMESTAMP"),
213
233
  * // MultiAZ: true || false,
@@ -339,6 +359,18 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
339
359
  * // DedicatedLogVolume: true || false,
340
360
  * // IsStorageConfigUpgradeAvailable: true || false,
341
361
  * // EngineLifecycleSupport: "STRING_VALUE",
362
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesOutputList
363
+ * // { // AdditionalStorageVolumeOutput
364
+ * // VolumeName: "STRING_VALUE",
365
+ * // StorageVolumeStatus: "STRING_VALUE",
366
+ * // AllocatedStorage: Number("int"),
367
+ * // IOPS: Number("int"),
368
+ * // MaxAllocatedStorage: Number("int"),
369
+ * // StorageThroughput: Number("int"),
370
+ * // StorageType: "STRING_VALUE",
371
+ * // },
372
+ * // ],
373
+ * // StorageVolumeStatus: "STRING_VALUE",
342
374
  * // },
343
375
  * // };
344
376
  *
@@ -88,6 +88,16 @@ declare const StartDBInstanceAutomatedBackupsReplicationCommand_base: {
88
88
  * // MultiTenant: true || false,
89
89
  * // AwsBackupRecoveryPointArn: "STRING_VALUE",
90
90
  * // DedicatedLogVolume: true || false,
91
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
92
+ * // { // AdditionalStorageVolume
93
+ * // VolumeName: "STRING_VALUE", // required
94
+ * // AllocatedStorage: Number("int"),
95
+ * // IOPS: Number("int"),
96
+ * // MaxAllocatedStorage: Number("int"),
97
+ * // StorageThroughput: Number("int"),
98
+ * // StorageType: "STRING_VALUE",
99
+ * // },
100
+ * // ],
91
101
  * // },
92
102
  * // };
93
103
  *
@@ -145,6 +145,16 @@ declare const StartDBInstanceCommand_base: {
145
145
  * // IAMDatabaseAuthenticationEnabled: true || false,
146
146
  * // DedicatedLogVolume: true || false,
147
147
  * // Engine: "STRING_VALUE",
148
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
149
+ * // { // AdditionalStorageVolume
150
+ * // VolumeName: "STRING_VALUE", // required
151
+ * // AllocatedStorage: Number("int"),
152
+ * // IOPS: Number("int"),
153
+ * // MaxAllocatedStorage: Number("int"),
154
+ * // StorageThroughput: Number("int"),
155
+ * // StorageType: "STRING_VALUE",
156
+ * // },
157
+ * // ],
148
158
  * // },
149
159
  * // LatestRestorableTime: new Date("TIMESTAMP"),
150
160
  * // MultiAZ: true || false,
@@ -276,6 +286,18 @@ declare const StartDBInstanceCommand_base: {
276
286
  * // DedicatedLogVolume: true || false,
277
287
  * // IsStorageConfigUpgradeAvailable: true || false,
278
288
  * // EngineLifecycleSupport: "STRING_VALUE",
289
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesOutputList
290
+ * // { // AdditionalStorageVolumeOutput
291
+ * // VolumeName: "STRING_VALUE",
292
+ * // StorageVolumeStatus: "STRING_VALUE",
293
+ * // AllocatedStorage: Number("int"),
294
+ * // IOPS: Number("int"),
295
+ * // MaxAllocatedStorage: Number("int"),
296
+ * // StorageThroughput: Number("int"),
297
+ * // StorageType: "STRING_VALUE",
298
+ * // },
299
+ * // ],
300
+ * // StorageVolumeStatus: "STRING_VALUE",
279
301
  * // },
280
302
  * // };
281
303
  *
@@ -85,6 +85,16 @@ declare const StopDBInstanceAutomatedBackupsReplicationCommand_base: {
85
85
  * // MultiTenant: true || false,
86
86
  * // AwsBackupRecoveryPointArn: "STRING_VALUE",
87
87
  * // DedicatedLogVolume: true || false,
88
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
89
+ * // { // AdditionalStorageVolume
90
+ * // VolumeName: "STRING_VALUE", // required
91
+ * // AllocatedStorage: Number("int"),
92
+ * // IOPS: Number("int"),
93
+ * // MaxAllocatedStorage: Number("int"),
94
+ * // StorageThroughput: Number("int"),
95
+ * // StorageType: "STRING_VALUE",
96
+ * // },
97
+ * // ],
88
98
  * // },
89
99
  * // };
90
100
  *
@@ -149,6 +149,16 @@ declare const StopDBInstanceCommand_base: {
149
149
  * // IAMDatabaseAuthenticationEnabled: true || false,
150
150
  * // DedicatedLogVolume: true || false,
151
151
  * // Engine: "STRING_VALUE",
152
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
153
+ * // { // AdditionalStorageVolume
154
+ * // VolumeName: "STRING_VALUE", // required
155
+ * // AllocatedStorage: Number("int"),
156
+ * // IOPS: Number("int"),
157
+ * // MaxAllocatedStorage: Number("int"),
158
+ * // StorageThroughput: Number("int"),
159
+ * // StorageType: "STRING_VALUE",
160
+ * // },
161
+ * // ],
152
162
  * // },
153
163
  * // LatestRestorableTime: new Date("TIMESTAMP"),
154
164
  * // MultiAZ: true || false,
@@ -280,6 +290,18 @@ declare const StopDBInstanceCommand_base: {
280
290
  * // DedicatedLogVolume: true || false,
281
291
  * // IsStorageConfigUpgradeAvailable: true || false,
282
292
  * // EngineLifecycleSupport: "STRING_VALUE",
293
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesOutputList
294
+ * // { // AdditionalStorageVolumeOutput
295
+ * // VolumeName: "STRING_VALUE",
296
+ * // StorageVolumeStatus: "STRING_VALUE",
297
+ * // AllocatedStorage: Number("int"),
298
+ * // IOPS: Number("int"),
299
+ * // MaxAllocatedStorage: Number("int"),
300
+ * // StorageThroughput: Number("int"),
301
+ * // StorageType: "STRING_VALUE",
302
+ * // },
303
+ * // ],
304
+ * // StorageVolumeStatus: "STRING_VALUE",
283
305
  * // },
284
306
  * // };
285
307
  *
@@ -137,6 +137,16 @@ declare const SwitchoverReadReplicaCommand_base: {
137
137
  * // IAMDatabaseAuthenticationEnabled: true || false,
138
138
  * // DedicatedLogVolume: true || false,
139
139
  * // Engine: "STRING_VALUE",
140
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesList
141
+ * // { // AdditionalStorageVolume
142
+ * // VolumeName: "STRING_VALUE", // required
143
+ * // AllocatedStorage: Number("int"),
144
+ * // IOPS: Number("int"),
145
+ * // MaxAllocatedStorage: Number("int"),
146
+ * // StorageThroughput: Number("int"),
147
+ * // StorageType: "STRING_VALUE",
148
+ * // },
149
+ * // ],
140
150
  * // },
141
151
  * // LatestRestorableTime: new Date("TIMESTAMP"),
142
152
  * // MultiAZ: true || false,
@@ -268,6 +278,18 @@ declare const SwitchoverReadReplicaCommand_base: {
268
278
  * // DedicatedLogVolume: true || false,
269
279
  * // IsStorageConfigUpgradeAvailable: true || false,
270
280
  * // EngineLifecycleSupport: "STRING_VALUE",
281
+ * // AdditionalStorageVolumes: [ // AdditionalStorageVolumesOutputList
282
+ * // { // AdditionalStorageVolumeOutput
283
+ * // VolumeName: "STRING_VALUE",
284
+ * // StorageVolumeStatus: "STRING_VALUE",
285
+ * // AllocatedStorage: Number("int"),
286
+ * // IOPS: Number("int"),
287
+ * // MaxAllocatedStorage: Number("int"),
288
+ * // StorageThroughput: Number("int"),
289
+ * // StorageType: "STRING_VALUE",
290
+ * // },
291
+ * // ],
292
+ * // StorageVolumeStatus: "STRING_VALUE",
271
293
  * // },
272
294
  * // };
273
295
  *