@aws-sdk/client-rds 3.439.0 → 3.445.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.
- package/README.md +40 -0
- package/dist-cjs/RDS.js +10 -0
- package/dist-cjs/commands/CreateTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/DeleteTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/DescribeDBSnapshotTenantDatabasesCommand.js +51 -0
- package/dist-cjs/commands/DescribeTenantDatabasesCommand.js +52 -0
- package/dist-cjs/commands/ModifyTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +83 -20
- package/dist-cjs/models/models_1.js +37 -1
- package/dist-cjs/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/DescribeTenantDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_query.js +700 -7
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForTenantDatabaseAvailable.js +89 -0
- package/dist-cjs/waiters/waitForTenantDatabaseDeleted.js +39 -0
- package/dist-es/RDS.js +10 -0
- package/dist-es/commands/CreateTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/DeleteTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/DescribeDBSnapshotTenantDatabasesCommand.js +47 -0
- package/dist-es/commands/DescribeTenantDatabasesCommand.js +48 -0
- package/dist-es/commands/ModifyTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +71 -16
- package/dist-es/models/models_1.js +32 -0
- package/dist-es/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +25 -0
- package/dist-es/pagination/DescribeTenantDatabasesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_query.js +684 -2
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForTenantDatabaseAvailable.js +84 -0
- package/dist-es/waiters/waitForTenantDatabaseDeleted.js +34 -0
- package/dist-types/RDS.d.ts +35 -0
- package/dist-types/RDSClient.d.ts +7 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +6 -0
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +7 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateTenantDatabaseCommand.d.ts +122 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTenantDatabaseCommand.d.ts +111 -0
- package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +117 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTenantDatabasesCommand.d.ts +114 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +7 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/ModifyTenantDatabaseCommand.d.ts +114 -0
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +2 -0
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +8 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +12 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +12 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +2 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +6 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +364 -408
- package/dist-types/models/models_1.d.ts +944 -117
- package/dist-types/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeTenantDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_query.d.ts +45 -0
- package/dist-types/ts3.4/RDS.d.ts +91 -0
- package/dist-types/ts3.4/RDSClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTenantDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ModifyTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -71
- package/dist-types/ts3.4/models/models_1.d.ts +136 -1
- package/dist-types/ts3.4/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeTenantDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForTenantDatabaseAvailable.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTenantDatabaseDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForTenantDatabaseAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForTenantDatabaseDeleted.d.ts +14 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -503,6 +503,14 @@ CreateOptionGroup
|
|
|
503
503
|
|
|
504
504
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/createoptiongroupcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/createoptiongroupcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/createoptiongroupcommandoutput.html)
|
|
505
505
|
|
|
506
|
+
</details>
|
|
507
|
+
<details>
|
|
508
|
+
<summary>
|
|
509
|
+
CreateTenantDatabase
|
|
510
|
+
</summary>
|
|
511
|
+
|
|
512
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/createtenantdatabasecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/createtenantdatabasecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/createtenantdatabasecommandoutput.html)
|
|
513
|
+
|
|
506
514
|
</details>
|
|
507
515
|
<details>
|
|
508
516
|
<summary>
|
|
@@ -655,6 +663,14 @@ DeleteOptionGroup
|
|
|
655
663
|
|
|
656
664
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/deleteoptiongroupcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deleteoptiongroupcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deleteoptiongroupcommandoutput.html)
|
|
657
665
|
|
|
666
|
+
</details>
|
|
667
|
+
<details>
|
|
668
|
+
<summary>
|
|
669
|
+
DeleteTenantDatabase
|
|
670
|
+
</summary>
|
|
671
|
+
|
|
672
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/deletetenantdatabasecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletetenantdatabasecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletetenantdatabasecommandoutput.html)
|
|
673
|
+
|
|
658
674
|
</details>
|
|
659
675
|
<details>
|
|
660
676
|
<summary>
|
|
@@ -855,6 +871,14 @@ DescribeDBSnapshots
|
|
|
855
871
|
|
|
856
872
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describedbsnapshotscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbsnapshotscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbsnapshotscommandoutput.html)
|
|
857
873
|
|
|
874
|
+
</details>
|
|
875
|
+
<details>
|
|
876
|
+
<summary>
|
|
877
|
+
DescribeDBSnapshotTenantDatabases
|
|
878
|
+
</summary>
|
|
879
|
+
|
|
880
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describedbsnapshottenantdatabasescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbsnapshottenantdatabasescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbsnapshottenantdatabasescommandoutput.html)
|
|
881
|
+
|
|
858
882
|
</details>
|
|
859
883
|
<details>
|
|
860
884
|
<summary>
|
|
@@ -983,6 +1007,14 @@ DescribeSourceRegions
|
|
|
983
1007
|
|
|
984
1008
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describesourceregionscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describesourceregionscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describesourceregionscommandoutput.html)
|
|
985
1009
|
|
|
1010
|
+
</details>
|
|
1011
|
+
<details>
|
|
1012
|
+
<summary>
|
|
1013
|
+
DescribeTenantDatabases
|
|
1014
|
+
</summary>
|
|
1015
|
+
|
|
1016
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describetenantdatabasescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describetenantdatabasescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describetenantdatabasescommandoutput.html)
|
|
1017
|
+
|
|
986
1018
|
</details>
|
|
987
1019
|
<details>
|
|
988
1020
|
<summary>
|
|
@@ -1175,6 +1207,14 @@ ModifyOptionGroup
|
|
|
1175
1207
|
|
|
1176
1208
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/modifyoptiongroupcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/modifyoptiongroupcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/modifyoptiongroupcommandoutput.html)
|
|
1177
1209
|
|
|
1210
|
+
</details>
|
|
1211
|
+
<details>
|
|
1212
|
+
<summary>
|
|
1213
|
+
ModifyTenantDatabase
|
|
1214
|
+
</summary>
|
|
1215
|
+
|
|
1216
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/modifytenantdatabasecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/modifytenantdatabasecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/modifytenantdatabasecommandoutput.html)
|
|
1217
|
+
|
|
1178
1218
|
</details>
|
|
1179
1219
|
<details>
|
|
1180
1220
|
<summary>
|
package/dist-cjs/RDS.js
CHANGED
|
@@ -33,6 +33,7 @@ const CreateEventSubscriptionCommand_1 = require("./commands/CreateEventSubscrip
|
|
|
33
33
|
const CreateGlobalClusterCommand_1 = require("./commands/CreateGlobalClusterCommand");
|
|
34
34
|
const CreateIntegrationCommand_1 = require("./commands/CreateIntegrationCommand");
|
|
35
35
|
const CreateOptionGroupCommand_1 = require("./commands/CreateOptionGroupCommand");
|
|
36
|
+
const CreateTenantDatabaseCommand_1 = require("./commands/CreateTenantDatabaseCommand");
|
|
36
37
|
const DeleteBlueGreenDeploymentCommand_1 = require("./commands/DeleteBlueGreenDeploymentCommand");
|
|
37
38
|
const DeleteCustomDBEngineVersionCommand_1 = require("./commands/DeleteCustomDBEngineVersionCommand");
|
|
38
39
|
const DeleteDBClusterAutomatedBackupCommand_1 = require("./commands/DeleteDBClusterAutomatedBackupCommand");
|
|
@@ -52,6 +53,7 @@ const DeleteEventSubscriptionCommand_1 = require("./commands/DeleteEventSubscrip
|
|
|
52
53
|
const DeleteGlobalClusterCommand_1 = require("./commands/DeleteGlobalClusterCommand");
|
|
53
54
|
const DeleteIntegrationCommand_1 = require("./commands/DeleteIntegrationCommand");
|
|
54
55
|
const DeleteOptionGroupCommand_1 = require("./commands/DeleteOptionGroupCommand");
|
|
56
|
+
const DeleteTenantDatabaseCommand_1 = require("./commands/DeleteTenantDatabaseCommand");
|
|
55
57
|
const DeregisterDBProxyTargetsCommand_1 = require("./commands/DeregisterDBProxyTargetsCommand");
|
|
56
58
|
const DescribeAccountAttributesCommand_1 = require("./commands/DescribeAccountAttributesCommand");
|
|
57
59
|
const DescribeBlueGreenDeploymentsCommand_1 = require("./commands/DescribeBlueGreenDeploymentsCommand");
|
|
@@ -77,6 +79,7 @@ const DescribeDBProxyTargetsCommand_1 = require("./commands/DescribeDBProxyTarge
|
|
|
77
79
|
const DescribeDBSecurityGroupsCommand_1 = require("./commands/DescribeDBSecurityGroupsCommand");
|
|
78
80
|
const DescribeDBSnapshotAttributesCommand_1 = require("./commands/DescribeDBSnapshotAttributesCommand");
|
|
79
81
|
const DescribeDBSnapshotsCommand_1 = require("./commands/DescribeDBSnapshotsCommand");
|
|
82
|
+
const DescribeDBSnapshotTenantDatabasesCommand_1 = require("./commands/DescribeDBSnapshotTenantDatabasesCommand");
|
|
80
83
|
const DescribeDBSubnetGroupsCommand_1 = require("./commands/DescribeDBSubnetGroupsCommand");
|
|
81
84
|
const DescribeEngineDefaultClusterParametersCommand_1 = require("./commands/DescribeEngineDefaultClusterParametersCommand");
|
|
82
85
|
const DescribeEngineDefaultParametersCommand_1 = require("./commands/DescribeEngineDefaultParametersCommand");
|
|
@@ -93,6 +96,7 @@ const DescribePendingMaintenanceActionsCommand_1 = require("./commands/DescribeP
|
|
|
93
96
|
const DescribeReservedDBInstancesCommand_1 = require("./commands/DescribeReservedDBInstancesCommand");
|
|
94
97
|
const DescribeReservedDBInstancesOfferingsCommand_1 = require("./commands/DescribeReservedDBInstancesOfferingsCommand");
|
|
95
98
|
const DescribeSourceRegionsCommand_1 = require("./commands/DescribeSourceRegionsCommand");
|
|
99
|
+
const DescribeTenantDatabasesCommand_1 = require("./commands/DescribeTenantDatabasesCommand");
|
|
96
100
|
const DescribeValidDBInstanceModificationsCommand_1 = require("./commands/DescribeValidDBInstanceModificationsCommand");
|
|
97
101
|
const DownloadDBLogFilePortionCommand_1 = require("./commands/DownloadDBLogFilePortionCommand");
|
|
98
102
|
const FailoverDBClusterCommand_1 = require("./commands/FailoverDBClusterCommand");
|
|
@@ -117,6 +121,7 @@ const ModifyDBSubnetGroupCommand_1 = require("./commands/ModifyDBSubnetGroupComm
|
|
|
117
121
|
const ModifyEventSubscriptionCommand_1 = require("./commands/ModifyEventSubscriptionCommand");
|
|
118
122
|
const ModifyGlobalClusterCommand_1 = require("./commands/ModifyGlobalClusterCommand");
|
|
119
123
|
const ModifyOptionGroupCommand_1 = require("./commands/ModifyOptionGroupCommand");
|
|
124
|
+
const ModifyTenantDatabaseCommand_1 = require("./commands/ModifyTenantDatabaseCommand");
|
|
120
125
|
const PromoteReadReplicaCommand_1 = require("./commands/PromoteReadReplicaCommand");
|
|
121
126
|
const PromoteReadReplicaDBClusterCommand_1 = require("./commands/PromoteReadReplicaDBClusterCommand");
|
|
122
127
|
const PurchaseReservedDBInstancesOfferingCommand_1 = require("./commands/PurchaseReservedDBInstancesOfferingCommand");
|
|
@@ -182,6 +187,7 @@ const commands = {
|
|
|
182
187
|
CreateGlobalClusterCommand: CreateGlobalClusterCommand_1.CreateGlobalClusterCommand,
|
|
183
188
|
CreateIntegrationCommand: CreateIntegrationCommand_1.CreateIntegrationCommand,
|
|
184
189
|
CreateOptionGroupCommand: CreateOptionGroupCommand_1.CreateOptionGroupCommand,
|
|
190
|
+
CreateTenantDatabaseCommand: CreateTenantDatabaseCommand_1.CreateTenantDatabaseCommand,
|
|
185
191
|
DeleteBlueGreenDeploymentCommand: DeleteBlueGreenDeploymentCommand_1.DeleteBlueGreenDeploymentCommand,
|
|
186
192
|
DeleteCustomDBEngineVersionCommand: DeleteCustomDBEngineVersionCommand_1.DeleteCustomDBEngineVersionCommand,
|
|
187
193
|
DeleteDBClusterCommand: DeleteDBClusterCommand_1.DeleteDBClusterCommand,
|
|
@@ -201,6 +207,7 @@ const commands = {
|
|
|
201
207
|
DeleteGlobalClusterCommand: DeleteGlobalClusterCommand_1.DeleteGlobalClusterCommand,
|
|
202
208
|
DeleteIntegrationCommand: DeleteIntegrationCommand_1.DeleteIntegrationCommand,
|
|
203
209
|
DeleteOptionGroupCommand: DeleteOptionGroupCommand_1.DeleteOptionGroupCommand,
|
|
210
|
+
DeleteTenantDatabaseCommand: DeleteTenantDatabaseCommand_1.DeleteTenantDatabaseCommand,
|
|
204
211
|
DeregisterDBProxyTargetsCommand: DeregisterDBProxyTargetsCommand_1.DeregisterDBProxyTargetsCommand,
|
|
205
212
|
DescribeAccountAttributesCommand: DescribeAccountAttributesCommand_1.DescribeAccountAttributesCommand,
|
|
206
213
|
DescribeBlueGreenDeploymentsCommand: DescribeBlueGreenDeploymentsCommand_1.DescribeBlueGreenDeploymentsCommand,
|
|
@@ -226,6 +233,7 @@ const commands = {
|
|
|
226
233
|
DescribeDBSecurityGroupsCommand: DescribeDBSecurityGroupsCommand_1.DescribeDBSecurityGroupsCommand,
|
|
227
234
|
DescribeDBSnapshotAttributesCommand: DescribeDBSnapshotAttributesCommand_1.DescribeDBSnapshotAttributesCommand,
|
|
228
235
|
DescribeDBSnapshotsCommand: DescribeDBSnapshotsCommand_1.DescribeDBSnapshotsCommand,
|
|
236
|
+
DescribeDBSnapshotTenantDatabasesCommand: DescribeDBSnapshotTenantDatabasesCommand_1.DescribeDBSnapshotTenantDatabasesCommand,
|
|
229
237
|
DescribeDBSubnetGroupsCommand: DescribeDBSubnetGroupsCommand_1.DescribeDBSubnetGroupsCommand,
|
|
230
238
|
DescribeEngineDefaultClusterParametersCommand: DescribeEngineDefaultClusterParametersCommand_1.DescribeEngineDefaultClusterParametersCommand,
|
|
231
239
|
DescribeEngineDefaultParametersCommand: DescribeEngineDefaultParametersCommand_1.DescribeEngineDefaultParametersCommand,
|
|
@@ -242,6 +250,7 @@ const commands = {
|
|
|
242
250
|
DescribeReservedDBInstancesCommand: DescribeReservedDBInstancesCommand_1.DescribeReservedDBInstancesCommand,
|
|
243
251
|
DescribeReservedDBInstancesOfferingsCommand: DescribeReservedDBInstancesOfferingsCommand_1.DescribeReservedDBInstancesOfferingsCommand,
|
|
244
252
|
DescribeSourceRegionsCommand: DescribeSourceRegionsCommand_1.DescribeSourceRegionsCommand,
|
|
253
|
+
DescribeTenantDatabasesCommand: DescribeTenantDatabasesCommand_1.DescribeTenantDatabasesCommand,
|
|
245
254
|
DescribeValidDBInstanceModificationsCommand: DescribeValidDBInstanceModificationsCommand_1.DescribeValidDBInstanceModificationsCommand,
|
|
246
255
|
DownloadDBLogFilePortionCommand: DownloadDBLogFilePortionCommand_1.DownloadDBLogFilePortionCommand,
|
|
247
256
|
FailoverDBClusterCommand: FailoverDBClusterCommand_1.FailoverDBClusterCommand,
|
|
@@ -266,6 +275,7 @@ const commands = {
|
|
|
266
275
|
ModifyEventSubscriptionCommand: ModifyEventSubscriptionCommand_1.ModifyEventSubscriptionCommand,
|
|
267
276
|
ModifyGlobalClusterCommand: ModifyGlobalClusterCommand_1.ModifyGlobalClusterCommand,
|
|
268
277
|
ModifyOptionGroupCommand: ModifyOptionGroupCommand_1.ModifyOptionGroupCommand,
|
|
278
|
+
ModifyTenantDatabaseCommand: ModifyTenantDatabaseCommand_1.ModifyTenantDatabaseCommand,
|
|
269
279
|
PromoteReadReplicaCommand: PromoteReadReplicaCommand_1.PromoteReadReplicaCommand,
|
|
270
280
|
PromoteReadReplicaDBClusterCommand: PromoteReadReplicaDBClusterCommand_1.PromoteReadReplicaDBClusterCommand,
|
|
271
281
|
PurchaseReservedDBInstancesOfferingCommand: PurchaseReservedDBInstancesOfferingCommand_1.PurchaseReservedDBInstancesOfferingCommand,
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateTenantDatabaseCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
11
|
+
class CreateTenantDatabaseCommand extends smithy_client_1.Command {
|
|
12
|
+
static getEndpointParameterInstructions() {
|
|
13
|
+
return {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
constructor(input) {
|
|
21
|
+
super();
|
|
22
|
+
this.input = input;
|
|
23
|
+
}
|
|
24
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
25
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
26
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateTenantDatabaseCommand.getEndpointParameterInstructions()));
|
|
27
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
28
|
+
const { logger } = configuration;
|
|
29
|
+
const clientName = "RDSClient";
|
|
30
|
+
const commandName = "CreateTenantDatabaseCommand";
|
|
31
|
+
const handlerExecutionContext = {
|
|
32
|
+
logger,
|
|
33
|
+
clientName,
|
|
34
|
+
commandName,
|
|
35
|
+
inputFilterSensitiveLog: models_0_1.CreateTenantDatabaseMessageFilterSensitiveLog,
|
|
36
|
+
outputFilterSensitiveLog: models_0_1.CreateTenantDatabaseResultFilterSensitiveLog,
|
|
37
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
+
service: "AmazonRDSv19",
|
|
39
|
+
operation: "CreateTenantDatabase",
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
const { requestHandler } = configuration;
|
|
43
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
+
}
|
|
45
|
+
serialize(input, context) {
|
|
46
|
+
return (0, Aws_query_1.se_CreateTenantDatabaseCommand)(input, context);
|
|
47
|
+
}
|
|
48
|
+
deserialize(output, context) {
|
|
49
|
+
return (0, Aws_query_1.de_CreateTenantDatabaseCommand)(output, context);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.CreateTenantDatabaseCommand = CreateTenantDatabaseCommand;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteTenantDatabaseCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
11
|
+
class DeleteTenantDatabaseCommand extends smithy_client_1.Command {
|
|
12
|
+
static getEndpointParameterInstructions() {
|
|
13
|
+
return {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
constructor(input) {
|
|
21
|
+
super();
|
|
22
|
+
this.input = input;
|
|
23
|
+
}
|
|
24
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
25
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
26
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteTenantDatabaseCommand.getEndpointParameterInstructions()));
|
|
27
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
28
|
+
const { logger } = configuration;
|
|
29
|
+
const clientName = "RDSClient";
|
|
30
|
+
const commandName = "DeleteTenantDatabaseCommand";
|
|
31
|
+
const handlerExecutionContext = {
|
|
32
|
+
logger,
|
|
33
|
+
clientName,
|
|
34
|
+
commandName,
|
|
35
|
+
inputFilterSensitiveLog: (_) => _,
|
|
36
|
+
outputFilterSensitiveLog: models_0_1.DeleteTenantDatabaseResultFilterSensitiveLog,
|
|
37
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
+
service: "AmazonRDSv19",
|
|
39
|
+
operation: "DeleteTenantDatabase",
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
const { requestHandler } = configuration;
|
|
43
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
+
}
|
|
45
|
+
serialize(input, context) {
|
|
46
|
+
return (0, Aws_query_1.se_DeleteTenantDatabaseCommand)(input, context);
|
|
47
|
+
}
|
|
48
|
+
deserialize(output, context) {
|
|
49
|
+
return (0, Aws_query_1.de_DeleteTenantDatabaseCommand)(output, context);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.DeleteTenantDatabaseCommand = DeleteTenantDatabaseCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeDBSnapshotTenantDatabasesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
10
|
+
class DescribeDBSnapshotTenantDatabasesCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeDBSnapshotTenantDatabasesCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "RDSClient";
|
|
29
|
+
const commandName = "DescribeDBSnapshotTenantDatabasesCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonRDSv19",
|
|
38
|
+
operation: "DescribeDBSnapshotTenantDatabases",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_query_1.se_DescribeDBSnapshotTenantDatabasesCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_query_1.de_DescribeDBSnapshotTenantDatabasesCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DescribeDBSnapshotTenantDatabasesCommand = DescribeDBSnapshotTenantDatabasesCommand;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeTenantDatabasesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const models_1_1 = require("../models/models_1");
|
|
10
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
11
|
+
class DescribeTenantDatabasesCommand extends smithy_client_1.Command {
|
|
12
|
+
static getEndpointParameterInstructions() {
|
|
13
|
+
return {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
constructor(input) {
|
|
21
|
+
super();
|
|
22
|
+
this.input = input;
|
|
23
|
+
}
|
|
24
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
25
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
26
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeTenantDatabasesCommand.getEndpointParameterInstructions()));
|
|
27
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
28
|
+
const { logger } = configuration;
|
|
29
|
+
const clientName = "RDSClient";
|
|
30
|
+
const commandName = "DescribeTenantDatabasesCommand";
|
|
31
|
+
const handlerExecutionContext = {
|
|
32
|
+
logger,
|
|
33
|
+
clientName,
|
|
34
|
+
commandName,
|
|
35
|
+
inputFilterSensitiveLog: (_) => _,
|
|
36
|
+
outputFilterSensitiveLog: models_1_1.TenantDatabasesMessageFilterSensitiveLog,
|
|
37
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
+
service: "AmazonRDSv19",
|
|
39
|
+
operation: "DescribeTenantDatabases",
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
const { requestHandler } = configuration;
|
|
43
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
+
}
|
|
45
|
+
serialize(input, context) {
|
|
46
|
+
return (0, Aws_query_1.se_DescribeTenantDatabasesCommand)(input, context);
|
|
47
|
+
}
|
|
48
|
+
deserialize(output, context) {
|
|
49
|
+
return (0, Aws_query_1.de_DescribeTenantDatabasesCommand)(output, context);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.DescribeTenantDatabasesCommand = DescribeTenantDatabasesCommand;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ModifyTenantDatabaseCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const models_1_1 = require("../models/models_1");
|
|
10
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
11
|
+
class ModifyTenantDatabaseCommand extends smithy_client_1.Command {
|
|
12
|
+
static getEndpointParameterInstructions() {
|
|
13
|
+
return {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
constructor(input) {
|
|
21
|
+
super();
|
|
22
|
+
this.input = input;
|
|
23
|
+
}
|
|
24
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
25
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
26
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ModifyTenantDatabaseCommand.getEndpointParameterInstructions()));
|
|
27
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
28
|
+
const { logger } = configuration;
|
|
29
|
+
const clientName = "RDSClient";
|
|
30
|
+
const commandName = "ModifyTenantDatabaseCommand";
|
|
31
|
+
const handlerExecutionContext = {
|
|
32
|
+
logger,
|
|
33
|
+
clientName,
|
|
34
|
+
commandName,
|
|
35
|
+
inputFilterSensitiveLog: models_1_1.ModifyTenantDatabaseMessageFilterSensitiveLog,
|
|
36
|
+
outputFilterSensitiveLog: models_1_1.ModifyTenantDatabaseResultFilterSensitiveLog,
|
|
37
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
+
service: "AmazonRDSv19",
|
|
39
|
+
operation: "ModifyTenantDatabase",
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
const { requestHandler } = configuration;
|
|
43
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
+
}
|
|
45
|
+
serialize(input, context) {
|
|
46
|
+
return (0, Aws_query_1.se_ModifyTenantDatabaseCommand)(input, context);
|
|
47
|
+
}
|
|
48
|
+
deserialize(output, context) {
|
|
49
|
+
return (0, Aws_query_1.de_ModifyTenantDatabaseCommand)(output, context);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.ModifyTenantDatabaseCommand = ModifyTenantDatabaseCommand;
|
|
@@ -32,6 +32,7 @@ tslib_1.__exportStar(require("./CreateEventSubscriptionCommand"), exports);
|
|
|
32
32
|
tslib_1.__exportStar(require("./CreateGlobalClusterCommand"), exports);
|
|
33
33
|
tslib_1.__exportStar(require("./CreateIntegrationCommand"), exports);
|
|
34
34
|
tslib_1.__exportStar(require("./CreateOptionGroupCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./CreateTenantDatabaseCommand"), exports);
|
|
35
36
|
tslib_1.__exportStar(require("./DeleteBlueGreenDeploymentCommand"), exports);
|
|
36
37
|
tslib_1.__exportStar(require("./DeleteCustomDBEngineVersionCommand"), exports);
|
|
37
38
|
tslib_1.__exportStar(require("./DeleteDBClusterAutomatedBackupCommand"), exports);
|
|
@@ -51,6 +52,7 @@ tslib_1.__exportStar(require("./DeleteEventSubscriptionCommand"), exports);
|
|
|
51
52
|
tslib_1.__exportStar(require("./DeleteGlobalClusterCommand"), exports);
|
|
52
53
|
tslib_1.__exportStar(require("./DeleteIntegrationCommand"), exports);
|
|
53
54
|
tslib_1.__exportStar(require("./DeleteOptionGroupCommand"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./DeleteTenantDatabaseCommand"), exports);
|
|
54
56
|
tslib_1.__exportStar(require("./DeregisterDBProxyTargetsCommand"), exports);
|
|
55
57
|
tslib_1.__exportStar(require("./DescribeAccountAttributesCommand"), exports);
|
|
56
58
|
tslib_1.__exportStar(require("./DescribeBlueGreenDeploymentsCommand"), exports);
|
|
@@ -75,6 +77,7 @@ tslib_1.__exportStar(require("./DescribeDBProxyTargetGroupsCommand"), exports);
|
|
|
75
77
|
tslib_1.__exportStar(require("./DescribeDBProxyTargetsCommand"), exports);
|
|
76
78
|
tslib_1.__exportStar(require("./DescribeDBSecurityGroupsCommand"), exports);
|
|
77
79
|
tslib_1.__exportStar(require("./DescribeDBSnapshotAttributesCommand"), exports);
|
|
80
|
+
tslib_1.__exportStar(require("./DescribeDBSnapshotTenantDatabasesCommand"), exports);
|
|
78
81
|
tslib_1.__exportStar(require("./DescribeDBSnapshotsCommand"), exports);
|
|
79
82
|
tslib_1.__exportStar(require("./DescribeDBSubnetGroupsCommand"), exports);
|
|
80
83
|
tslib_1.__exportStar(require("./DescribeEngineDefaultClusterParametersCommand"), exports);
|
|
@@ -92,6 +95,7 @@ tslib_1.__exportStar(require("./DescribePendingMaintenanceActionsCommand"), expo
|
|
|
92
95
|
tslib_1.__exportStar(require("./DescribeReservedDBInstancesCommand"), exports);
|
|
93
96
|
tslib_1.__exportStar(require("./DescribeReservedDBInstancesOfferingsCommand"), exports);
|
|
94
97
|
tslib_1.__exportStar(require("./DescribeSourceRegionsCommand"), exports);
|
|
98
|
+
tslib_1.__exportStar(require("./DescribeTenantDatabasesCommand"), exports);
|
|
95
99
|
tslib_1.__exportStar(require("./DescribeValidDBInstanceModificationsCommand"), exports);
|
|
96
100
|
tslib_1.__exportStar(require("./DownloadDBLogFilePortionCommand"), exports);
|
|
97
101
|
tslib_1.__exportStar(require("./FailoverDBClusterCommand"), exports);
|
|
@@ -116,6 +120,7 @@ tslib_1.__exportStar(require("./ModifyDBSubnetGroupCommand"), exports);
|
|
|
116
120
|
tslib_1.__exportStar(require("./ModifyEventSubscriptionCommand"), exports);
|
|
117
121
|
tslib_1.__exportStar(require("./ModifyGlobalClusterCommand"), exports);
|
|
118
122
|
tslib_1.__exportStar(require("./ModifyOptionGroupCommand"), exports);
|
|
123
|
+
tslib_1.__exportStar(require("./ModifyTenantDatabaseCommand"), exports);
|
|
119
124
|
tslib_1.__exportStar(require("./PromoteReadReplicaCommand"), exports);
|
|
120
125
|
tslib_1.__exportStar(require("./PromoteReadReplicaDBClusterCommand"), exports);
|
|
121
126
|
tslib_1.__exportStar(require("./PurchaseReservedDBInstancesOfferingCommand"), exports);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
3
|
+
exports.CustomDBEngineVersionAlreadyExistsFault = exports.CreateCustomDBEngineVersionFault = exports.SourceDatabaseNotSupportedFault = exports.SourceClusterNotSupportedFault = exports.InstanceQuotaExceededFault = exports.DBClusterQuotaExceededFault = exports.DBClusterParameterGroupNotFoundFault = exports.BlueGreenDeploymentAlreadyExistsFault = exports.OptionGroupQuotaExceededFault = exports.OptionGroupNotFoundFault = exports.OptionGroupAlreadyExistsFault = exports.InvalidDBSnapshotStateFault = exports.DBSnapshotAlreadyExistsFault = exports.CustomAvailabilityZoneNotFoundFault = exports.SnapshotQuotaExceededFault = exports.KMSKeyNotAccessibleFault = exports.InvalidDBClusterSnapshotStateFault = exports.DBClusterSnapshotNotFoundFault = exports.DBClusterSnapshotAlreadyExistsFault = exports.DBParameterGroupQuotaExceededFault = exports.DBParameterGroupNotFoundFault = exports.DBParameterGroupAlreadyExistsFault = exports.InvalidExportTaskStateFault = exports.ExportTaskNotFoundFault = exports.ExportSourceType = exports.InvalidDBSecurityGroupStateFault = exports.DBSecurityGroupNotFoundFault = exports.AuthorizationQuotaExceededFault = exports.AuthorizationAlreadyExistsFault = exports.ResourceNotFoundFault = exports.TenantDatabaseNotFoundFault = exports.IntegrationNotFoundFault = exports.DBSnapshotTenantDatabaseNotFoundFault = exports.DBSnapshotNotFoundFault = exports.DBProxyTargetGroupNotFoundFault = exports.DBProxyNotFoundFault = exports.BlueGreenDeploymentNotFoundFault = exports.SubscriptionNotFoundFault = exports.SourceNotFoundFault = exports.InvalidDBInstanceStateFault = exports.DBInstanceRoleQuotaExceededFault = exports.DBInstanceRoleAlreadyExistsFault = exports.DBInstanceNotFoundFault = exports.InvalidDBClusterStateFault = exports.DBClusterRoleQuotaExceededFault = exports.DBClusterRoleAlreadyExistsFault = exports.DBClusterNotFoundFault = exports.ActivityStreamStatus = exports.ActivityStreamPolicyStatus = exports.ActivityStreamMode = void 0;
|
|
4
|
+
exports.SNSInvalidTopicFault = exports.EventSubscriptionQuotaExceededFault = exports.DBSubnetQuotaExceededFault = exports.DBSubnetGroupQuotaExceededFault = exports.DBSubnetGroupAlreadyExistsFault = exports.DBSecurityGroupQuotaExceededFault = exports.DBSecurityGroupNotSupportedFault = exports.DBSecurityGroupAlreadyExistsFault = exports.InvalidDBProxyStateFault = exports.DBProxyEndpointQuotaExceededFault = exports.DBProxyEndpointAlreadyExistsFault = exports.DBProxyEndpointStatus = exports.DBProxyEndpointTargetRole = exports.DBProxyQuotaExceededFault = exports.DBProxyAlreadyExistsFault = exports.DBProxyStatus = exports.EngineFamily = exports.IAMAuthMode = exports.ClientPasswordAuthType = exports.AuthScheme = exports.InvalidDBSubnetGroupFault = exports.DBSubnetGroupNotAllowedFault = exports.TenantDatabaseQuotaExceededFault = exports.StorageTypeNotSupportedFault = exports.ProvisionedIopsNotAvailableInAZFault = exports.NetworkTypeNotSupported = exports.InsufficientDBInstanceCapacityFault = exports.DBInstanceAlreadyExistsFault = exports.ReplicaMode = exports.AutomationMode = exports.CertificateNotFoundFault = exports.BackupPolicyNotFoundFault = exports.AuthorizationNotFoundFault = exports.DBClusterEndpointQuotaExceededFault = exports.DBClusterEndpointAlreadyExistsFault = exports.StorageQuotaExceededFault = exports.InvalidVPCNetworkStateFault = exports.InvalidSubnet = exports.InvalidGlobalClusterStateFault = exports.InvalidDBSubnetGroupStateFault = exports.InsufficientStorageClusterCapacityFault = exports.GlobalClusterNotFoundFault = exports.DomainNotFoundFault = exports.DBSubnetGroupNotFoundFault = exports.DBSubnetGroupDoesNotCoverEnoughAZs = exports.DBClusterAlreadyExistsFault = exports.LocalWriteForwardingStatus = exports.WriteForwardingStatus = exports.Ec2ImagePropertiesNotSupportedFault = exports.CustomDBEngineVersionQuotaExceededFault = void 0;
|
|
5
|
+
exports.DeleteTenantDatabaseResultFilterSensitiveLog = exports.CreateTenantDatabaseResultFilterSensitiveLog = exports.TenantDatabaseFilterSensitiveLog = exports.TenantDatabasePendingModifiedValuesFilterSensitiveLog = exports.CreateTenantDatabaseMessageFilterSensitiveLog = exports.DBProxyTargetNotFoundFault = exports.InvalidOptionGroupStateFault = exports.InvalidIntegrationStateFault = exports.InvalidEventSubscriptionStateFault = exports.InvalidDBSubnetStateFault = exports.InvalidDBProxyEndpointStateFault = exports.DBProxyEndpointNotFoundFault = exports.InvalidDBInstanceAutomatedBackupStateFault = exports.DBInstanceAutomatedBackupNotFoundFault = exports.DBInstanceAutomatedBackupQuotaExceededFault = exports.InvalidDBParameterGroupStateFault = exports.InvalidDBClusterEndpointStateFault = exports.DBClusterEndpointNotFoundFault = exports.InvalidDBClusterAutomatedBackupStateFault = exports.DBClusterAutomatedBackupNotFoundFault = exports.DBClusterAutomatedBackupQuotaExceededFault = exports.InvalidCustomDBEngineVersionStateFault = exports.CustomDBEngineVersionNotFoundFault = exports.InvalidBlueGreenDeploymentStateFault = exports.TenantDatabaseAlreadyExistsFault = exports.IntegrationQuotaExceededFault = exports.IntegrationConflictOperationFault = exports.IntegrationAlreadyExistsFault = exports.IntegrationStatus = exports.GlobalClusterQuotaExceededFault = exports.GlobalClusterAlreadyExistsFault = exports.GlobalClusterMemberSynchronizationStatus = exports.FailoverStatus = exports.SubscriptionCategoryNotFoundFault = exports.SubscriptionAlreadyExistFault = exports.SNSTopicArnNotFoundFault = exports.SNSNoAuthorizationFault = void 0;
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const RDSServiceException_1 = require("./RDSServiceException");
|
|
7
8
|
exports.ActivityStreamMode = {
|
|
8
9
|
async: "async",
|
|
@@ -202,6 +203,19 @@ class DBSnapshotNotFoundFault extends RDSServiceException_1.RDSServiceException
|
|
|
202
203
|
}
|
|
203
204
|
}
|
|
204
205
|
exports.DBSnapshotNotFoundFault = DBSnapshotNotFoundFault;
|
|
206
|
+
class DBSnapshotTenantDatabaseNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "DBSnapshotTenantDatabaseNotFoundFault",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
this.name = "DBSnapshotTenantDatabaseNotFoundFault";
|
|
214
|
+
this.$fault = "client";
|
|
215
|
+
Object.setPrototypeOf(this, DBSnapshotTenantDatabaseNotFoundFault.prototype);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
exports.DBSnapshotTenantDatabaseNotFoundFault = DBSnapshotTenantDatabaseNotFoundFault;
|
|
205
219
|
class IntegrationNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
206
220
|
constructor(opts) {
|
|
207
221
|
super({
|
|
@@ -215,6 +229,19 @@ class IntegrationNotFoundFault extends RDSServiceException_1.RDSServiceException
|
|
|
215
229
|
}
|
|
216
230
|
}
|
|
217
231
|
exports.IntegrationNotFoundFault = IntegrationNotFoundFault;
|
|
232
|
+
class TenantDatabaseNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "TenantDatabaseNotFoundFault",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
this.name = "TenantDatabaseNotFoundFault";
|
|
240
|
+
this.$fault = "client";
|
|
241
|
+
Object.setPrototypeOf(this, TenantDatabaseNotFoundFault.prototype);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
exports.TenantDatabaseNotFoundFault = TenantDatabaseNotFoundFault;
|
|
218
245
|
class ResourceNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
219
246
|
constructor(opts) {
|
|
220
247
|
super({
|
|
@@ -917,6 +944,19 @@ class StorageTypeNotSupportedFault extends RDSServiceException_1.RDSServiceExcep
|
|
|
917
944
|
}
|
|
918
945
|
}
|
|
919
946
|
exports.StorageTypeNotSupportedFault = StorageTypeNotSupportedFault;
|
|
947
|
+
class TenantDatabaseQuotaExceededFault extends RDSServiceException_1.RDSServiceException {
|
|
948
|
+
constructor(opts) {
|
|
949
|
+
super({
|
|
950
|
+
name: "TenantDatabaseQuotaExceededFault",
|
|
951
|
+
$fault: "client",
|
|
952
|
+
...opts,
|
|
953
|
+
});
|
|
954
|
+
this.name = "TenantDatabaseQuotaExceededFault";
|
|
955
|
+
this.$fault = "client";
|
|
956
|
+
Object.setPrototypeOf(this, TenantDatabaseQuotaExceededFault.prototype);
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
exports.TenantDatabaseQuotaExceededFault = TenantDatabaseQuotaExceededFault;
|
|
920
960
|
class DBSubnetGroupNotAllowedFault extends RDSServiceException_1.RDSServiceException {
|
|
921
961
|
constructor(opts) {
|
|
922
962
|
super({
|
|
@@ -1289,6 +1329,19 @@ class IntegrationQuotaExceededFault extends RDSServiceException_1.RDSServiceExce
|
|
|
1289
1329
|
}
|
|
1290
1330
|
}
|
|
1291
1331
|
exports.IntegrationQuotaExceededFault = IntegrationQuotaExceededFault;
|
|
1332
|
+
class TenantDatabaseAlreadyExistsFault extends RDSServiceException_1.RDSServiceException {
|
|
1333
|
+
constructor(opts) {
|
|
1334
|
+
super({
|
|
1335
|
+
name: "TenantDatabaseAlreadyExistsFault",
|
|
1336
|
+
$fault: "client",
|
|
1337
|
+
...opts,
|
|
1338
|
+
});
|
|
1339
|
+
this.name = "TenantDatabaseAlreadyExistsFault";
|
|
1340
|
+
this.$fault = "client";
|
|
1341
|
+
Object.setPrototypeOf(this, TenantDatabaseAlreadyExistsFault.prototype);
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
exports.TenantDatabaseAlreadyExistsFault = TenantDatabaseAlreadyExistsFault;
|
|
1292
1345
|
class InvalidBlueGreenDeploymentStateFault extends RDSServiceException_1.RDSServiceException {
|
|
1293
1346
|
constructor(opts) {
|
|
1294
1347
|
super({
|
|
@@ -1536,20 +1589,30 @@ class DBProxyTargetNotFoundFault extends RDSServiceException_1.RDSServiceExcepti
|
|
|
1536
1589
|
}
|
|
1537
1590
|
}
|
|
1538
1591
|
exports.DBProxyTargetNotFoundFault = DBProxyTargetNotFoundFault;
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
exports.
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1592
|
+
const CreateTenantDatabaseMessageFilterSensitiveLog = (obj) => ({
|
|
1593
|
+
...obj,
|
|
1594
|
+
...(obj.MasterUserPassword && { MasterUserPassword: smithy_client_1.SENSITIVE_STRING }),
|
|
1595
|
+
});
|
|
1596
|
+
exports.CreateTenantDatabaseMessageFilterSensitiveLog = CreateTenantDatabaseMessageFilterSensitiveLog;
|
|
1597
|
+
const TenantDatabasePendingModifiedValuesFilterSensitiveLog = (obj) => ({
|
|
1598
|
+
...obj,
|
|
1599
|
+
...(obj.MasterUserPassword && { MasterUserPassword: smithy_client_1.SENSITIVE_STRING }),
|
|
1600
|
+
});
|
|
1601
|
+
exports.TenantDatabasePendingModifiedValuesFilterSensitiveLog = TenantDatabasePendingModifiedValuesFilterSensitiveLog;
|
|
1602
|
+
const TenantDatabaseFilterSensitiveLog = (obj) => ({
|
|
1603
|
+
...obj,
|
|
1604
|
+
...(obj.PendingModifiedValues && {
|
|
1605
|
+
PendingModifiedValues: (0, exports.TenantDatabasePendingModifiedValuesFilterSensitiveLog)(obj.PendingModifiedValues),
|
|
1606
|
+
}),
|
|
1607
|
+
});
|
|
1608
|
+
exports.TenantDatabaseFilterSensitiveLog = TenantDatabaseFilterSensitiveLog;
|
|
1609
|
+
const CreateTenantDatabaseResultFilterSensitiveLog = (obj) => ({
|
|
1610
|
+
...obj,
|
|
1611
|
+
...(obj.TenantDatabase && { TenantDatabase: (0, exports.TenantDatabaseFilterSensitiveLog)(obj.TenantDatabase) }),
|
|
1612
|
+
});
|
|
1613
|
+
exports.CreateTenantDatabaseResultFilterSensitiveLog = CreateTenantDatabaseResultFilterSensitiveLog;
|
|
1614
|
+
const DeleteTenantDatabaseResultFilterSensitiveLog = (obj) => ({
|
|
1615
|
+
...obj,
|
|
1616
|
+
...(obj.TenantDatabase && { TenantDatabase: (0, exports.TenantDatabaseFilterSensitiveLog)(obj.TenantDatabase) }),
|
|
1617
|
+
});
|
|
1618
|
+
exports.DeleteTenantDatabaseResultFilterSensitiveLog = DeleteTenantDatabaseResultFilterSensitiveLog;
|