@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
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeTenantDatabasesMessage,
|
|
11
|
+
TenantDatabasesMessage,
|
|
12
|
+
} from "../models/models_1";
|
|
13
|
+
import {
|
|
14
|
+
RDSClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RDSClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeTenantDatabasesCommandInput
|
|
20
|
+
extends DescribeTenantDatabasesMessage {}
|
|
21
|
+
export interface DescribeTenantDatabasesCommandOutput
|
|
22
|
+
extends TenantDatabasesMessage,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeTenantDatabasesCommand extends $Command<
|
|
25
|
+
DescribeTenantDatabasesCommandInput,
|
|
26
|
+
DescribeTenantDatabasesCommandOutput,
|
|
27
|
+
RDSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeTenantDatabasesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeTenantDatabasesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: RDSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeTenantDatabasesCommandInput,
|
|
38
|
+
DescribeTenantDatabasesCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ModifyTenantDatabaseMessage,
|
|
11
|
+
ModifyTenantDatabaseResult,
|
|
12
|
+
} from "../models/models_1";
|
|
13
|
+
import {
|
|
14
|
+
RDSClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RDSClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ModifyTenantDatabaseCommandInput
|
|
20
|
+
extends ModifyTenantDatabaseMessage {}
|
|
21
|
+
export interface ModifyTenantDatabaseCommandOutput
|
|
22
|
+
extends ModifyTenantDatabaseResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ModifyTenantDatabaseCommand extends $Command<
|
|
25
|
+
ModifyTenantDatabaseCommandInput,
|
|
26
|
+
ModifyTenantDatabaseCommandOutput,
|
|
27
|
+
RDSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ModifyTenantDatabaseCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ModifyTenantDatabaseCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: RDSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ModifyTenantDatabaseCommandInput,
|
|
38
|
+
ModifyTenantDatabaseCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -29,6 +29,7 @@ export * from "./CreateEventSubscriptionCommand";
|
|
|
29
29
|
export * from "./CreateGlobalClusterCommand";
|
|
30
30
|
export * from "./CreateIntegrationCommand";
|
|
31
31
|
export * from "./CreateOptionGroupCommand";
|
|
32
|
+
export * from "./CreateTenantDatabaseCommand";
|
|
32
33
|
export * from "./DeleteBlueGreenDeploymentCommand";
|
|
33
34
|
export * from "./DeleteCustomDBEngineVersionCommand";
|
|
34
35
|
export * from "./DeleteDBClusterAutomatedBackupCommand";
|
|
@@ -48,6 +49,7 @@ export * from "./DeleteEventSubscriptionCommand";
|
|
|
48
49
|
export * from "./DeleteGlobalClusterCommand";
|
|
49
50
|
export * from "./DeleteIntegrationCommand";
|
|
50
51
|
export * from "./DeleteOptionGroupCommand";
|
|
52
|
+
export * from "./DeleteTenantDatabaseCommand";
|
|
51
53
|
export * from "./DeregisterDBProxyTargetsCommand";
|
|
52
54
|
export * from "./DescribeAccountAttributesCommand";
|
|
53
55
|
export * from "./DescribeBlueGreenDeploymentsCommand";
|
|
@@ -72,6 +74,7 @@ export * from "./DescribeDBProxyTargetGroupsCommand";
|
|
|
72
74
|
export * from "./DescribeDBProxyTargetsCommand";
|
|
73
75
|
export * from "./DescribeDBSecurityGroupsCommand";
|
|
74
76
|
export * from "./DescribeDBSnapshotAttributesCommand";
|
|
77
|
+
export * from "./DescribeDBSnapshotTenantDatabasesCommand";
|
|
75
78
|
export * from "./DescribeDBSnapshotsCommand";
|
|
76
79
|
export * from "./DescribeDBSubnetGroupsCommand";
|
|
77
80
|
export * from "./DescribeEngineDefaultClusterParametersCommand";
|
|
@@ -89,6 +92,7 @@ export * from "./DescribePendingMaintenanceActionsCommand";
|
|
|
89
92
|
export * from "./DescribeReservedDBInstancesCommand";
|
|
90
93
|
export * from "./DescribeReservedDBInstancesOfferingsCommand";
|
|
91
94
|
export * from "./DescribeSourceRegionsCommand";
|
|
95
|
+
export * from "./DescribeTenantDatabasesCommand";
|
|
92
96
|
export * from "./DescribeValidDBInstanceModificationsCommand";
|
|
93
97
|
export * from "./DownloadDBLogFilePortionCommand";
|
|
94
98
|
export * from "./FailoverDBClusterCommand";
|
|
@@ -113,6 +117,7 @@ export * from "./ModifyDBSubnetGroupCommand";
|
|
|
113
117
|
export * from "./ModifyEventSubscriptionCommand";
|
|
114
118
|
export * from "./ModifyGlobalClusterCommand";
|
|
115
119
|
export * from "./ModifyOptionGroupCommand";
|
|
120
|
+
export * from "./ModifyTenantDatabaseCommand";
|
|
116
121
|
export * from "./PromoteReadReplicaCommand";
|
|
117
122
|
export * from "./PromoteReadReplicaDBClusterCommand";
|
|
118
123
|
export * from "./PurchaseReservedDBInstancesOfferingCommand";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./RDSClient";
|
|
2
2
|
export * from "./RDS";
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { RDSExtensionConfiguration } from "./extensionConfiguration";
|
|
4
6
|
export * from "./commands";
|
|
5
7
|
export * from "./pagination";
|
|
6
8
|
export * from "./waiters";
|
|
@@ -183,6 +183,16 @@ export declare class DBSnapshotNotFoundFault extends __BaseException {
|
|
|
183
183
|
opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>
|
|
184
184
|
);
|
|
185
185
|
}
|
|
186
|
+
export declare class DBSnapshotTenantDatabaseNotFoundFault extends __BaseException {
|
|
187
|
+
readonly name: "DBSnapshotTenantDatabaseNotFoundFault";
|
|
188
|
+
readonly $fault: "client";
|
|
189
|
+
constructor(
|
|
190
|
+
opts: __ExceptionOptionType<
|
|
191
|
+
DBSnapshotTenantDatabaseNotFoundFault,
|
|
192
|
+
__BaseException
|
|
193
|
+
>
|
|
194
|
+
);
|
|
195
|
+
}
|
|
186
196
|
export declare class IntegrationNotFoundFault extends __BaseException {
|
|
187
197
|
readonly name: "IntegrationNotFoundFault";
|
|
188
198
|
readonly $fault: "client";
|
|
@@ -190,6 +200,13 @@ export declare class IntegrationNotFoundFault extends __BaseException {
|
|
|
190
200
|
opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>
|
|
191
201
|
);
|
|
192
202
|
}
|
|
203
|
+
export declare class TenantDatabaseNotFoundFault extends __BaseException {
|
|
204
|
+
readonly name: "TenantDatabaseNotFoundFault";
|
|
205
|
+
readonly $fault: "client";
|
|
206
|
+
constructor(
|
|
207
|
+
opts: __ExceptionOptionType<TenantDatabaseNotFoundFault, __BaseException>
|
|
208
|
+
);
|
|
209
|
+
}
|
|
193
210
|
export interface ApplyPendingMaintenanceActionMessage {
|
|
194
211
|
ResourceIdentifier: string | undefined;
|
|
195
212
|
ApplyAction: string | undefined;
|
|
@@ -525,6 +542,7 @@ export interface DBSnapshot {
|
|
|
525
542
|
StorageThroughput?: number;
|
|
526
543
|
DBSystemId?: string;
|
|
527
544
|
DedicatedLogVolume?: boolean;
|
|
545
|
+
MultiTenant?: boolean;
|
|
528
546
|
}
|
|
529
547
|
export interface CopyDBSnapshotResult {
|
|
530
548
|
DBSnapshot?: DBSnapshot;
|
|
@@ -824,6 +842,10 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
|
|
|
824
842
|
>
|
|
825
843
|
);
|
|
826
844
|
}
|
|
845
|
+
export interface RdsCustomClusterConfiguration {
|
|
846
|
+
InterconnectSubnetId?: string;
|
|
847
|
+
TransitGatewayMulticastDomainId?: string;
|
|
848
|
+
}
|
|
827
849
|
export interface ScalingConfiguration {
|
|
828
850
|
MinCapacity?: number;
|
|
829
851
|
MaxCapacity?: number;
|
|
@@ -863,6 +885,7 @@ export interface CreateDBClusterMessage {
|
|
|
863
885
|
EnableCloudwatchLogsExports?: string[];
|
|
864
886
|
EngineMode?: string;
|
|
865
887
|
ScalingConfiguration?: ScalingConfiguration;
|
|
888
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
866
889
|
DeletionProtection?: boolean;
|
|
867
890
|
GlobalClusterIdentifier?: string;
|
|
868
891
|
EnableHttpEndpoint?: boolean;
|
|
@@ -947,6 +970,7 @@ export interface ClusterPendingModifiedValues {
|
|
|
947
970
|
EngineVersion?: string;
|
|
948
971
|
BackupRetentionPeriod?: number;
|
|
949
972
|
AllocatedStorage?: number;
|
|
973
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
950
974
|
Iops?: number;
|
|
951
975
|
StorageType?: string;
|
|
952
976
|
}
|
|
@@ -1007,6 +1031,7 @@ export interface DBCluster {
|
|
|
1007
1031
|
Capacity?: number;
|
|
1008
1032
|
EngineMode?: string;
|
|
1009
1033
|
ScalingConfigurationInfo?: ScalingConfigurationInfo;
|
|
1034
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
1010
1035
|
DeletionProtection?: boolean;
|
|
1011
1036
|
HttpEndpointEnabled?: boolean;
|
|
1012
1037
|
ActivityStreamMode?: ActivityStreamMode;
|
|
@@ -1262,6 +1287,7 @@ export interface CreateDBInstanceMessage {
|
|
|
1262
1287
|
CACertificateIdentifier?: string;
|
|
1263
1288
|
DBSystemId?: string;
|
|
1264
1289
|
DedicatedLogVolume?: boolean;
|
|
1290
|
+
MultiTenant?: boolean;
|
|
1265
1291
|
}
|
|
1266
1292
|
export interface DBInstanceRole {
|
|
1267
1293
|
RoleArn?: string;
|
|
@@ -1337,6 +1363,7 @@ export interface PendingModifiedValues {
|
|
|
1337
1363
|
StorageThroughput?: number;
|
|
1338
1364
|
Engine?: string;
|
|
1339
1365
|
DedicatedLogVolume?: boolean;
|
|
1366
|
+
MultiTenant?: boolean;
|
|
1340
1367
|
}
|
|
1341
1368
|
export declare const ReplicaMode: {
|
|
1342
1369
|
readonly MOUNTED: "mounted";
|
|
@@ -1434,6 +1461,7 @@ export interface DBInstance {
|
|
|
1434
1461
|
PercentProgress?: string;
|
|
1435
1462
|
DedicatedLogVolume?: boolean;
|
|
1436
1463
|
IsStorageConfigUpgradeAvailable?: boolean;
|
|
1464
|
+
MultiTenant?: boolean;
|
|
1437
1465
|
}
|
|
1438
1466
|
export interface CreateDBInstanceResult {
|
|
1439
1467
|
DBInstance?: DBInstance;
|
|
@@ -1479,6 +1507,16 @@ export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
|
1479
1507
|
opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>
|
|
1480
1508
|
);
|
|
1481
1509
|
}
|
|
1510
|
+
export declare class TenantDatabaseQuotaExceededFault extends __BaseException {
|
|
1511
|
+
readonly name: "TenantDatabaseQuotaExceededFault";
|
|
1512
|
+
readonly $fault: "client";
|
|
1513
|
+
constructor(
|
|
1514
|
+
opts: __ExceptionOptionType<
|
|
1515
|
+
TenantDatabaseQuotaExceededFault,
|
|
1516
|
+
__BaseException
|
|
1517
|
+
>
|
|
1518
|
+
);
|
|
1519
|
+
}
|
|
1482
1520
|
export interface CreateDBInstanceReadReplicaMessage {
|
|
1483
1521
|
DBInstanceIdentifier: string | undefined;
|
|
1484
1522
|
SourceDBInstanceIdentifier?: string;
|
|
@@ -1998,6 +2036,47 @@ export interface CreateOptionGroupMessage {
|
|
|
1998
2036
|
export interface CreateOptionGroupResult {
|
|
1999
2037
|
OptionGroup?: OptionGroup;
|
|
2000
2038
|
}
|
|
2039
|
+
export interface CreateTenantDatabaseMessage {
|
|
2040
|
+
DBInstanceIdentifier: string | undefined;
|
|
2041
|
+
TenantDBName: string | undefined;
|
|
2042
|
+
MasterUsername: string | undefined;
|
|
2043
|
+
MasterUserPassword: string | undefined;
|
|
2044
|
+
CharacterSetName?: string;
|
|
2045
|
+
NcharCharacterSetName?: string;
|
|
2046
|
+
Tags?: Tag[];
|
|
2047
|
+
}
|
|
2048
|
+
export interface TenantDatabasePendingModifiedValues {
|
|
2049
|
+
MasterUserPassword?: string;
|
|
2050
|
+
TenantDBName?: string;
|
|
2051
|
+
}
|
|
2052
|
+
export interface TenantDatabase {
|
|
2053
|
+
TenantDatabaseCreateTime?: Date;
|
|
2054
|
+
DBInstanceIdentifier?: string;
|
|
2055
|
+
TenantDBName?: string;
|
|
2056
|
+
Status?: string;
|
|
2057
|
+
MasterUsername?: string;
|
|
2058
|
+
DbiResourceId?: string;
|
|
2059
|
+
TenantDatabaseResourceId?: string;
|
|
2060
|
+
TenantDatabaseARN?: string;
|
|
2061
|
+
CharacterSetName?: string;
|
|
2062
|
+
NcharCharacterSetName?: string;
|
|
2063
|
+
DeletionProtection?: boolean;
|
|
2064
|
+
PendingModifiedValues?: TenantDatabasePendingModifiedValues;
|
|
2065
|
+
TagList?: Tag[];
|
|
2066
|
+
}
|
|
2067
|
+
export interface CreateTenantDatabaseResult {
|
|
2068
|
+
TenantDatabase?: TenantDatabase;
|
|
2069
|
+
}
|
|
2070
|
+
export declare class TenantDatabaseAlreadyExistsFault extends __BaseException {
|
|
2071
|
+
readonly name: "TenantDatabaseAlreadyExistsFault";
|
|
2072
|
+
readonly $fault: "client";
|
|
2073
|
+
constructor(
|
|
2074
|
+
opts: __ExceptionOptionType<
|
|
2075
|
+
TenantDatabaseAlreadyExistsFault,
|
|
2076
|
+
__BaseException
|
|
2077
|
+
>
|
|
2078
|
+
);
|
|
2079
|
+
}
|
|
2001
2080
|
export interface DeleteBlueGreenDeploymentRequest {
|
|
2002
2081
|
BlueGreenDeploymentIdentifier: string | undefined;
|
|
2003
2082
|
DeleteTarget?: boolean;
|
|
@@ -2217,6 +2296,7 @@ export interface DBInstanceAutomatedBackup {
|
|
|
2217
2296
|
StorageThroughput?: number;
|
|
2218
2297
|
AwsBackupRecoveryPointArn?: string;
|
|
2219
2298
|
DedicatedLogVolume?: boolean;
|
|
2299
|
+
MultiTenant?: boolean;
|
|
2220
2300
|
}
|
|
2221
2301
|
export interface DeleteDBInstanceAutomatedBackupResult {
|
|
2222
2302
|
DBInstanceAutomatedBackup?: DBInstanceAutomatedBackup;
|
|
@@ -2324,6 +2404,15 @@ export declare class InvalidOptionGroupStateFault extends __BaseException {
|
|
|
2324
2404
|
opts: __ExceptionOptionType<InvalidOptionGroupStateFault, __BaseException>
|
|
2325
2405
|
);
|
|
2326
2406
|
}
|
|
2407
|
+
export interface DeleteTenantDatabaseMessage {
|
|
2408
|
+
DBInstanceIdentifier: string | undefined;
|
|
2409
|
+
TenantDBName: string | undefined;
|
|
2410
|
+
SkipFinalSnapshot?: boolean;
|
|
2411
|
+
FinalDBSnapshotIdentifier?: string;
|
|
2412
|
+
}
|
|
2413
|
+
export interface DeleteTenantDatabaseResult {
|
|
2414
|
+
TenantDatabase?: TenantDatabase;
|
|
2415
|
+
}
|
|
2327
2416
|
export declare class DBProxyTargetNotFoundFault extends __BaseException {
|
|
2328
2417
|
readonly name: "DBProxyTargetNotFoundFault";
|
|
2329
2418
|
readonly $fault: "client";
|
|
@@ -2378,74 +2467,18 @@ export interface DBClusterAutomatedBackupMessage {
|
|
|
2378
2467
|
Marker?: string;
|
|
2379
2468
|
DBClusterAutomatedBackups?: DBClusterAutomatedBackup[];
|
|
2380
2469
|
}
|
|
2381
|
-
export
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
opts: __ExceptionOptionType<
|
|
2397
|
-
DBClusterBacktrackNotFoundFault,
|
|
2398
|
-
__BaseException
|
|
2399
|
-
>
|
|
2400
|
-
);
|
|
2401
|
-
}
|
|
2402
|
-
export interface DescribeDBClusterBacktracksMessage {
|
|
2403
|
-
DBClusterIdentifier: string | undefined;
|
|
2404
|
-
BacktrackIdentifier?: string;
|
|
2405
|
-
Filters?: Filter[];
|
|
2406
|
-
MaxRecords?: number;
|
|
2407
|
-
Marker?: string;
|
|
2408
|
-
}
|
|
2409
|
-
export interface DBClusterEndpointMessage {
|
|
2410
|
-
Marker?: string;
|
|
2411
|
-
DBClusterEndpoints?: DBClusterEndpoint[];
|
|
2412
|
-
}
|
|
2413
|
-
export interface DescribeDBClusterEndpointsMessage {
|
|
2414
|
-
DBClusterIdentifier?: string;
|
|
2415
|
-
DBClusterEndpointIdentifier?: string;
|
|
2416
|
-
Filters?: Filter[];
|
|
2417
|
-
MaxRecords?: number;
|
|
2418
|
-
Marker?: string;
|
|
2419
|
-
}
|
|
2420
|
-
export interface DBClusterParameterGroupsMessage {
|
|
2421
|
-
Marker?: string;
|
|
2422
|
-
DBClusterParameterGroups?: DBClusterParameterGroup[];
|
|
2423
|
-
}
|
|
2424
|
-
export interface DescribeDBClusterParameterGroupsMessage {
|
|
2425
|
-
DBClusterParameterGroupName?: string;
|
|
2426
|
-
Filters?: Filter[];
|
|
2427
|
-
MaxRecords?: number;
|
|
2428
|
-
Marker?: string;
|
|
2429
|
-
}
|
|
2430
|
-
export declare const ApplyMethod: {
|
|
2431
|
-
readonly immediate: "immediate";
|
|
2432
|
-
readonly pending_reboot: "pending-reboot";
|
|
2433
|
-
};
|
|
2434
|
-
export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
|
|
2435
|
-
export interface Parameter {
|
|
2436
|
-
ParameterName?: string;
|
|
2437
|
-
ParameterValue?: string;
|
|
2438
|
-
Description?: string;
|
|
2439
|
-
Source?: string;
|
|
2440
|
-
ApplyType?: string;
|
|
2441
|
-
DataType?: string;
|
|
2442
|
-
AllowedValues?: string;
|
|
2443
|
-
IsModifiable?: boolean;
|
|
2444
|
-
MinimumEngineVersion?: string;
|
|
2445
|
-
ApplyMethod?: ApplyMethod;
|
|
2446
|
-
SupportedEngineModes?: string[];
|
|
2447
|
-
}
|
|
2448
|
-
export interface DBClusterParameterGroupDetails {
|
|
2449
|
-
Parameters?: Parameter[];
|
|
2450
|
-
Marker?: string;
|
|
2451
|
-
}
|
|
2470
|
+
export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
|
|
2471
|
+
obj: CreateTenantDatabaseMessage
|
|
2472
|
+
) => any;
|
|
2473
|
+
export declare const TenantDatabasePendingModifiedValuesFilterSensitiveLog: (
|
|
2474
|
+
obj: TenantDatabasePendingModifiedValues
|
|
2475
|
+
) => any;
|
|
2476
|
+
export declare const TenantDatabaseFilterSensitiveLog: (
|
|
2477
|
+
obj: TenantDatabase
|
|
2478
|
+
) => any;
|
|
2479
|
+
export declare const CreateTenantDatabaseResultFilterSensitiveLog: (
|
|
2480
|
+
obj: CreateTenantDatabaseResult
|
|
2481
|
+
) => any;
|
|
2482
|
+
export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (
|
|
2483
|
+
obj: DeleteTenantDatabaseResult
|
|
2484
|
+
) => any;
|
|
@@ -8,6 +8,9 @@ import {
|
|
|
8
8
|
BlueGreenDeployment,
|
|
9
9
|
Certificate,
|
|
10
10
|
DBCluster,
|
|
11
|
+
DBClusterBacktrack,
|
|
12
|
+
DBClusterEndpoint,
|
|
13
|
+
DBClusterParameterGroup,
|
|
11
14
|
DBClusterSnapshot,
|
|
12
15
|
DBEngineVersion,
|
|
13
16
|
DBInstance,
|
|
@@ -26,16 +29,88 @@ import {
|
|
|
26
29
|
Integration,
|
|
27
30
|
OptionGroup,
|
|
28
31
|
OptionSetting,
|
|
29
|
-
Parameter,
|
|
30
32
|
ProcessorFeature,
|
|
33
|
+
RdsCustomClusterConfiguration,
|
|
31
34
|
ReplicaMode,
|
|
32
35
|
ResourcePendingMaintenanceActions,
|
|
33
36
|
ScalingConfiguration,
|
|
34
37
|
ServerlessV2ScalingConfiguration,
|
|
35
38
|
Tag,
|
|
39
|
+
TenantDatabase,
|
|
36
40
|
UserAuthConfig,
|
|
37
41
|
} from "./models_0";
|
|
38
42
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
43
|
+
export interface DescribeDBClusterAutomatedBackupsMessage {
|
|
44
|
+
DbClusterResourceId?: string;
|
|
45
|
+
DBClusterIdentifier?: string;
|
|
46
|
+
Filters?: Filter[];
|
|
47
|
+
MaxRecords?: number;
|
|
48
|
+
Marker?: string;
|
|
49
|
+
}
|
|
50
|
+
export interface DBClusterBacktrackMessage {
|
|
51
|
+
Marker?: string;
|
|
52
|
+
DBClusterBacktracks?: DBClusterBacktrack[];
|
|
53
|
+
}
|
|
54
|
+
export declare class DBClusterBacktrackNotFoundFault extends __BaseException {
|
|
55
|
+
readonly name: "DBClusterBacktrackNotFoundFault";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
constructor(
|
|
58
|
+
opts: __ExceptionOptionType<
|
|
59
|
+
DBClusterBacktrackNotFoundFault,
|
|
60
|
+
__BaseException
|
|
61
|
+
>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
export interface DescribeDBClusterBacktracksMessage {
|
|
65
|
+
DBClusterIdentifier: string | undefined;
|
|
66
|
+
BacktrackIdentifier?: string;
|
|
67
|
+
Filters?: Filter[];
|
|
68
|
+
MaxRecords?: number;
|
|
69
|
+
Marker?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface DBClusterEndpointMessage {
|
|
72
|
+
Marker?: string;
|
|
73
|
+
DBClusterEndpoints?: DBClusterEndpoint[];
|
|
74
|
+
}
|
|
75
|
+
export interface DescribeDBClusterEndpointsMessage {
|
|
76
|
+
DBClusterIdentifier?: string;
|
|
77
|
+
DBClusterEndpointIdentifier?: string;
|
|
78
|
+
Filters?: Filter[];
|
|
79
|
+
MaxRecords?: number;
|
|
80
|
+
Marker?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface DBClusterParameterGroupsMessage {
|
|
83
|
+
Marker?: string;
|
|
84
|
+
DBClusterParameterGroups?: DBClusterParameterGroup[];
|
|
85
|
+
}
|
|
86
|
+
export interface DescribeDBClusterParameterGroupsMessage {
|
|
87
|
+
DBClusterParameterGroupName?: string;
|
|
88
|
+
Filters?: Filter[];
|
|
89
|
+
MaxRecords?: number;
|
|
90
|
+
Marker?: string;
|
|
91
|
+
}
|
|
92
|
+
export declare const ApplyMethod: {
|
|
93
|
+
readonly immediate: "immediate";
|
|
94
|
+
readonly pending_reboot: "pending-reboot";
|
|
95
|
+
};
|
|
96
|
+
export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
|
|
97
|
+
export interface Parameter {
|
|
98
|
+
ParameterName?: string;
|
|
99
|
+
ParameterValue?: string;
|
|
100
|
+
Description?: string;
|
|
101
|
+
Source?: string;
|
|
102
|
+
ApplyType?: string;
|
|
103
|
+
DataType?: string;
|
|
104
|
+
AllowedValues?: string;
|
|
105
|
+
IsModifiable?: boolean;
|
|
106
|
+
MinimumEngineVersion?: string;
|
|
107
|
+
ApplyMethod?: ApplyMethod;
|
|
108
|
+
SupportedEngineModes?: string[];
|
|
109
|
+
}
|
|
110
|
+
export interface DBClusterParameterGroupDetails {
|
|
111
|
+
Parameters?: Parameter[];
|
|
112
|
+
Marker?: string;
|
|
113
|
+
}
|
|
39
114
|
export interface DescribeDBClusterParametersMessage {
|
|
40
115
|
DBClusterParameterGroupName: string | undefined;
|
|
41
116
|
Source?: string;
|
|
@@ -301,6 +376,34 @@ export interface DescribeDBSnapshotsMessage {
|
|
|
301
376
|
IncludePublic?: boolean;
|
|
302
377
|
DbiResourceId?: string;
|
|
303
378
|
}
|
|
379
|
+
export interface DBSnapshotTenantDatabase {
|
|
380
|
+
DBSnapshotIdentifier?: string;
|
|
381
|
+
DBInstanceIdentifier?: string;
|
|
382
|
+
DbiResourceId?: string;
|
|
383
|
+
EngineName?: string;
|
|
384
|
+
SnapshotType?: string;
|
|
385
|
+
TenantDatabaseCreateTime?: Date;
|
|
386
|
+
TenantDBName?: string;
|
|
387
|
+
MasterUsername?: string;
|
|
388
|
+
TenantDatabaseResourceId?: string;
|
|
389
|
+
CharacterSetName?: string;
|
|
390
|
+
DBSnapshotTenantDatabaseARN?: string;
|
|
391
|
+
NcharCharacterSetName?: string;
|
|
392
|
+
TagList?: Tag[];
|
|
393
|
+
}
|
|
394
|
+
export interface DBSnapshotTenantDatabasesMessage {
|
|
395
|
+
Marker?: string;
|
|
396
|
+
DBSnapshotTenantDatabases?: DBSnapshotTenantDatabase[];
|
|
397
|
+
}
|
|
398
|
+
export interface DescribeDBSnapshotTenantDatabasesMessage {
|
|
399
|
+
DBInstanceIdentifier?: string;
|
|
400
|
+
DBSnapshotIdentifier?: string;
|
|
401
|
+
SnapshotType?: string;
|
|
402
|
+
Filters?: Filter[];
|
|
403
|
+
MaxRecords?: number;
|
|
404
|
+
Marker?: string;
|
|
405
|
+
DbiResourceId?: string;
|
|
406
|
+
}
|
|
304
407
|
export interface DBSubnetGroupMessage {
|
|
305
408
|
Marker?: string;
|
|
306
409
|
DBSubnetGroups?: DBSubnetGroup[];
|
|
@@ -652,6 +755,17 @@ export interface SourceRegionMessage {
|
|
|
652
755
|
Marker?: string;
|
|
653
756
|
SourceRegions?: SourceRegion[];
|
|
654
757
|
}
|
|
758
|
+
export interface DescribeTenantDatabasesMessage {
|
|
759
|
+
DBInstanceIdentifier?: string;
|
|
760
|
+
TenantDBName?: string;
|
|
761
|
+
Filters?: Filter[];
|
|
762
|
+
Marker?: string;
|
|
763
|
+
MaxRecords?: number;
|
|
764
|
+
}
|
|
765
|
+
export interface TenantDatabasesMessage {
|
|
766
|
+
Marker?: string;
|
|
767
|
+
TenantDatabases?: TenantDatabase[];
|
|
768
|
+
}
|
|
655
769
|
export interface DescribeValidDBInstanceModificationsMessage {
|
|
656
770
|
DBInstanceIdentifier: string | undefined;
|
|
657
771
|
}
|
|
@@ -941,6 +1055,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
941
1055
|
MasterUserSecretKmsKeyId?: string;
|
|
942
1056
|
Engine?: string;
|
|
943
1057
|
DedicatedLogVolume?: boolean;
|
|
1058
|
+
MultiTenant?: boolean;
|
|
944
1059
|
}
|
|
945
1060
|
export interface ModifyDBInstanceResult {
|
|
946
1061
|
DBInstance?: DBInstance;
|
|
@@ -1056,6 +1171,15 @@ export interface ModifyOptionGroupMessage {
|
|
|
1056
1171
|
export interface ModifyOptionGroupResult {
|
|
1057
1172
|
OptionGroup?: OptionGroup;
|
|
1058
1173
|
}
|
|
1174
|
+
export interface ModifyTenantDatabaseMessage {
|
|
1175
|
+
DBInstanceIdentifier: string | undefined;
|
|
1176
|
+
TenantDBName: string | undefined;
|
|
1177
|
+
MasterUserPassword?: string;
|
|
1178
|
+
NewTenantDBName?: string;
|
|
1179
|
+
}
|
|
1180
|
+
export interface ModifyTenantDatabaseResult {
|
|
1181
|
+
TenantDatabase?: TenantDatabase;
|
|
1182
|
+
}
|
|
1059
1183
|
export interface PromoteReadReplicaMessage {
|
|
1060
1184
|
DBInstanceIdentifier: string | undefined;
|
|
1061
1185
|
BackupRetentionPeriod?: number;
|
|
@@ -1287,6 +1411,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
1287
1411
|
PubliclyAccessible?: boolean;
|
|
1288
1412
|
ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
|
|
1289
1413
|
NetworkType?: string;
|
|
1414
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
1290
1415
|
}
|
|
1291
1416
|
export interface RestoreDBClusterFromSnapshotResult {
|
|
1292
1417
|
DBCluster?: DBCluster;
|
|
@@ -1320,6 +1445,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
1320
1445
|
ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
|
|
1321
1446
|
NetworkType?: string;
|
|
1322
1447
|
SourceDbClusterResourceId?: string;
|
|
1448
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
1323
1449
|
}
|
|
1324
1450
|
export interface RestoreDBClusterToPointInTimeResult {
|
|
1325
1451
|
DBCluster?: DBCluster;
|
|
@@ -1620,3 +1746,12 @@ export interface SwitchoverReadReplicaMessage {
|
|
|
1620
1746
|
export interface SwitchoverReadReplicaResult {
|
|
1621
1747
|
DBInstance?: DBInstance;
|
|
1622
1748
|
}
|
|
1749
|
+
export declare const TenantDatabasesMessageFilterSensitiveLog: (
|
|
1750
|
+
obj: TenantDatabasesMessage
|
|
1751
|
+
) => any;
|
|
1752
|
+
export declare const ModifyTenantDatabaseMessageFilterSensitiveLog: (
|
|
1753
|
+
obj: ModifyTenantDatabaseMessage
|
|
1754
|
+
) => any;
|
|
1755
|
+
export declare const ModifyTenantDatabaseResultFilterSensitiveLog: (
|
|
1756
|
+
obj: ModifyTenantDatabaseResult
|
|
1757
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeDBSnapshotTenantDatabasesCommandInput,
|
|
4
|
+
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDBSnapshotTenantDatabasesCommand";
|
|
6
|
+
import { RDSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeDBSnapshotTenantDatabases(
|
|
8
|
+
config: RDSPaginationConfiguration,
|
|
9
|
+
input: DescribeDBSnapshotTenantDatabasesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeDBSnapshotTenantDatabasesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeTenantDatabasesCommandInput,
|
|
4
|
+
DescribeTenantDatabasesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeTenantDatabasesCommand";
|
|
6
|
+
import { RDSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeTenantDatabases(
|
|
8
|
+
config: RDSPaginationConfiguration,
|
|
9
|
+
input: DescribeTenantDatabasesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeTenantDatabasesCommandOutput>;
|
|
@@ -19,6 +19,7 @@ export * from "./DescribeDBProxyEndpointsPaginator";
|
|
|
19
19
|
export * from "./DescribeDBProxyTargetGroupsPaginator";
|
|
20
20
|
export * from "./DescribeDBProxyTargetsPaginator";
|
|
21
21
|
export * from "./DescribeDBSecurityGroupsPaginator";
|
|
22
|
+
export * from "./DescribeDBSnapshotTenantDatabasesPaginator";
|
|
22
23
|
export * from "./DescribeDBSnapshotsPaginator";
|
|
23
24
|
export * from "./DescribeDBSubnetGroupsPaginator";
|
|
24
25
|
export * from "./DescribeEngineDefaultParametersPaginator";
|
|
@@ -34,4 +35,5 @@ export * from "./DescribePendingMaintenanceActionsPaginator";
|
|
|
34
35
|
export * from "./DescribeReservedDBInstancesOfferingsPaginator";
|
|
35
36
|
export * from "./DescribeReservedDBInstancesPaginator";
|
|
36
37
|
export * from "./DescribeSourceRegionsPaginator";
|
|
38
|
+
export * from "./DescribeTenantDatabasesPaginator";
|
|
37
39
|
export * from "./DownloadDBLogFilePortionPaginator";
|