@aws-sdk/client-rds 3.1030.0 → 3.1031.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 +7 -0
- package/dist-cjs/index.js +18 -0
- package/dist-cjs/schemas/schemas_0.js +36 -8
- package/dist-es/RDS.js +4 -0
- package/dist-es/commands/DescribeServerlessV2PlatformVersionsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/pagination/DescribeServerlessV2PlatformVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +28 -0
- package/dist-types/RDS.d.ts +15 -0
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/DescribeServerlessV2PlatformVersionsCommand.d.ts +160 -0
- package/dist-types/commands/DescribeSourceRegionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTenantDatabasesCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +57 -36
- package/dist-types/models/models_1.d.ts +72 -0
- package/dist-types/pagination/DescribeServerlessV2PlatformVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/RDS.d.ts +31 -0
- package/dist-types/ts3.4/RDSClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeServerlessV2PlatformVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeSourceRegionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTenantDatabasesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -14
- package/dist-types/ts3.4/models/models_1.d.ts +17 -0
- package/dist-types/ts3.4/pagination/DescribeServerlessV2PlatformVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +36 -36
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DescribeServerlessV2PlatformVersionsMessage, ServerlessV2PlatformVersionsMessage } from "../models/models_0";
|
|
4
|
+
import type { 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 DescribeServerlessV2PlatformVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeServerlessV2PlatformVersionsCommandInput extends DescribeServerlessV2PlatformVersionsMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeServerlessV2PlatformVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeServerlessV2PlatformVersionsCommandOutput extends ServerlessV2PlatformVersionsMessage, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeServerlessV2PlatformVersionsCommand_base: {
|
|
25
|
+
new (input: DescribeServerlessV2PlatformVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeServerlessV2PlatformVersionsCommandInput, DescribeServerlessV2PlatformVersionsCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [DescribeServerlessV2PlatformVersionsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeServerlessV2PlatformVersionsCommandInput, DescribeServerlessV2PlatformVersionsCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Describes the properties of specific platform versions for Aurora Serverless v2.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { RDSClient, DescribeServerlessV2PlatformVersionsCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
35
|
+
* // const { RDSClient, DescribeServerlessV2PlatformVersionsCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
36
|
+
* // import type { RDSClientConfig } from "@aws-sdk/client-rds";
|
|
37
|
+
* const config = {}; // type is RDSClientConfig
|
|
38
|
+
* const client = new RDSClient(config);
|
|
39
|
+
* const input = { // DescribeServerlessV2PlatformVersionsMessage
|
|
40
|
+
* ServerlessV2PlatformVersion: "STRING_VALUE",
|
|
41
|
+
* Engine: "STRING_VALUE",
|
|
42
|
+
* Filters: [ // FilterList
|
|
43
|
+
* { // Filter
|
|
44
|
+
* Name: "STRING_VALUE", // required
|
|
45
|
+
* Values: [ // FilterValueList // required
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* DefaultOnly: true || false,
|
|
51
|
+
* IncludeAll: true || false,
|
|
52
|
+
* MaxRecords: Number("int"),
|
|
53
|
+
* Marker: "STRING_VALUE",
|
|
54
|
+
* };
|
|
55
|
+
* const command = new DescribeServerlessV2PlatformVersionsCommand(input);
|
|
56
|
+
* const response = await client.send(command);
|
|
57
|
+
* // { // ServerlessV2PlatformVersionsMessage
|
|
58
|
+
* // Marker: "STRING_VALUE",
|
|
59
|
+
* // ServerlessV2PlatformVersions: [ // ServerlessV2PlatformVersionList
|
|
60
|
+
* // { // ServerlessV2PlatformVersionInfo
|
|
61
|
+
* // ServerlessV2PlatformVersion: "STRING_VALUE",
|
|
62
|
+
* // ServerlessV2PlatformVersionDescription: "STRING_VALUE",
|
|
63
|
+
* // Engine: "STRING_VALUE",
|
|
64
|
+
* // ServerlessV2FeaturesSupport: { // ServerlessV2FeaturesSupport
|
|
65
|
+
* // MinCapacity: Number("double"),
|
|
66
|
+
* // MaxCapacity: Number("double"),
|
|
67
|
+
* // },
|
|
68
|
+
* // Status: "STRING_VALUE",
|
|
69
|
+
* // IsDefault: true || false,
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* @param DescribeServerlessV2PlatformVersionsCommandInput - {@link DescribeServerlessV2PlatformVersionsCommandInput}
|
|
77
|
+
* @returns {@link DescribeServerlessV2PlatformVersionsCommandOutput}
|
|
78
|
+
* @see {@link DescribeServerlessV2PlatformVersionsCommandInput} for command's `input` shape.
|
|
79
|
+
* @see {@link DescribeServerlessV2PlatformVersionsCommandOutput} for command's `response` shape.
|
|
80
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link RDSServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @example To describe the serverless platform versions for the Aurora MySQL DB engine
|
|
87
|
+
* ```javascript
|
|
88
|
+
* // The following example displays details about each of the serverless platform versions for the specified DB engine.
|
|
89
|
+
* const input = {
|
|
90
|
+
* Engine: "aurora-mysql"
|
|
91
|
+
* };
|
|
92
|
+
* const command = new DescribeServerlessV2PlatformVersionsCommand(input);
|
|
93
|
+
* const response = await client.send(command);
|
|
94
|
+
* /* response is
|
|
95
|
+
* {
|
|
96
|
+
* ServerlessV2PlatformVersions: [
|
|
97
|
+
* {
|
|
98
|
+
* Engine: "aurora-mysql",
|
|
99
|
+
* IsDefault: true,
|
|
100
|
+
* ServerlessV2FeaturesSupport: {
|
|
101
|
+
* MaxCapacity: 256.0,
|
|
102
|
+
* MinCapacity: 0.0
|
|
103
|
+
* },
|
|
104
|
+
* ServerlessV2PlatformVersion: "4",
|
|
105
|
+
* ServerlessV2PlatformVersionDescription: "Version 4 offering scaling up to 256 ACUs, and performance improvement up to 30% compared to version 3",
|
|
106
|
+
* Status: "enabled"
|
|
107
|
+
* },
|
|
108
|
+
* {
|
|
109
|
+
* Engine: "aurora-mysql",
|
|
110
|
+
* IsDefault: false,
|
|
111
|
+
* ServerlessV2FeaturesSupport: {
|
|
112
|
+
* MaxCapacity: 256.0,
|
|
113
|
+
* MinCapacity: 0.0
|
|
114
|
+
* },
|
|
115
|
+
* ServerlessV2PlatformVersion: "3",
|
|
116
|
+
* ServerlessV2PlatformVersionDescription: "Version 3 offering scaling up to 256 ACUs, and performance improvement up to 30% compared to version 2",
|
|
117
|
+
* Status: "enabled"
|
|
118
|
+
* },
|
|
119
|
+
* {
|
|
120
|
+
* Engine: "aurora-mysql",
|
|
121
|
+
* IsDefault: false,
|
|
122
|
+
* ServerlessV2FeaturesSupport: {
|
|
123
|
+
* MaxCapacity: 256.0,
|
|
124
|
+
* MinCapacity: 0.0
|
|
125
|
+
* },
|
|
126
|
+
* ServerlessV2PlatformVersion: "2",
|
|
127
|
+
* ServerlessV2PlatformVersionDescription: "Version 2 offering scaling up to 256 ACUs",
|
|
128
|
+
* Status: "enabled"
|
|
129
|
+
* },
|
|
130
|
+
* {
|
|
131
|
+
* Engine: "aurora-mysql",
|
|
132
|
+
* IsDefault: false,
|
|
133
|
+
* ServerlessV2FeaturesSupport: {
|
|
134
|
+
* MaxCapacity: 128.0,
|
|
135
|
+
* MinCapacity: 0.0
|
|
136
|
+
* },
|
|
137
|
+
* ServerlessV2PlatformVersion: "1",
|
|
138
|
+
* ServerlessV2PlatformVersionDescription: "Version 1 offering scaling up to 128 ACUs",
|
|
139
|
+
* Status: "enabled"
|
|
140
|
+
* }
|
|
141
|
+
* ]
|
|
142
|
+
* }
|
|
143
|
+
* *\/
|
|
144
|
+
* ```
|
|
145
|
+
*
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
export declare class DescribeServerlessV2PlatformVersionsCommand extends DescribeServerlessV2PlatformVersionsCommand_base {
|
|
149
|
+
/** @internal type navigation helper, not in runtime. */
|
|
150
|
+
protected static __types: {
|
|
151
|
+
api: {
|
|
152
|
+
input: DescribeServerlessV2PlatformVersionsMessage;
|
|
153
|
+
output: ServerlessV2PlatformVersionsMessage;
|
|
154
|
+
};
|
|
155
|
+
sdk: {
|
|
156
|
+
input: DescribeServerlessV2PlatformVersionsCommandInput;
|
|
157
|
+
output: DescribeServerlessV2PlatformVersionsCommandOutput;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DescribeSourceRegionsMessage
|
|
3
|
+
import type { DescribeSourceRegionsMessage } from "../models/models_0";
|
|
4
|
+
import type { SourceRegionMessage } from "../models/models_1";
|
|
4
5
|
import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DescribeTenantDatabasesMessage } from "../models/
|
|
4
|
-
import type { TenantDatabasesMessage } from "../models/models_1";
|
|
3
|
+
import type { DescribeTenantDatabasesMessage, TenantDatabasesMessage } from "../models/models_1";
|
|
5
4
|
import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -96,6 +96,7 @@ export * from "./DescribeOrderableDBInstanceOptionsCommand";
|
|
|
96
96
|
export * from "./DescribePendingMaintenanceActionsCommand";
|
|
97
97
|
export * from "./DescribeReservedDBInstancesCommand";
|
|
98
98
|
export * from "./DescribeReservedDBInstancesOfferingsCommand";
|
|
99
|
+
export * from "./DescribeServerlessV2PlatformVersionsCommand";
|
|
99
100
|
export * from "./DescribeSourceRegionsCommand";
|
|
100
101
|
export * from "./DescribeTenantDatabasesCommand";
|
|
101
102
|
export * from "./DescribeValidDBInstanceModificationsCommand";
|
|
@@ -289,7 +289,7 @@ export interface ApplyPendingMaintenanceActionMessage {
|
|
|
289
289
|
*/
|
|
290
290
|
export interface PendingMaintenanceAction {
|
|
291
291
|
/**
|
|
292
|
-
* <p>The type of pending maintenance action that is available for the resource. </p> <p>For more information about maintenance actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html">Maintaining a DB instance</a>.</p> <p>Valid Values:</p> <ul> <li> <p> <code>ca-certificate-rotation</code> </p> </li> <li> <p> <code>db-upgrade</code> </p> </li> <li> <p> <code>hardware-maintenance</code> </p> </li> <li> <p> <code>os-upgrade</code> </p> </li> <li> <p> <code>system-update</code> </p> </li> </ul> <p>For more information about these actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora">Maintenance actions for Amazon Aurora</a> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds">Maintenance actions for Amazon RDS</a>.</p>
|
|
292
|
+
* <p>The type of pending maintenance action that is available for the resource. </p> <p>For more information about maintenance actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html">Maintaining a DB instance</a>.</p> <p>Valid Values:</p> <ul> <li> <p> <code>ca-certificate-rotation</code> </p> </li> <li> <p> <code>db-upgrade</code> </p> </li> <li> <p> <code>hardware-maintenance</code> </p> </li> <li> <p> <code>os-upgrade</code> </p> </li> <li> <p> <code>serverless-platform-version-update</code> </p> </li> <li> <p> <code>system-update</code> </p> </li> </ul> <p>For more information about these actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora">Maintenance actions for Amazon Aurora</a> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds">Maintenance actions for Amazon RDS</a>.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
295
|
Action?: string | undefined;
|
|
@@ -10191,97 +10191,118 @@ export interface ReservedDBInstancesOfferingMessage {
|
|
|
10191
10191
|
* <p/>
|
|
10192
10192
|
* @public
|
|
10193
10193
|
*/
|
|
10194
|
-
export interface
|
|
10194
|
+
export interface DescribeServerlessV2PlatformVersionsMessage {
|
|
10195
10195
|
/**
|
|
10196
|
-
* <p>
|
|
10196
|
+
* <p>A specific platform version to return details for.</p> <p>Example: <code>3</code> </p>
|
|
10197
10197
|
* @public
|
|
10198
10198
|
*/
|
|
10199
|
-
|
|
10199
|
+
ServerlessV2PlatformVersion?: string | undefined;
|
|
10200
10200
|
/**
|
|
10201
|
-
* <p>The
|
|
10201
|
+
* <p>The database engine to return platform version details for.</p> <p>Valid Values:</p> <ul> <li> <p> <code>aurora-mysql</code> </p> </li> <li> <p> <code>aurora-postgresql</code> </p> </li> </ul>
|
|
10202
10202
|
* @public
|
|
10203
10203
|
*/
|
|
10204
|
-
|
|
10204
|
+
Engine?: string | undefined;
|
|
10205
10205
|
/**
|
|
10206
|
-
* <p>
|
|
10206
|
+
* <p>This parameter isn't currently supported.</p>
|
|
10207
10207
|
* @public
|
|
10208
10208
|
*/
|
|
10209
|
-
|
|
10209
|
+
Filters?: Filter[] | undefined;
|
|
10210
10210
|
/**
|
|
10211
|
-
* <p>
|
|
10211
|
+
* <p>Specifies whether to return only the default platform versions for each engine. The default platform version is the version used for new DB clusters.</p>
|
|
10212
10212
|
* @public
|
|
10213
10213
|
*/
|
|
10214
|
-
|
|
10214
|
+
DefaultOnly?: boolean | undefined;
|
|
10215
|
+
/**
|
|
10216
|
+
* <p>Specifies whether to also include platform versions which are no longer in use.</p>
|
|
10217
|
+
* @public
|
|
10218
|
+
*/
|
|
10219
|
+
IncludeAll?: boolean | undefined;
|
|
10220
|
+
/**
|
|
10221
|
+
* <p>The maximum number of records to include in the response. If more than the <code>MaxRecords</code> value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.</p> <p>Default: 20</p> <p>Constraints: Minimum 1, maximum 200.</p>
|
|
10222
|
+
* @public
|
|
10223
|
+
*/
|
|
10224
|
+
MaxRecords?: number | undefined;
|
|
10225
|
+
/**
|
|
10226
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
10227
|
+
* @public
|
|
10228
|
+
*/
|
|
10229
|
+
Marker?: string | undefined;
|
|
10215
10230
|
}
|
|
10216
10231
|
/**
|
|
10217
|
-
* <p>
|
|
10232
|
+
* <p>This data type is used as a response element in the action <code>DescribeServerlessV2PlatformVersions</code>.</p>
|
|
10218
10233
|
* @public
|
|
10219
10234
|
*/
|
|
10220
|
-
export interface
|
|
10235
|
+
export interface ServerlessV2PlatformVersionInfo {
|
|
10221
10236
|
/**
|
|
10222
|
-
* <p>The
|
|
10237
|
+
* <p>The version number of the serverless platform.</p>
|
|
10223
10238
|
* @public
|
|
10224
10239
|
*/
|
|
10225
|
-
|
|
10240
|
+
ServerlessV2PlatformVersion?: string | undefined;
|
|
10226
10241
|
/**
|
|
10227
|
-
* <p>The
|
|
10242
|
+
* <p>The description of the serverless platform.</p>
|
|
10228
10243
|
* @public
|
|
10229
10244
|
*/
|
|
10230
|
-
|
|
10245
|
+
ServerlessV2PlatformVersionDescription?: string | undefined;
|
|
10246
|
+
/**
|
|
10247
|
+
* <p>The name of the database engine.</p>
|
|
10248
|
+
* @public
|
|
10249
|
+
*/
|
|
10250
|
+
Engine?: string | undefined;
|
|
10251
|
+
/**
|
|
10252
|
+
* <p>Specifies any Aurora Serverless v2 properties or limits that differ between Aurora Serverless v2 platform versions. You can retrieve the platform version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.</p>
|
|
10253
|
+
* @public
|
|
10254
|
+
*/
|
|
10255
|
+
ServerlessV2FeaturesSupport?: ServerlessV2FeaturesSupport | undefined;
|
|
10231
10256
|
/**
|
|
10232
|
-
* <p>The status of the
|
|
10257
|
+
* <p>The status of the serverless platform. Valid statuses are the following:</p> <ul> <li> <p> <code>enabled</code> - The platform version is in use.</p> </li> <li> <p> <code>disabled</code> - The platform version is not in use.</p> </li> </ul>
|
|
10233
10258
|
* @public
|
|
10234
10259
|
*/
|
|
10235
10260
|
Status?: string | undefined;
|
|
10236
10261
|
/**
|
|
10237
|
-
* <p>Indicates whether the
|
|
10262
|
+
* <p>Indicates whether this platform version is the default version for the engine. The default platform version is the version used for new DB clusters.</p>
|
|
10238
10263
|
* @public
|
|
10239
10264
|
*/
|
|
10240
|
-
|
|
10265
|
+
IsDefault?: boolean | undefined;
|
|
10241
10266
|
}
|
|
10242
10267
|
/**
|
|
10243
|
-
* <p>Contains the result of a successful invocation of the <code>
|
|
10268
|
+
* <p>Contains the result of a successful invocation of the <code>DescribeServerlessV2PlatformVersions</code> action.</p>
|
|
10244
10269
|
* @public
|
|
10245
10270
|
*/
|
|
10246
|
-
export interface
|
|
10271
|
+
export interface ServerlessV2PlatformVersionsMessage {
|
|
10247
10272
|
/**
|
|
10248
10273
|
* <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
10249
10274
|
* @public
|
|
10250
10275
|
*/
|
|
10251
10276
|
Marker?: string | undefined;
|
|
10252
10277
|
/**
|
|
10253
|
-
* <p>A list of <code>
|
|
10278
|
+
* <p>A list of <code>ServerlessV2PlatformVersionInfo</code> elements.</p>
|
|
10254
10279
|
* @public
|
|
10255
10280
|
*/
|
|
10256
|
-
|
|
10281
|
+
ServerlessV2PlatformVersions?: ServerlessV2PlatformVersionInfo[] | undefined;
|
|
10257
10282
|
}
|
|
10258
10283
|
/**
|
|
10284
|
+
* <p/>
|
|
10259
10285
|
* @public
|
|
10260
10286
|
*/
|
|
10261
|
-
export interface
|
|
10262
|
-
/**
|
|
10263
|
-
* <p>The user-supplied DB instance identifier, which must match the identifier of an existing instance owned by the Amazon Web Services account. This parameter isn't case-sensitive.</p>
|
|
10264
|
-
* @public
|
|
10265
|
-
*/
|
|
10266
|
-
DBInstanceIdentifier?: string | undefined;
|
|
10287
|
+
export interface DescribeSourceRegionsMessage {
|
|
10267
10288
|
/**
|
|
10268
|
-
* <p>The
|
|
10289
|
+
* <p>The source Amazon Web Services Region name. For example, <code>us-east-1</code>.</p> <p>Constraints:</p> <ul> <li> <p>Must specify a valid Amazon Web Services Region name.</p> </li> </ul>
|
|
10269
10290
|
* @public
|
|
10270
10291
|
*/
|
|
10271
|
-
|
|
10292
|
+
RegionName?: string | undefined;
|
|
10272
10293
|
/**
|
|
10273
|
-
* <p>
|
|
10294
|
+
* <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so you can retrieve the remaining results.</p> <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
|
|
10274
10295
|
* @public
|
|
10275
10296
|
*/
|
|
10276
|
-
|
|
10297
|
+
MaxRecords?: number | undefined;
|
|
10277
10298
|
/**
|
|
10278
|
-
* <p>An optional pagination token provided by a previous <code>
|
|
10299
|
+
* <p>An optional pagination token provided by a previous <code>DescribeSourceRegions</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
10279
10300
|
* @public
|
|
10280
10301
|
*/
|
|
10281
10302
|
Marker?: string | undefined;
|
|
10282
10303
|
/**
|
|
10283
|
-
* <p>
|
|
10304
|
+
* <p>This parameter isn't currently supported.</p>
|
|
10284
10305
|
* @public
|
|
10285
10306
|
*/
|
|
10286
|
-
|
|
10307
|
+
Filters?: Filter[] | undefined;
|
|
10287
10308
|
}
|
|
@@ -1,5 +1,77 @@
|
|
|
1
1
|
import type { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AuditPolicyState, AutomationMode, CustomEngineVersionStatus, DatabaseInsightsMode, DefaultAuthScheme, MasterUserAuthenticationType, ReplicaMode } from "./enums";
|
|
2
2
|
import type { AdditionalStorageVolume, AvailableProcessorFeature, BlueGreenDeployment, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBRecommendation, DBSecurityGroup, DBSnapshot, DBSnapshotAttributesResult, DBSubnetGroup, EventSubscription, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, RdsCustomClusterConfiguration, ReservedDBInstance, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TagSpecification, TenantDatabase, UserAuthConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains an Amazon Web Services Region name as the result of a successful call to the <code>DescribeSourceRegions</code> action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface SourceRegion {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The name of the source Amazon Web Services Region.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
RegionName?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The endpoint for the source Amazon Web Services Region endpoint.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
Endpoint?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The status of the source Amazon Web Services Region.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
Status?: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>Indicates whether the source Amazon Web Services Region supports replicating automated backups to the current Amazon Web Services Region.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
SupportsDBInstanceAutomatedBackupsReplication?: boolean | undefined;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Contains the result of a successful invocation of the <code>DescribeSourceRegions</code> action.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export interface SourceRegionMessage {
|
|
34
|
+
/**
|
|
35
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Marker?: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>A list of <code>SourceRegion</code> instances that contains each source Amazon Web Services Region that the current Amazon Web Services Region can get a read replica or a DB snapshot from.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
SourceRegions?: SourceRegion[] | undefined;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export interface DescribeTenantDatabasesMessage {
|
|
49
|
+
/**
|
|
50
|
+
* <p>The user-supplied DB instance identifier, which must match the identifier of an existing instance owned by the Amazon Web Services account. This parameter isn't case-sensitive.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
DBInstanceIdentifier?: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The user-supplied tenant database name, which must match the name of an existing tenant database on the specified DB instance owned by your Amazon Web Services account. This parameter isn’t case-sensitive.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
TenantDBName?: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>A filter that specifies one or more database tenants to describe.</p> <p>Supported filters:</p> <ul> <li> <p> <code>tenant-db-name</code> - Tenant database names. The results list only includes information about the tenant databases that match these tenant DB names.</p> </li> <li> <p> <code>tenant-database-resource-id</code> - Tenant database resource identifiers.</p> </li> <li> <p> <code>dbi-resource-id</code> - DB instance resource identifiers. The results list only includes information about the tenants contained within the DB instances identified by these resource identifiers.</p> </li> </ul>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Filters?: Filter[] | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>An optional pagination token provided by a previous <code>DescribeTenantDatabases</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
Marker?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
MaxRecords?: number | undefined;
|
|
74
|
+
}
|
|
3
75
|
/**
|
|
4
76
|
* @public
|
|
5
77
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeServerlessV2PlatformVersionsCommandInput, DescribeServerlessV2PlatformVersionsCommandOutput } from "../commands/DescribeServerlessV2PlatformVersionsCommand";
|
|
3
|
+
import type { RDSPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeServerlessV2PlatformVersions: (config: RDSPaginationConfiguration, input: DescribeServerlessV2PlatformVersionsCommandInput, ...rest: any[]) => Paginator<DescribeServerlessV2PlatformVersionsCommandOutput>;
|
|
@@ -37,6 +37,7 @@ export * from "./DescribeOrderableDBInstanceOptionsPaginator";
|
|
|
37
37
|
export * from "./DescribePendingMaintenanceActionsPaginator";
|
|
38
38
|
export * from "./DescribeReservedDBInstancesPaginator";
|
|
39
39
|
export * from "./DescribeReservedDBInstancesOfferingsPaginator";
|
|
40
|
+
export * from "./DescribeServerlessV2PlatformVersionsPaginator";
|
|
40
41
|
export * from "./DescribeSourceRegionsPaginator";
|
|
41
42
|
export * from "./DescribeTenantDatabasesPaginator";
|
|
42
43
|
export * from "./DownloadDBLogFilePortionPaginator";
|
|
@@ -376,6 +376,7 @@ export declare var DescribeOrderableDBInstanceOptionsMessage$: StaticStructureSc
|
|
|
376
376
|
export declare var DescribePendingMaintenanceActionsMessage$: StaticStructureSchema;
|
|
377
377
|
export declare var DescribeReservedDBInstancesMessage$: StaticStructureSchema;
|
|
378
378
|
export declare var DescribeReservedDBInstancesOfferingsMessage$: StaticStructureSchema;
|
|
379
|
+
export declare var DescribeServerlessV2PlatformVersionsMessage$: StaticStructureSchema;
|
|
379
380
|
export declare var DescribeSourceRegionsMessage$: StaticStructureSchema;
|
|
380
381
|
export declare var DescribeTenantDatabasesMessage$: StaticStructureSchema;
|
|
381
382
|
export declare var DescribeValidDBInstanceModificationsMessage$: StaticStructureSchema;
|
|
@@ -534,6 +535,8 @@ export declare var ScalarReferenceDetails$: StaticStructureSchema;
|
|
|
534
535
|
export declare var ScalingConfiguration$: StaticStructureSchema;
|
|
535
536
|
export declare var ScalingConfigurationInfo$: StaticStructureSchema;
|
|
536
537
|
export declare var ServerlessV2FeaturesSupport$: StaticStructureSchema;
|
|
538
|
+
export declare var ServerlessV2PlatformVersionInfo$: StaticStructureSchema;
|
|
539
|
+
export declare var ServerlessV2PlatformVersionsMessage$: StaticStructureSchema;
|
|
537
540
|
export declare var ServerlessV2ScalingConfiguration$: StaticStructureSchema;
|
|
538
541
|
export declare var ServerlessV2ScalingConfigurationInfo$: StaticStructureSchema;
|
|
539
542
|
export declare var SourceRegion$: StaticStructureSchema;
|
|
@@ -678,6 +681,7 @@ export declare var DescribeOrderableDBInstanceOptions$: StaticOperationSchema;
|
|
|
678
681
|
export declare var DescribePendingMaintenanceActions$: StaticOperationSchema;
|
|
679
682
|
export declare var DescribeReservedDBInstances$: StaticOperationSchema;
|
|
680
683
|
export declare var DescribeReservedDBInstancesOfferings$: StaticOperationSchema;
|
|
684
|
+
export declare var DescribeServerlessV2PlatformVersions$: StaticOperationSchema;
|
|
681
685
|
export declare var DescribeSourceRegions$: StaticOperationSchema;
|
|
682
686
|
export declare var DescribeTenantDatabases$: StaticOperationSchema;
|
|
683
687
|
export declare var DescribeValidDBInstanceModifications$: StaticOperationSchema;
|
|
@@ -397,6 +397,10 @@ import {
|
|
|
397
397
|
DescribeReservedDBInstancesOfferingsCommandInput,
|
|
398
398
|
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
399
399
|
} from "./commands/DescribeReservedDBInstancesOfferingsCommand";
|
|
400
|
+
import {
|
|
401
|
+
DescribeServerlessV2PlatformVersionsCommandInput,
|
|
402
|
+
DescribeServerlessV2PlatformVersionsCommandOutput,
|
|
403
|
+
} from "./commands/DescribeServerlessV2PlatformVersionsCommand";
|
|
400
404
|
import {
|
|
401
405
|
DescribeSourceRegionsCommandInput,
|
|
402
406
|
DescribeSourceRegionsCommandOutput,
|
|
@@ -2019,6 +2023,26 @@ export interface RDS {
|
|
|
2019
2023
|
data?: DescribeReservedDBInstancesOfferingsCommandOutput
|
|
2020
2024
|
) => void
|
|
2021
2025
|
): void;
|
|
2026
|
+
describeServerlessV2PlatformVersions(): Promise<DescribeServerlessV2PlatformVersionsCommandOutput>;
|
|
2027
|
+
describeServerlessV2PlatformVersions(
|
|
2028
|
+
args: DescribeServerlessV2PlatformVersionsCommandInput,
|
|
2029
|
+
options?: __HttpHandlerOptions
|
|
2030
|
+
): Promise<DescribeServerlessV2PlatformVersionsCommandOutput>;
|
|
2031
|
+
describeServerlessV2PlatformVersions(
|
|
2032
|
+
args: DescribeServerlessV2PlatformVersionsCommandInput,
|
|
2033
|
+
cb: (
|
|
2034
|
+
err: any,
|
|
2035
|
+
data?: DescribeServerlessV2PlatformVersionsCommandOutput
|
|
2036
|
+
) => void
|
|
2037
|
+
): void;
|
|
2038
|
+
describeServerlessV2PlatformVersions(
|
|
2039
|
+
args: DescribeServerlessV2PlatformVersionsCommandInput,
|
|
2040
|
+
options: __HttpHandlerOptions,
|
|
2041
|
+
cb: (
|
|
2042
|
+
err: any,
|
|
2043
|
+
data?: DescribeServerlessV2PlatformVersionsCommandOutput
|
|
2044
|
+
) => void
|
|
2045
|
+
): void;
|
|
2022
2046
|
describeSourceRegions(): Promise<DescribeSourceRegionsCommandOutput>;
|
|
2023
2047
|
describeSourceRegions(
|
|
2024
2048
|
args: DescribeSourceRegionsCommandInput,
|
|
@@ -3164,6 +3188,13 @@ export interface RDS {
|
|
|
3164
3188
|
Exclude<keyof PaginationConfiguration, "client">
|
|
3165
3189
|
>
|
|
3166
3190
|
): Paginator<DescribeReservedDBInstancesOfferingsCommandOutput>;
|
|
3191
|
+
paginateDescribeServerlessV2PlatformVersions(
|
|
3192
|
+
args?: DescribeServerlessV2PlatformVersionsCommandInput,
|
|
3193
|
+
paginationConfig?: Pick<
|
|
3194
|
+
PaginationConfiguration,
|
|
3195
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3196
|
+
>
|
|
3197
|
+
): Paginator<DescribeServerlessV2PlatformVersionsCommandOutput>;
|
|
3167
3198
|
paginateDescribeSourceRegions(
|
|
3168
3199
|
args?: DescribeSourceRegionsCommandInput,
|
|
3169
3200
|
paginationConfig?: Pick<
|
|
@@ -436,6 +436,10 @@ import {
|
|
|
436
436
|
DescribeReservedDBInstancesOfferingsCommandInput,
|
|
437
437
|
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
438
438
|
} from "./commands/DescribeReservedDBInstancesOfferingsCommand";
|
|
439
|
+
import {
|
|
440
|
+
DescribeServerlessV2PlatformVersionsCommandInput,
|
|
441
|
+
DescribeServerlessV2PlatformVersionsCommandOutput,
|
|
442
|
+
} from "./commands/DescribeServerlessV2PlatformVersionsCommand";
|
|
439
443
|
import {
|
|
440
444
|
DescribeSourceRegionsCommandInput,
|
|
441
445
|
DescribeSourceRegionsCommandOutput,
|
|
@@ -802,6 +806,7 @@ export type ServiceInputTypes =
|
|
|
802
806
|
| DescribePendingMaintenanceActionsCommandInput
|
|
803
807
|
| DescribeReservedDBInstancesCommandInput
|
|
804
808
|
| DescribeReservedDBInstancesOfferingsCommandInput
|
|
809
|
+
| DescribeServerlessV2PlatformVersionsCommandInput
|
|
805
810
|
| DescribeSourceRegionsCommandInput
|
|
806
811
|
| DescribeTenantDatabasesCommandInput
|
|
807
812
|
| DescribeValidDBInstanceModificationsCommandInput
|
|
@@ -966,6 +971,7 @@ export type ServiceOutputTypes =
|
|
|
966
971
|
| DescribePendingMaintenanceActionsCommandOutput
|
|
967
972
|
| DescribeReservedDBInstancesCommandOutput
|
|
968
973
|
| DescribeReservedDBInstancesOfferingsCommandOutput
|
|
974
|
+
| DescribeServerlessV2PlatformVersionsCommandOutput
|
|
969
975
|
| DescribeSourceRegionsCommandOutput
|
|
970
976
|
| DescribeTenantDatabasesCommandOutput
|
|
971
977
|
| DescribeValidDBInstanceModificationsCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeServerlessV2PlatformVersionsMessage,
|
|
5
|
+
ServerlessV2PlatformVersionsMessage,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RDSClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RDSClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeServerlessV2PlatformVersionsCommandInput
|
|
15
|
+
extends DescribeServerlessV2PlatformVersionsMessage {}
|
|
16
|
+
export interface DescribeServerlessV2PlatformVersionsCommandOutput
|
|
17
|
+
extends ServerlessV2PlatformVersionsMessage,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeServerlessV2PlatformVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeServerlessV2PlatformVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeServerlessV2PlatformVersionsCommandInput,
|
|
24
|
+
DescribeServerlessV2PlatformVersionsCommandOutput,
|
|
25
|
+
RDSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeServerlessV2PlatformVersionsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeServerlessV2PlatformVersionsCommandInput,
|
|
33
|
+
DescribeServerlessV2PlatformVersionsCommandOutput,
|
|
34
|
+
RDSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeServerlessV2PlatformVersionsCommand extends DescribeServerlessV2PlatformVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeServerlessV2PlatformVersionsMessage;
|
|
44
|
+
output: ServerlessV2PlatformVersionsMessage;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeServerlessV2PlatformVersionsCommandInput;
|
|
48
|
+
output: DescribeServerlessV2PlatformVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
SourceRegionMessage,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { DescribeSourceRegionsMessage } from "../models/models_0";
|
|
4
|
+
import { SourceRegionMessage } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
RDSClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeTenantDatabasesMessage,
|
|
5
|
+
TenantDatabasesMessage,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
RDSClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|