@aws-sdk/client-rds 3.438.0 → 3.441.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 +24 -0
- package/dist-cjs/RDS.js +6 -0
- package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +77 -3
- package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +466 -6
- package/dist-es/RDS.js +6 -0
- package/dist-es/commands/CreateIntegrationCommand.js +47 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +69 -0
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +455 -1
- package/dist-types/RDS.d.ts +21 -0
- package/dist-types/RDSClient.d.ts +5 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +9 -1
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -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/StartDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +256 -423
- package/dist-types/models/models_1.d.ts +481 -1
- package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +27 -0
- package/dist-types/ts3.4/RDS.d.ts +51 -0
- package/dist-types/ts3.4/RDSClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +85 -55
- package/dist-types/ts3.4/models/models_1.d.ts +71 -1
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
- package/package.json +4 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeIntegrationsCommandInput,
|
|
4
|
+
DescribeIntegrationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeIntegrationsCommand";
|
|
6
|
+
import { RDSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeIntegrations(
|
|
8
|
+
config: RDSPaginationConfiguration,
|
|
9
|
+
input: DescribeIntegrationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeIntegrationsCommandOutput>;
|
|
@@ -26,6 +26,7 @@ export * from "./DescribeEventSubscriptionsPaginator";
|
|
|
26
26
|
export * from "./DescribeEventsPaginator";
|
|
27
27
|
export * from "./DescribeExportTasksPaginator";
|
|
28
28
|
export * from "./DescribeGlobalClustersPaginator";
|
|
29
|
+
export * from "./DescribeIntegrationsPaginator";
|
|
29
30
|
export * from "./DescribeOptionGroupOptionsPaginator";
|
|
30
31
|
export * from "./DescribeOptionGroupsPaginator";
|
|
31
32
|
export * from "./DescribeOrderableDBInstanceOptionsPaginator";
|
|
@@ -119,6 +119,10 @@ import {
|
|
|
119
119
|
CreateGlobalClusterCommandInput,
|
|
120
120
|
CreateGlobalClusterCommandOutput,
|
|
121
121
|
} from "../commands/CreateGlobalClusterCommand";
|
|
122
|
+
import {
|
|
123
|
+
CreateIntegrationCommandInput,
|
|
124
|
+
CreateIntegrationCommandOutput,
|
|
125
|
+
} from "../commands/CreateIntegrationCommand";
|
|
122
126
|
import {
|
|
123
127
|
CreateOptionGroupCommandInput,
|
|
124
128
|
CreateOptionGroupCommandOutput,
|
|
@@ -191,6 +195,10 @@ import {
|
|
|
191
195
|
DeleteGlobalClusterCommandInput,
|
|
192
196
|
DeleteGlobalClusterCommandOutput,
|
|
193
197
|
} from "../commands/DeleteGlobalClusterCommand";
|
|
198
|
+
import {
|
|
199
|
+
DeleteIntegrationCommandInput,
|
|
200
|
+
DeleteIntegrationCommandOutput,
|
|
201
|
+
} from "../commands/DeleteIntegrationCommand";
|
|
194
202
|
import {
|
|
195
203
|
DeleteOptionGroupCommandInput,
|
|
196
204
|
DeleteOptionGroupCommandOutput,
|
|
@@ -327,6 +335,10 @@ import {
|
|
|
327
335
|
DescribeGlobalClustersCommandInput,
|
|
328
336
|
DescribeGlobalClustersCommandOutput,
|
|
329
337
|
} from "../commands/DescribeGlobalClustersCommand";
|
|
338
|
+
import {
|
|
339
|
+
DescribeIntegrationsCommandInput,
|
|
340
|
+
DescribeIntegrationsCommandOutput,
|
|
341
|
+
} from "../commands/DescribeIntegrationsCommand";
|
|
330
342
|
import {
|
|
331
343
|
DescribeOptionGroupOptionsCommandInput,
|
|
332
344
|
DescribeOptionGroupOptionsCommandOutput,
|
|
@@ -695,6 +707,10 @@ export declare const se_CreateGlobalClusterCommand: (
|
|
|
695
707
|
input: CreateGlobalClusterCommandInput,
|
|
696
708
|
context: __SerdeContext
|
|
697
709
|
) => Promise<__HttpRequest>;
|
|
710
|
+
export declare const se_CreateIntegrationCommand: (
|
|
711
|
+
input: CreateIntegrationCommandInput,
|
|
712
|
+
context: __SerdeContext
|
|
713
|
+
) => Promise<__HttpRequest>;
|
|
698
714
|
export declare const se_CreateOptionGroupCommand: (
|
|
699
715
|
input: CreateOptionGroupCommandInput,
|
|
700
716
|
context: __SerdeContext
|
|
@@ -767,6 +783,10 @@ export declare const se_DeleteGlobalClusterCommand: (
|
|
|
767
783
|
input: DeleteGlobalClusterCommandInput,
|
|
768
784
|
context: __SerdeContext
|
|
769
785
|
) => Promise<__HttpRequest>;
|
|
786
|
+
export declare const se_DeleteIntegrationCommand: (
|
|
787
|
+
input: DeleteIntegrationCommandInput,
|
|
788
|
+
context: __SerdeContext
|
|
789
|
+
) => Promise<__HttpRequest>;
|
|
770
790
|
export declare const se_DeleteOptionGroupCommand: (
|
|
771
791
|
input: DeleteOptionGroupCommandInput,
|
|
772
792
|
context: __SerdeContext
|
|
@@ -903,6 +923,10 @@ export declare const se_DescribeGlobalClustersCommand: (
|
|
|
903
923
|
input: DescribeGlobalClustersCommandInput,
|
|
904
924
|
context: __SerdeContext
|
|
905
925
|
) => Promise<__HttpRequest>;
|
|
926
|
+
export declare const se_DescribeIntegrationsCommand: (
|
|
927
|
+
input: DescribeIntegrationsCommandInput,
|
|
928
|
+
context: __SerdeContext
|
|
929
|
+
) => Promise<__HttpRequest>;
|
|
906
930
|
export declare const se_DescribeOptionGroupOptionsCommand: (
|
|
907
931
|
input: DescribeOptionGroupOptionsCommandInput,
|
|
908
932
|
context: __SerdeContext
|
|
@@ -1271,6 +1295,10 @@ export declare const de_CreateGlobalClusterCommand: (
|
|
|
1271
1295
|
output: __HttpResponse,
|
|
1272
1296
|
context: __SerdeContext
|
|
1273
1297
|
) => Promise<CreateGlobalClusterCommandOutput>;
|
|
1298
|
+
export declare const de_CreateIntegrationCommand: (
|
|
1299
|
+
output: __HttpResponse,
|
|
1300
|
+
context: __SerdeContext
|
|
1301
|
+
) => Promise<CreateIntegrationCommandOutput>;
|
|
1274
1302
|
export declare const de_CreateOptionGroupCommand: (
|
|
1275
1303
|
output: __HttpResponse,
|
|
1276
1304
|
context: __SerdeContext
|
|
@@ -1343,6 +1371,10 @@ export declare const de_DeleteGlobalClusterCommand: (
|
|
|
1343
1371
|
output: __HttpResponse,
|
|
1344
1372
|
context: __SerdeContext
|
|
1345
1373
|
) => Promise<DeleteGlobalClusterCommandOutput>;
|
|
1374
|
+
export declare const de_DeleteIntegrationCommand: (
|
|
1375
|
+
output: __HttpResponse,
|
|
1376
|
+
context: __SerdeContext
|
|
1377
|
+
) => Promise<DeleteIntegrationCommandOutput>;
|
|
1346
1378
|
export declare const de_DeleteOptionGroupCommand: (
|
|
1347
1379
|
output: __HttpResponse,
|
|
1348
1380
|
context: __SerdeContext
|
|
@@ -1479,6 +1511,10 @@ export declare const de_DescribeGlobalClustersCommand: (
|
|
|
1479
1511
|
output: __HttpResponse,
|
|
1480
1512
|
context: __SerdeContext
|
|
1481
1513
|
) => Promise<DescribeGlobalClustersCommandOutput>;
|
|
1514
|
+
export declare const de_DescribeIntegrationsCommand: (
|
|
1515
|
+
output: __HttpResponse,
|
|
1516
|
+
context: __SerdeContext
|
|
1517
|
+
) => Promise<DescribeIntegrationsCommandOutput>;
|
|
1482
1518
|
export declare const de_DescribeOptionGroupOptionsCommand: (
|
|
1483
1519
|
output: __HttpResponse,
|
|
1484
1520
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.441.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.441.0",
|
|
25
|
+
"@aws-sdk/core": "3.441.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.441.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|