@aws-sdk/client-rds 3.812.0 → 3.814.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 +8 -0
- package/dist-cjs/index.js +127 -0
- package/dist-es/RDS.js +2 -0
- package/dist-es/commands/DescribeDBMajorEngineVersionsCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/pagination/DescribeDBMajorEngineVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +103 -0
- package/dist-types/RDS.d.ts +8 -0
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/DescribeDBMajorEngineVersionsCommand.d.ts +88 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +7 -7
- package/dist-types/models/models_1.d.ts +231 -30
- package/dist-types/pagination/DescribeDBMajorEngineVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/RDS.d.ts +18 -0
- package/dist-types/ts3.4/RDSClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeDBMajorEngineVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +26 -0
- package/dist-types/ts3.4/pagination/DescribeDBMajorEngineVersionsPaginator.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 +12 -0
- package/package.json +1 -1
|
@@ -68,6 +68,7 @@ export * from "./DescribeDBEngineVersionsCommand";
|
|
|
68
68
|
export * from "./DescribeDBInstanceAutomatedBackupsCommand";
|
|
69
69
|
export * from "./DescribeDBInstancesCommand";
|
|
70
70
|
export * from "./DescribeDBLogFilesCommand";
|
|
71
|
+
export * from "./DescribeDBMajorEngineVersionsCommand";
|
|
71
72
|
export * from "./DescribeDBParameterGroupsCommand";
|
|
72
73
|
export * from "./DescribeDBParametersCommand";
|
|
73
74
|
export * from "./DescribeDBProxiesCommand";
|
|
@@ -294,6 +294,32 @@ export interface DescribeDBLogFilesResponse {
|
|
|
294
294
|
DescribeDBLogFiles?: DescribeDBLogFilesDetails[] | undefined;
|
|
295
295
|
Marker?: string | undefined;
|
|
296
296
|
}
|
|
297
|
+
export interface DescribeDBMajorEngineVersionsRequest {
|
|
298
|
+
Engine?: string | undefined;
|
|
299
|
+
MajorEngineVersion?: string | undefined;
|
|
300
|
+
Marker?: string | undefined;
|
|
301
|
+
MaxRecords?: number | undefined;
|
|
302
|
+
}
|
|
303
|
+
export declare const LifecycleSupportName: {
|
|
304
|
+
readonly OPEN_SOURCE_RDS_EXTENDED_SUPPORT: "open-source-rds-extended-support";
|
|
305
|
+
readonly OPEN_SOURCE_RDS_STANDARD_SUPPORT: "open-source-rds-standard-support";
|
|
306
|
+
};
|
|
307
|
+
export type LifecycleSupportName =
|
|
308
|
+
(typeof LifecycleSupportName)[keyof typeof LifecycleSupportName];
|
|
309
|
+
export interface SupportedEngineLifecycle {
|
|
310
|
+
LifecycleSupportName: LifecycleSupportName | undefined;
|
|
311
|
+
LifecycleSupportStartDate: Date | undefined;
|
|
312
|
+
LifecycleSupportEndDate: Date | undefined;
|
|
313
|
+
}
|
|
314
|
+
export interface DBMajorEngineVersion {
|
|
315
|
+
Engine?: string | undefined;
|
|
316
|
+
MajorEngineVersion?: string | undefined;
|
|
317
|
+
SupportedEngineLifecycles?: SupportedEngineLifecycle[] | undefined;
|
|
318
|
+
}
|
|
319
|
+
export interface DescribeDBMajorEngineVersionsResponse {
|
|
320
|
+
DBMajorEngineVersions?: DBMajorEngineVersion[] | undefined;
|
|
321
|
+
Marker?: string | undefined;
|
|
322
|
+
}
|
|
297
323
|
export interface DBParameterGroupsMessage {
|
|
298
324
|
Marker?: string | undefined;
|
|
299
325
|
DBParameterGroups?: DBParameterGroup[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
4
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDBMajorEngineVersionsCommand";
|
|
6
|
+
import { RDSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeDBMajorEngineVersions: (
|
|
8
|
+
config: RDSPaginationConfiguration,
|
|
9
|
+
input: DescribeDBMajorEngineVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
@@ -12,6 +12,7 @@ export * from "./Interfaces";
|
|
|
12
12
|
export * from "./DescribeDBInstanceAutomatedBackupsPaginator";
|
|
13
13
|
export * from "./DescribeDBInstancesPaginator";
|
|
14
14
|
export * from "./DescribeDBLogFilesPaginator";
|
|
15
|
+
export * from "./DescribeDBMajorEngineVersionsPaginator";
|
|
15
16
|
export * from "./DescribeDBParameterGroupsPaginator";
|
|
16
17
|
export * from "./DescribeDBParametersPaginator";
|
|
17
18
|
export * from "./DescribeDBProxiesPaginator";
|
|
@@ -283,6 +283,10 @@ import {
|
|
|
283
283
|
DescribeDBLogFilesCommandInput,
|
|
284
284
|
DescribeDBLogFilesCommandOutput,
|
|
285
285
|
} from "../commands/DescribeDBLogFilesCommand";
|
|
286
|
+
import {
|
|
287
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
288
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
289
|
+
} from "../commands/DescribeDBMajorEngineVersionsCommand";
|
|
286
290
|
import {
|
|
287
291
|
DescribeDBParameterGroupsCommandInput,
|
|
288
292
|
DescribeDBParameterGroupsCommandOutput,
|
|
@@ -931,6 +935,10 @@ export declare const se_DescribeDBLogFilesCommand: (
|
|
|
931
935
|
input: DescribeDBLogFilesCommandInput,
|
|
932
936
|
context: __SerdeContext
|
|
933
937
|
) => Promise<__HttpRequest>;
|
|
938
|
+
export declare const se_DescribeDBMajorEngineVersionsCommand: (
|
|
939
|
+
input: DescribeDBMajorEngineVersionsCommandInput,
|
|
940
|
+
context: __SerdeContext
|
|
941
|
+
) => Promise<__HttpRequest>;
|
|
934
942
|
export declare const se_DescribeDBParameterGroupsCommand: (
|
|
935
943
|
input: DescribeDBParameterGroupsCommandInput,
|
|
936
944
|
context: __SerdeContext
|
|
@@ -1579,6 +1587,10 @@ export declare const de_DescribeDBLogFilesCommand: (
|
|
|
1579
1587
|
output: __HttpResponse,
|
|
1580
1588
|
context: __SerdeContext
|
|
1581
1589
|
) => Promise<DescribeDBLogFilesCommandOutput>;
|
|
1590
|
+
export declare const de_DescribeDBMajorEngineVersionsCommand: (
|
|
1591
|
+
output: __HttpResponse,
|
|
1592
|
+
context: __SerdeContext
|
|
1593
|
+
) => Promise<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
1582
1594
|
export declare const de_DescribeDBParameterGroupsCommand: (
|
|
1583
1595
|
output: __HttpResponse,
|
|
1584
1596
|
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.814.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds",
|