@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
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DescribeDBMajorEngineVersionsRequest, DescribeDBMajorEngineVersionsResponse } from "../models/models_1";
|
|
4
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeDBMajorEngineVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeDBMajorEngineVersionsCommandInput extends DescribeDBMajorEngineVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeDBMajorEngineVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeDBMajorEngineVersionsCommandOutput extends DescribeDBMajorEngineVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeDBMajorEngineVersionsCommand_base: {
|
|
25
|
+
new (input: DescribeDBMajorEngineVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDBMajorEngineVersionsCommandInput, DescribeDBMajorEngineVersionsCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [DescribeDBMajorEngineVersionsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeDBMajorEngineVersionsCommandInput, DescribeDBMajorEngineVersionsCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Describes the properties of specific major versions of DB engines.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { RDSClient, DescribeDBMajorEngineVersionsCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
35
|
+
* // const { RDSClient, DescribeDBMajorEngineVersionsCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
36
|
+
* const client = new RDSClient(config);
|
|
37
|
+
* const input = { // DescribeDBMajorEngineVersionsRequest
|
|
38
|
+
* Engine: "STRING_VALUE",
|
|
39
|
+
* MajorEngineVersion: "STRING_VALUE",
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* MaxRecords: Number("int"),
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DescribeDBMajorEngineVersionsCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // DescribeDBMajorEngineVersionsResponse
|
|
46
|
+
* // DBMajorEngineVersions: [ // DBMajorEngineVersionsList
|
|
47
|
+
* // { // DBMajorEngineVersion
|
|
48
|
+
* // Engine: "STRING_VALUE",
|
|
49
|
+
* // MajorEngineVersion: "STRING_VALUE",
|
|
50
|
+
* // SupportedEngineLifecycles: [ // SupportedEngineLifecycleList
|
|
51
|
+
* // { // SupportedEngineLifecycle
|
|
52
|
+
* // LifecycleSupportName: "open-source-rds-standard-support" || "open-source-rds-extended-support", // required
|
|
53
|
+
* // LifecycleSupportStartDate: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // LifecycleSupportEndDate: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // Marker: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
62
|
+
* ```
|
|
63
|
+
*
|
|
64
|
+
* @param DescribeDBMajorEngineVersionsCommandInput - {@link DescribeDBMajorEngineVersionsCommandInput}
|
|
65
|
+
* @returns {@link DescribeDBMajorEngineVersionsCommandOutput}
|
|
66
|
+
* @see {@link DescribeDBMajorEngineVersionsCommandInput} for command's `input` shape.
|
|
67
|
+
* @see {@link DescribeDBMajorEngineVersionsCommandOutput} for command's `response` shape.
|
|
68
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link RDSServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
72
|
+
*
|
|
73
|
+
*
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class DescribeDBMajorEngineVersionsCommand extends DescribeDBMajorEngineVersionsCommand_base {
|
|
77
|
+
/** @internal type navigation helper, not in runtime. */
|
|
78
|
+
protected static __types: {
|
|
79
|
+
api: {
|
|
80
|
+
input: DescribeDBMajorEngineVersionsRequest;
|
|
81
|
+
output: DescribeDBMajorEngineVersionsResponse;
|
|
82
|
+
};
|
|
83
|
+
sdk: {
|
|
84
|
+
input: DescribeDBMajorEngineVersionsCommandInput;
|
|
85
|
+
output: DescribeDBMajorEngineVersionsCommandOutput;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
}
|
|
@@ -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";
|
|
@@ -4636,11 +4636,11 @@ export interface CreateDBClusterMessage {
|
|
|
4636
4636
|
* you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:</p>
|
|
4637
4637
|
* <ul>
|
|
4638
4638
|
* <li>
|
|
4639
|
-
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">
|
|
4639
|
+
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>
|
|
4640
4640
|
* </p>
|
|
4641
4641
|
* </li>
|
|
4642
4642
|
* <li>
|
|
4643
|
-
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
4643
|
+
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>
|
|
4644
4644
|
* </p>
|
|
4645
4645
|
* </li>
|
|
4646
4646
|
* </ul>
|
|
@@ -5652,7 +5652,7 @@ export interface DBCluster {
|
|
|
5652
5652
|
*/
|
|
5653
5653
|
CertificateDetails?: CertificateDetails | undefined;
|
|
5654
5654
|
/**
|
|
5655
|
-
* <p>The
|
|
5655
|
+
* <p>The lifecycle type for the DB cluster.</p>
|
|
5656
5656
|
* <p>For more information, see CreateDBCluster.</p>
|
|
5657
5657
|
* @public
|
|
5658
5658
|
*/
|
|
@@ -7570,7 +7570,7 @@ export interface CreateDBInstanceMessage {
|
|
|
7570
7570
|
* </note>
|
|
7571
7571
|
* <p>This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.</p>
|
|
7572
7572
|
* <p>You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support,
|
|
7573
|
-
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
7573
|
+
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
7574
7574
|
* <p>Valid Values: <code>open-source-rds-extended-support | open-source-rds-extended-support-disabled</code>
|
|
7575
7575
|
* </p>
|
|
7576
7576
|
* <p>Default: <code>open-source-rds-extended-support</code>
|
|
@@ -8643,7 +8643,7 @@ export interface DBInstance {
|
|
|
8643
8643
|
*/
|
|
8644
8644
|
MultiTenant?: boolean | undefined;
|
|
8645
8645
|
/**
|
|
8646
|
-
* <p>The
|
|
8646
|
+
* <p>The lifecycle type for the DB instance.</p>
|
|
8647
8647
|
* <p>For more information, see CreateDBInstance.</p>
|
|
8648
8648
|
* @public
|
|
8649
8649
|
*/
|
|
@@ -10753,7 +10753,7 @@ export interface CreateGlobalClusterMessage {
|
|
|
10753
10753
|
* </note>
|
|
10754
10754
|
* <p>This setting only applies to Aurora PostgreSQL-based global databases.</p>
|
|
10755
10755
|
* <p>You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support,
|
|
10756
|
-
* you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">
|
|
10756
|
+
* you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
10757
10757
|
* <p>Valid Values: <code>open-source-rds-extended-support | open-source-rds-extended-support-disabled</code>
|
|
10758
10758
|
* </p>
|
|
10759
10759
|
* <p>Default: <code>open-source-rds-extended-support</code>
|
|
@@ -10943,7 +10943,7 @@ export interface GlobalCluster {
|
|
|
10943
10943
|
*/
|
|
10944
10944
|
EngineVersion?: string | undefined;
|
|
10945
10945
|
/**
|
|
10946
|
-
* <p>The
|
|
10946
|
+
* <p>The lifecycle type for the global cluster.</p>
|
|
10947
10947
|
* <p>For more information, see CreateGlobalCluster.</p>
|
|
10948
10948
|
* @public
|
|
10949
10949
|
*/
|
|
@@ -1746,6 +1746,228 @@ export interface DescribeDBLogFilesResponse {
|
|
|
1746
1746
|
*/
|
|
1747
1747
|
Marker?: string | undefined;
|
|
1748
1748
|
}
|
|
1749
|
+
/**
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1752
|
+
export interface DescribeDBMajorEngineVersionsRequest {
|
|
1753
|
+
/**
|
|
1754
|
+
* <p>The database engine to return major version details for.</p>
|
|
1755
|
+
* <p>Valid Values:</p>
|
|
1756
|
+
* <ul>
|
|
1757
|
+
* <li>
|
|
1758
|
+
* <p>
|
|
1759
|
+
* <code>aurora-mysql</code>
|
|
1760
|
+
* </p>
|
|
1761
|
+
* </li>
|
|
1762
|
+
* <li>
|
|
1763
|
+
* <p>
|
|
1764
|
+
* <code>aurora-postgresql</code>
|
|
1765
|
+
* </p>
|
|
1766
|
+
* </li>
|
|
1767
|
+
* <li>
|
|
1768
|
+
* <p>
|
|
1769
|
+
* <code>custom-sqlserver-ee</code>
|
|
1770
|
+
* </p>
|
|
1771
|
+
* </li>
|
|
1772
|
+
* <li>
|
|
1773
|
+
* <p>
|
|
1774
|
+
* <code>custom-sqlserver-se</code>
|
|
1775
|
+
* </p>
|
|
1776
|
+
* </li>
|
|
1777
|
+
* <li>
|
|
1778
|
+
* <p>
|
|
1779
|
+
* <code>custom-sqlserver-web</code>
|
|
1780
|
+
* </p>
|
|
1781
|
+
* </li>
|
|
1782
|
+
* <li>
|
|
1783
|
+
* <p>
|
|
1784
|
+
* <code>db2-ae</code>
|
|
1785
|
+
* </p>
|
|
1786
|
+
* </li>
|
|
1787
|
+
* <li>
|
|
1788
|
+
* <p>
|
|
1789
|
+
* <code>db2-se</code>
|
|
1790
|
+
* </p>
|
|
1791
|
+
* </li>
|
|
1792
|
+
* <li>
|
|
1793
|
+
* <p>
|
|
1794
|
+
* <code>mariadb</code>
|
|
1795
|
+
* </p>
|
|
1796
|
+
* </li>
|
|
1797
|
+
* <li>
|
|
1798
|
+
* <p>
|
|
1799
|
+
* <code>mysql</code>
|
|
1800
|
+
* </p>
|
|
1801
|
+
* </li>
|
|
1802
|
+
* <li>
|
|
1803
|
+
* <p>
|
|
1804
|
+
* <code>oracle-ee</code>
|
|
1805
|
+
* </p>
|
|
1806
|
+
* </li>
|
|
1807
|
+
* <li>
|
|
1808
|
+
* <p>
|
|
1809
|
+
* <code>oracle-ee-cdb</code>
|
|
1810
|
+
* </p>
|
|
1811
|
+
* </li>
|
|
1812
|
+
* <li>
|
|
1813
|
+
* <p>
|
|
1814
|
+
* <code>oracle-se2</code>
|
|
1815
|
+
* </p>
|
|
1816
|
+
* </li>
|
|
1817
|
+
* <li>
|
|
1818
|
+
* <p>
|
|
1819
|
+
* <code>oracle-se2-cdb</code>
|
|
1820
|
+
* </p>
|
|
1821
|
+
* </li>
|
|
1822
|
+
* <li>
|
|
1823
|
+
* <p>
|
|
1824
|
+
* <code>postgres</code>
|
|
1825
|
+
* </p>
|
|
1826
|
+
* </li>
|
|
1827
|
+
* <li>
|
|
1828
|
+
* <p>
|
|
1829
|
+
* <code>sqlserver-ee</code>
|
|
1830
|
+
* </p>
|
|
1831
|
+
* </li>
|
|
1832
|
+
* <li>
|
|
1833
|
+
* <p>
|
|
1834
|
+
* <code>sqlserver-se</code>
|
|
1835
|
+
* </p>
|
|
1836
|
+
* </li>
|
|
1837
|
+
* <li>
|
|
1838
|
+
* <p>
|
|
1839
|
+
* <code>sqlserver-ex</code>
|
|
1840
|
+
* </p>
|
|
1841
|
+
* </li>
|
|
1842
|
+
* <li>
|
|
1843
|
+
* <p>
|
|
1844
|
+
* <code>sqlserver-web</code>
|
|
1845
|
+
* </p>
|
|
1846
|
+
* </li>
|
|
1847
|
+
* </ul>
|
|
1848
|
+
* @public
|
|
1849
|
+
*/
|
|
1850
|
+
Engine?: string | undefined;
|
|
1851
|
+
/**
|
|
1852
|
+
* <p>A specific database major engine version to return details for.</p>
|
|
1853
|
+
* <p>Example: <code>8.4</code>
|
|
1854
|
+
* </p>
|
|
1855
|
+
* @public
|
|
1856
|
+
*/
|
|
1857
|
+
MajorEngineVersion?: string | undefined;
|
|
1858
|
+
/**
|
|
1859
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
1860
|
+
* specified, the response includes only records beyond the marker, up to the value
|
|
1861
|
+
* specified by <code>MaxRecords</code>.</p>
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1864
|
+
Marker?: string | undefined;
|
|
1865
|
+
/**
|
|
1866
|
+
* <p>The maximum number of records to include in the response.
|
|
1867
|
+
* If more than the <code>MaxRecords</code> value is available, a pagination token called a marker is
|
|
1868
|
+
* included in the response so you can retrieve the remaining results.</p>
|
|
1869
|
+
* <p>Default: 100</p>
|
|
1870
|
+
* @public
|
|
1871
|
+
*/
|
|
1872
|
+
MaxRecords?: number | undefined;
|
|
1873
|
+
}
|
|
1874
|
+
/**
|
|
1875
|
+
* @public
|
|
1876
|
+
* @enum
|
|
1877
|
+
*/
|
|
1878
|
+
export declare const LifecycleSupportName: {
|
|
1879
|
+
readonly OPEN_SOURCE_RDS_EXTENDED_SUPPORT: "open-source-rds-extended-support";
|
|
1880
|
+
readonly OPEN_SOURCE_RDS_STANDARD_SUPPORT: "open-source-rds-standard-support";
|
|
1881
|
+
};
|
|
1882
|
+
/**
|
|
1883
|
+
* @public
|
|
1884
|
+
*/
|
|
1885
|
+
export type LifecycleSupportName = (typeof LifecycleSupportName)[keyof typeof LifecycleSupportName];
|
|
1886
|
+
/**
|
|
1887
|
+
* <p>This data type is used as a response element in the operation
|
|
1888
|
+
* <code>DescribeDBMajorEngineVersions</code>.</p>
|
|
1889
|
+
* <p>You can use the information that this data type returns to plan for upgrades.</p>
|
|
1890
|
+
* <p>This data type only returns information for the open source engines Amazon RDS for
|
|
1891
|
+
* MariaDB, Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora
|
|
1892
|
+
* PostgreSQL.</p>
|
|
1893
|
+
* @public
|
|
1894
|
+
*/
|
|
1895
|
+
export interface SupportedEngineLifecycle {
|
|
1896
|
+
/**
|
|
1897
|
+
* <p>The type of lifecycle support that the engine version is in.</p>
|
|
1898
|
+
* <p>This parameter returns the following values:</p>
|
|
1899
|
+
* <ul>
|
|
1900
|
+
* <li>
|
|
1901
|
+
* <p>
|
|
1902
|
+
* <code>open-source-rds-standard-support</code> - Indicates RDS standard support or Aurora standard support.</p>
|
|
1903
|
+
* </li>
|
|
1904
|
+
* <li>
|
|
1905
|
+
* <p>
|
|
1906
|
+
* <code>open-source-rds-extended-support</code> - Indicates Amazon RDS Extended Support.</p>
|
|
1907
|
+
* </li>
|
|
1908
|
+
* </ul>
|
|
1909
|
+
* <p>For Amazon RDS for MySQL, Amazon RDS for PostgreSQL, Aurora MySQL, and Aurora
|
|
1910
|
+
* PostgreSQL, this parameter returns both <code>open-source-rds-standard-support</code>
|
|
1911
|
+
* and <code>open-source-rds-extended-support</code>.</p>
|
|
1912
|
+
* <p>For Amazon RDS for MariaDB, this parameter only returns the value
|
|
1913
|
+
* <code>open-source-rds-standard-support</code>.</p>
|
|
1914
|
+
* <p>For information about Amazon RDS Extended Support, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support
|
|
1915
|
+
* with Amazon RDS</a> in the <i>Amazon RDS User Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon
|
|
1916
|
+
* Aurora User Guide</i>.</p>
|
|
1917
|
+
* @public
|
|
1918
|
+
*/
|
|
1919
|
+
LifecycleSupportName: LifecycleSupportName | undefined;
|
|
1920
|
+
/**
|
|
1921
|
+
* <p>The start date for the type of support returned by <code>LifecycleSupportName</code>.</p>
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1924
|
+
LifecycleSupportStartDate: Date | undefined;
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>The end date for the type of support returned by <code>LifecycleSupportName</code>.</p>
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
LifecycleSupportEndDate: Date | undefined;
|
|
1930
|
+
}
|
|
1931
|
+
/**
|
|
1932
|
+
* <p>This data type is used as a response element in the operation
|
|
1933
|
+
* <code>DescribeDBMajorEngineVersions</code>.</p>
|
|
1934
|
+
* @public
|
|
1935
|
+
*/
|
|
1936
|
+
export interface DBMajorEngineVersion {
|
|
1937
|
+
/**
|
|
1938
|
+
* <p>The name of the database engine.</p>
|
|
1939
|
+
* @public
|
|
1940
|
+
*/
|
|
1941
|
+
Engine?: string | undefined;
|
|
1942
|
+
/**
|
|
1943
|
+
* <p>The major version number of the database engine.</p>
|
|
1944
|
+
* @public
|
|
1945
|
+
*/
|
|
1946
|
+
MajorEngineVersion?: string | undefined;
|
|
1947
|
+
/**
|
|
1948
|
+
* <p>A list of the lifecycles supported by this engine for the
|
|
1949
|
+
* <code>DescribeDBMajorEngineVersions</code> operation.</p>
|
|
1950
|
+
* @public
|
|
1951
|
+
*/
|
|
1952
|
+
SupportedEngineLifecycles?: SupportedEngineLifecycle[] | undefined;
|
|
1953
|
+
}
|
|
1954
|
+
/**
|
|
1955
|
+
* @public
|
|
1956
|
+
*/
|
|
1957
|
+
export interface DescribeDBMajorEngineVersionsResponse {
|
|
1958
|
+
/**
|
|
1959
|
+
* <p>A list of <code>DBMajorEngineVersion</code> elements.</p>
|
|
1960
|
+
* @public
|
|
1961
|
+
*/
|
|
1962
|
+
DBMajorEngineVersions?: DBMajorEngineVersion[] | undefined;
|
|
1963
|
+
/**
|
|
1964
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
1965
|
+
* specified, the response includes only records beyond the marker, up to the value
|
|
1966
|
+
* specified by <code>MaxRecords</code>.</p>
|
|
1967
|
+
* @public
|
|
1968
|
+
*/
|
|
1969
|
+
Marker?: string | undefined;
|
|
1970
|
+
}
|
|
1749
1971
|
/**
|
|
1750
1972
|
* <p>Contains the result of a successful invocation of the <code>DescribeDBParameterGroups</code> action.</p>
|
|
1751
1973
|
* @public
|
|
@@ -10536,11 +10758,11 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
10536
10758
|
* you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:</p>
|
|
10537
10759
|
* <ul>
|
|
10538
10760
|
* <li>
|
|
10539
|
-
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">
|
|
10761
|
+
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>
|
|
10540
10762
|
* </p>
|
|
10541
10763
|
* </li>
|
|
10542
10764
|
* <li>
|
|
10543
|
-
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
10765
|
+
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>
|
|
10544
10766
|
* </p>
|
|
10545
10767
|
* </li>
|
|
10546
10768
|
* </ul>
|
|
@@ -11057,11 +11279,11 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
11057
11279
|
* you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:</p>
|
|
11058
11280
|
* <ul>
|
|
11059
11281
|
* <li>
|
|
11060
|
-
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">
|
|
11282
|
+
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>
|
|
11061
11283
|
* </p>
|
|
11062
11284
|
* </li>
|
|
11063
11285
|
* <li>
|
|
11064
|
-
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
11286
|
+
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>
|
|
11065
11287
|
* </p>
|
|
11066
11288
|
* </li>
|
|
11067
11289
|
* </ul>
|
|
@@ -11544,11 +11766,11 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
11544
11766
|
* you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:</p>
|
|
11545
11767
|
* <ul>
|
|
11546
11768
|
* <li>
|
|
11547
|
-
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">
|
|
11769
|
+
* <p>Amazon Aurora - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html">Amazon RDS Extended Support with Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>
|
|
11548
11770
|
* </p>
|
|
11549
11771
|
* </li>
|
|
11550
11772
|
* <li>
|
|
11551
|
-
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
11773
|
+
* <p>Amazon RDS - <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>
|
|
11552
11774
|
* </p>
|
|
11553
11775
|
* </li>
|
|
11554
11776
|
* </ul>
|
|
@@ -12166,7 +12388,7 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
|
|
|
12166
12388
|
* RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.</p>
|
|
12167
12389
|
* </note>
|
|
12168
12390
|
* <p>You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support,
|
|
12169
|
-
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
12391
|
+
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
12170
12392
|
* <p>This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.</p>
|
|
12171
12393
|
* <p>Valid Values: <code>open-source-rds-extended-support | open-source-rds-extended-support-disabled</code>
|
|
12172
12394
|
* </p>
|
|
@@ -12784,7 +13006,7 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
12784
13006
|
* RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.</p>
|
|
12785
13007
|
* </note>
|
|
12786
13008
|
* <p>You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support,
|
|
12787
|
-
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
13009
|
+
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support Amazon RDS</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
12788
13010
|
* <p>This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.</p>
|
|
12789
13011
|
* <p>Valid Values: <code>open-source-rds-extended-support | open-source-rds-extended-support-disabled</code>
|
|
12790
13012
|
* </p>
|
|
@@ -13458,7 +13680,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
13458
13680
|
* RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date.</p>
|
|
13459
13681
|
* </note>
|
|
13460
13682
|
* <p>You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support,
|
|
13461
|
-
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">
|
|
13683
|
+
* you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html">Amazon RDS Extended Support with Amazon RDS</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
13462
13684
|
* <p>This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.</p>
|
|
13463
13685
|
* <p>Valid Values: <code>open-source-rds-extended-support | open-source-rds-extended-support-disabled</code>
|
|
13464
13686
|
* </p>
|
|
@@ -13886,32 +14108,11 @@ export interface StartExportTaskMessage {
|
|
|
13886
14108
|
* These can be set in the Amazon Web Services KMS key policy:</p>
|
|
13887
14109
|
* <ul>
|
|
13888
14110
|
* <li>
|
|
13889
|
-
* <p>kms:Encrypt</p>
|
|
13890
|
-
* </li>
|
|
13891
|
-
* <li>
|
|
13892
|
-
* <p>kms:Decrypt</p>
|
|
13893
|
-
* </li>
|
|
13894
|
-
* <li>
|
|
13895
|
-
* <p>kms:GenerateDataKey</p>
|
|
13896
|
-
* </li>
|
|
13897
|
-
* <li>
|
|
13898
|
-
* <p>kms:GenerateDataKeyWithoutPlaintext</p>
|
|
13899
|
-
* </li>
|
|
13900
|
-
* <li>
|
|
13901
|
-
* <p>kms:ReEncryptFrom</p>
|
|
13902
|
-
* </li>
|
|
13903
|
-
* <li>
|
|
13904
|
-
* <p>kms:ReEncryptTo</p>
|
|
13905
|
-
* </li>
|
|
13906
|
-
* <li>
|
|
13907
14111
|
* <p>kms:CreateGrant</p>
|
|
13908
14112
|
* </li>
|
|
13909
14113
|
* <li>
|
|
13910
14114
|
* <p>kms:DescribeKey</p>
|
|
13911
14115
|
* </li>
|
|
13912
|
-
* <li>
|
|
13913
|
-
* <p>kms:RetireGrant</p>
|
|
13914
|
-
* </li>
|
|
13915
14116
|
* </ul>
|
|
13916
14117
|
* @public
|
|
13917
14118
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeDBMajorEngineVersionsCommandInput, DescribeDBMajorEngineVersionsCommandOutput } from "../commands/DescribeDBMajorEngineVersionsCommand";
|
|
3
|
+
import { RDSPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeDBMajorEngineVersions: (config: RDSPaginationConfiguration, input: DescribeDBMajorEngineVersionsCommandInput, ...rest: any[]) => 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";
|
|
@@ -70,6 +70,7 @@ import { DescribeDBEngineVersionsCommandInput, DescribeDBEngineVersionsCommandOu
|
|
|
70
70
|
import { DescribeDBInstanceAutomatedBackupsCommandInput, DescribeDBInstanceAutomatedBackupsCommandOutput } from "../commands/DescribeDBInstanceAutomatedBackupsCommand";
|
|
71
71
|
import { DescribeDBInstancesCommandInput, DescribeDBInstancesCommandOutput } from "../commands/DescribeDBInstancesCommand";
|
|
72
72
|
import { DescribeDBLogFilesCommandInput, DescribeDBLogFilesCommandOutput } from "../commands/DescribeDBLogFilesCommand";
|
|
73
|
+
import { DescribeDBMajorEngineVersionsCommandInput, DescribeDBMajorEngineVersionsCommandOutput } from "../commands/DescribeDBMajorEngineVersionsCommand";
|
|
73
74
|
import { DescribeDBParameterGroupsCommandInput, DescribeDBParameterGroupsCommandOutput } from "../commands/DescribeDBParameterGroupsCommand";
|
|
74
75
|
import { DescribeDBParametersCommandInput, DescribeDBParametersCommandOutput } from "../commands/DescribeDBParametersCommand";
|
|
75
76
|
import { DescribeDBProxiesCommandInput, DescribeDBProxiesCommandOutput } from "../commands/DescribeDBProxiesCommand";
|
|
@@ -442,6 +443,10 @@ export declare const se_DescribeDBInstancesCommand: (input: DescribeDBInstancesC
|
|
|
442
443
|
* serializeAws_queryDescribeDBLogFilesCommand
|
|
443
444
|
*/
|
|
444
445
|
export declare const se_DescribeDBLogFilesCommand: (input: DescribeDBLogFilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
446
|
+
/**
|
|
447
|
+
* serializeAws_queryDescribeDBMajorEngineVersionsCommand
|
|
448
|
+
*/
|
|
449
|
+
export declare const se_DescribeDBMajorEngineVersionsCommand: (input: DescribeDBMajorEngineVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
445
450
|
/**
|
|
446
451
|
* serializeAws_queryDescribeDBParameterGroupsCommand
|
|
447
452
|
*/
|
|
@@ -1090,6 +1095,10 @@ export declare const de_DescribeDBInstancesCommand: (output: __HttpResponse, con
|
|
|
1090
1095
|
* deserializeAws_queryDescribeDBLogFilesCommand
|
|
1091
1096
|
*/
|
|
1092
1097
|
export declare const de_DescribeDBLogFilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDBLogFilesCommandOutput>;
|
|
1098
|
+
/**
|
|
1099
|
+
* deserializeAws_queryDescribeDBMajorEngineVersionsCommand
|
|
1100
|
+
*/
|
|
1101
|
+
export declare const de_DescribeDBMajorEngineVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
1093
1102
|
/**
|
|
1094
1103
|
* deserializeAws_queryDescribeDBParameterGroupsCommand
|
|
1095
1104
|
*/
|
|
@@ -279,6 +279,10 @@ import {
|
|
|
279
279
|
DescribeDBLogFilesCommandInput,
|
|
280
280
|
DescribeDBLogFilesCommandOutput,
|
|
281
281
|
} from "./commands/DescribeDBLogFilesCommand";
|
|
282
|
+
import {
|
|
283
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
284
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
285
|
+
} from "./commands/DescribeDBMajorEngineVersionsCommand";
|
|
282
286
|
import {
|
|
283
287
|
DescribeDBParameterGroupsCommandInput,
|
|
284
288
|
DescribeDBParameterGroupsCommandOutput,
|
|
@@ -1596,6 +1600,20 @@ export interface RDS {
|
|
|
1596
1600
|
options: __HttpHandlerOptions,
|
|
1597
1601
|
cb: (err: any, data?: DescribeDBLogFilesCommandOutput) => void
|
|
1598
1602
|
): void;
|
|
1603
|
+
describeDBMajorEngineVersions(): Promise<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
1604
|
+
describeDBMajorEngineVersions(
|
|
1605
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
1606
|
+
options?: __HttpHandlerOptions
|
|
1607
|
+
): Promise<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
1608
|
+
describeDBMajorEngineVersions(
|
|
1609
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
1610
|
+
cb: (err: any, data?: DescribeDBMajorEngineVersionsCommandOutput) => void
|
|
1611
|
+
): void;
|
|
1612
|
+
describeDBMajorEngineVersions(
|
|
1613
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
1614
|
+
options: __HttpHandlerOptions,
|
|
1615
|
+
cb: (err: any, data?: DescribeDBMajorEngineVersionsCommandOutput) => void
|
|
1616
|
+
): void;
|
|
1599
1617
|
describeDBParameterGroups(): Promise<DescribeDBParameterGroupsCommandOutput>;
|
|
1600
1618
|
describeDBParameterGroups(
|
|
1601
1619
|
args: DescribeDBParameterGroupsCommandInput,
|
|
@@ -325,6 +325,10 @@ import {
|
|
|
325
325
|
DescribeDBLogFilesCommandInput,
|
|
326
326
|
DescribeDBLogFilesCommandOutput,
|
|
327
327
|
} from "./commands/DescribeDBLogFilesCommand";
|
|
328
|
+
import {
|
|
329
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
330
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
331
|
+
} from "./commands/DescribeDBMajorEngineVersionsCommand";
|
|
328
332
|
import {
|
|
329
333
|
DescribeDBParameterGroupsCommandInput,
|
|
330
334
|
DescribeDBParameterGroupsCommandOutput,
|
|
@@ -771,6 +775,7 @@ export type ServiceInputTypes =
|
|
|
771
775
|
| DescribeDBInstanceAutomatedBackupsCommandInput
|
|
772
776
|
| DescribeDBInstancesCommandInput
|
|
773
777
|
| DescribeDBLogFilesCommandInput
|
|
778
|
+
| DescribeDBMajorEngineVersionsCommandInput
|
|
774
779
|
| DescribeDBParameterGroupsCommandInput
|
|
775
780
|
| DescribeDBParametersCommandInput
|
|
776
781
|
| DescribeDBProxiesCommandInput
|
|
@@ -934,6 +939,7 @@ export type ServiceOutputTypes =
|
|
|
934
939
|
| DescribeDBInstanceAutomatedBackupsCommandOutput
|
|
935
940
|
| DescribeDBInstancesCommandOutput
|
|
936
941
|
| DescribeDBLogFilesCommandOutput
|
|
942
|
+
| DescribeDBMajorEngineVersionsCommandOutput
|
|
937
943
|
| DescribeDBParameterGroupsCommandOutput
|
|
938
944
|
| DescribeDBParametersCommandOutput
|
|
939
945
|
| DescribeDBProxiesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeDBMajorEngineVersionsRequest,
|
|
5
|
+
DescribeDBMajorEngineVersionsResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
7
|
+
import {
|
|
8
|
+
RDSClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RDSClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeDBMajorEngineVersionsCommandInput
|
|
15
|
+
extends DescribeDBMajorEngineVersionsRequest {}
|
|
16
|
+
export interface DescribeDBMajorEngineVersionsCommandOutput
|
|
17
|
+
extends DescribeDBMajorEngineVersionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeDBMajorEngineVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeDBMajorEngineVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
24
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
25
|
+
RDSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeDBMajorEngineVersionsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeDBMajorEngineVersionsCommandInput,
|
|
33
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
34
|
+
RDSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeDBMajorEngineVersionsCommand extends DescribeDBMajorEngineVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeDBMajorEngineVersionsRequest;
|
|
44
|
+
output: DescribeDBMajorEngineVersionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeDBMajorEngineVersionsCommandInput;
|
|
48
|
+
output: DescribeDBMajorEngineVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|