@aws-sdk/client-rds 3.381.0 → 3.385.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 +16 -0
- package/dist-cjs/RDS.js +4 -0
- package/dist-cjs/commands/DeleteDBClusterAutomatedBackupCommand.js +46 -0
- package/dist-cjs/commands/DescribeDBClusterAutomatedBackupsCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +40 -1
- package/dist-cjs/protocols/Aws_query.js +301 -6
- package/dist-es/RDS.js +4 -0
- package/dist-es/commands/DeleteDBClusterAutomatedBackupCommand.js +42 -0
- package/dist-es/commands/DescribeDBClusterAutomatedBackupsCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +36 -0
- package/dist-es/protocols/Aws_query.js +292 -1
- package/dist-types/RDS.d.ts +14 -0
- package/dist-types/RDSClient.d.ts +4 -2
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +110 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +122 -0
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBLogFilesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBParameterGroupsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +5 -1
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1319 -285
- package/dist-types/models/models_1.d.ts +1156 -2
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/RDS.d.ts +40 -0
- package/dist-types/ts3.4/RDSClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBInstancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBLogFilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBParameterGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -48
- package/dist-types/ts3.4/models/models_1.d.ts +47 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -519,6 +519,14 @@ DeleteDBCluster
|
|
|
519
519
|
|
|
520
520
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/deletedbclustercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletedbclustercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletedbclustercommandoutput.html)
|
|
521
521
|
|
|
522
|
+
</details>
|
|
523
|
+
<details>
|
|
524
|
+
<summary>
|
|
525
|
+
DeleteDBClusterAutomatedBackup
|
|
526
|
+
</summary>
|
|
527
|
+
|
|
528
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/deletedbclusterautomatedbackupcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletedbclusterautomatedbackupcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/deletedbclusterautomatedbackupcommandoutput.html)
|
|
529
|
+
|
|
522
530
|
</details>
|
|
523
531
|
<details>
|
|
524
532
|
<summary>
|
|
@@ -663,6 +671,14 @@ DescribeCertificates
|
|
|
663
671
|
|
|
664
672
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describecertificatescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describecertificatescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describecertificatescommandoutput.html)
|
|
665
673
|
|
|
674
|
+
</details>
|
|
675
|
+
<details>
|
|
676
|
+
<summary>
|
|
677
|
+
DescribeDBClusterAutomatedBackups
|
|
678
|
+
</summary>
|
|
679
|
+
|
|
680
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/classes/describedbclusterautomatedbackupscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbclusterautomatedbackupscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-rds/interfaces/describedbclusterautomatedbackupscommandoutput.html)
|
|
681
|
+
|
|
666
682
|
</details>
|
|
667
683
|
<details>
|
|
668
684
|
<summary>
|
package/dist-cjs/RDS.js
CHANGED
|
@@ -34,6 +34,7 @@ const CreateGlobalClusterCommand_1 = require("./commands/CreateGlobalClusterComm
|
|
|
34
34
|
const CreateOptionGroupCommand_1 = require("./commands/CreateOptionGroupCommand");
|
|
35
35
|
const DeleteBlueGreenDeploymentCommand_1 = require("./commands/DeleteBlueGreenDeploymentCommand");
|
|
36
36
|
const DeleteCustomDBEngineVersionCommand_1 = require("./commands/DeleteCustomDBEngineVersionCommand");
|
|
37
|
+
const DeleteDBClusterAutomatedBackupCommand_1 = require("./commands/DeleteDBClusterAutomatedBackupCommand");
|
|
37
38
|
const DeleteDBClusterCommand_1 = require("./commands/DeleteDBClusterCommand");
|
|
38
39
|
const DeleteDBClusterEndpointCommand_1 = require("./commands/DeleteDBClusterEndpointCommand");
|
|
39
40
|
const DeleteDBClusterParameterGroupCommand_1 = require("./commands/DeleteDBClusterParameterGroupCommand");
|
|
@@ -53,6 +54,7 @@ const DeregisterDBProxyTargetsCommand_1 = require("./commands/DeregisterDBProxyT
|
|
|
53
54
|
const DescribeAccountAttributesCommand_1 = require("./commands/DescribeAccountAttributesCommand");
|
|
54
55
|
const DescribeBlueGreenDeploymentsCommand_1 = require("./commands/DescribeBlueGreenDeploymentsCommand");
|
|
55
56
|
const DescribeCertificatesCommand_1 = require("./commands/DescribeCertificatesCommand");
|
|
57
|
+
const DescribeDBClusterAutomatedBackupsCommand_1 = require("./commands/DescribeDBClusterAutomatedBackupsCommand");
|
|
56
58
|
const DescribeDBClusterBacktracksCommand_1 = require("./commands/DescribeDBClusterBacktracksCommand");
|
|
57
59
|
const DescribeDBClusterEndpointsCommand_1 = require("./commands/DescribeDBClusterEndpointsCommand");
|
|
58
60
|
const DescribeDBClusterParameterGroupsCommand_1 = require("./commands/DescribeDBClusterParameterGroupsCommand");
|
|
@@ -178,6 +180,7 @@ const commands = {
|
|
|
178
180
|
DeleteBlueGreenDeploymentCommand: DeleteBlueGreenDeploymentCommand_1.DeleteBlueGreenDeploymentCommand,
|
|
179
181
|
DeleteCustomDBEngineVersionCommand: DeleteCustomDBEngineVersionCommand_1.DeleteCustomDBEngineVersionCommand,
|
|
180
182
|
DeleteDBClusterCommand: DeleteDBClusterCommand_1.DeleteDBClusterCommand,
|
|
183
|
+
DeleteDBClusterAutomatedBackupCommand: DeleteDBClusterAutomatedBackupCommand_1.DeleteDBClusterAutomatedBackupCommand,
|
|
181
184
|
DeleteDBClusterEndpointCommand: DeleteDBClusterEndpointCommand_1.DeleteDBClusterEndpointCommand,
|
|
182
185
|
DeleteDBClusterParameterGroupCommand: DeleteDBClusterParameterGroupCommand_1.DeleteDBClusterParameterGroupCommand,
|
|
183
186
|
DeleteDBClusterSnapshotCommand: DeleteDBClusterSnapshotCommand_1.DeleteDBClusterSnapshotCommand,
|
|
@@ -196,6 +199,7 @@ const commands = {
|
|
|
196
199
|
DescribeAccountAttributesCommand: DescribeAccountAttributesCommand_1.DescribeAccountAttributesCommand,
|
|
197
200
|
DescribeBlueGreenDeploymentsCommand: DescribeBlueGreenDeploymentsCommand_1.DescribeBlueGreenDeploymentsCommand,
|
|
198
201
|
DescribeCertificatesCommand: DescribeCertificatesCommand_1.DescribeCertificatesCommand,
|
|
202
|
+
DescribeDBClusterAutomatedBackupsCommand: DescribeDBClusterAutomatedBackupsCommand_1.DescribeDBClusterAutomatedBackupsCommand,
|
|
199
203
|
DescribeDBClusterBacktracksCommand: DescribeDBClusterBacktracksCommand_1.DescribeDBClusterBacktracksCommand,
|
|
200
204
|
DescribeDBClusterEndpointsCommand: DescribeDBClusterEndpointsCommand_1.DescribeDBClusterEndpointsCommand,
|
|
201
205
|
DescribeDBClusterParameterGroupsCommand: DescribeDBClusterParameterGroupsCommand_1.DescribeDBClusterParameterGroupsCommand,
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteDBClusterAutomatedBackupCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
|
+
class DeleteDBClusterAutomatedBackupCommand extends smithy_client_1.Command {
|
|
10
|
+
static getEndpointParameterInstructions() {
|
|
11
|
+
return {
|
|
12
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
13
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
14
|
+
Region: { type: "builtInParams", name: "region" },
|
|
15
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteDBClusterAutomatedBackupCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "RDSClient";
|
|
28
|
+
const commandName = "DeleteDBClusterAutomatedBackupCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: (_) => _,
|
|
34
|
+
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_query_1.se_DeleteDBClusterAutomatedBackupCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_query_1.de_DeleteDBClusterAutomatedBackupCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.DeleteDBClusterAutomatedBackupCommand = DeleteDBClusterAutomatedBackupCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeDBClusterAutomatedBackupsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
|
+
class DescribeDBClusterAutomatedBackupsCommand extends smithy_client_1.Command {
|
|
10
|
+
static getEndpointParameterInstructions() {
|
|
11
|
+
return {
|
|
12
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
13
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
14
|
+
Region: { type: "builtInParams", name: "region" },
|
|
15
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeDBClusterAutomatedBackupsCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "RDSClient";
|
|
28
|
+
const commandName = "DescribeDBClusterAutomatedBackupsCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: (_) => _,
|
|
34
|
+
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_query_1.se_DescribeDBClusterAutomatedBackupsCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_query_1.de_DescribeDBClusterAutomatedBackupsCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.DescribeDBClusterAutomatedBackupsCommand = DescribeDBClusterAutomatedBackupsCommand;
|
|
@@ -33,6 +33,7 @@ tslib_1.__exportStar(require("./CreateGlobalClusterCommand"), exports);
|
|
|
33
33
|
tslib_1.__exportStar(require("./CreateOptionGroupCommand"), exports);
|
|
34
34
|
tslib_1.__exportStar(require("./DeleteBlueGreenDeploymentCommand"), exports);
|
|
35
35
|
tslib_1.__exportStar(require("./DeleteCustomDBEngineVersionCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./DeleteDBClusterAutomatedBackupCommand"), exports);
|
|
36
37
|
tslib_1.__exportStar(require("./DeleteDBClusterCommand"), exports);
|
|
37
38
|
tslib_1.__exportStar(require("./DeleteDBClusterEndpointCommand"), exports);
|
|
38
39
|
tslib_1.__exportStar(require("./DeleteDBClusterParameterGroupCommand"), exports);
|
|
@@ -52,6 +53,7 @@ tslib_1.__exportStar(require("./DeregisterDBProxyTargetsCommand"), exports);
|
|
|
52
53
|
tslib_1.__exportStar(require("./DescribeAccountAttributesCommand"), exports);
|
|
53
54
|
tslib_1.__exportStar(require("./DescribeBlueGreenDeploymentsCommand"), exports);
|
|
54
55
|
tslib_1.__exportStar(require("./DescribeCertificatesCommand"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./DescribeDBClusterAutomatedBackupsCommand"), exports);
|
|
55
57
|
tslib_1.__exportStar(require("./DescribeDBClusterBacktracksCommand"), exports);
|
|
56
58
|
tslib_1.__exportStar(require("./DescribeDBClusterEndpointsCommand"), exports);
|
|
57
59
|
tslib_1.__exportStar(require("./DescribeDBClusterParameterGroupsCommand"), exports);
|
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
4
|
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
5
|
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = "getAttr", g = { [s]: false, "type": "String" }, h = { [s]: true, "default": false, "type": "Boolean" }, i = { [v]: "Endpoint" }, j = { [t]: "booleanEquals", [u]: [{ [v]: "UseFIPS" }, true] }, k = { [t]: "booleanEquals", [u]: [{ [v]: "UseDualStack" }, true] }, l = {}, m = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [{ [v]: e }, "supportsFIPS"] }] }, n = { [v]: e }, o = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [n, "supportsDualStack"] }] }, p = [j], q = [k], r = [{ [v]: "Region" }];
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region: g, UseDualStack: h, UseFIPS: h, Endpoint: g }, rules: [{ conditions: [{ [t]: a, [u]: [i] }], type: b, rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, {
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: g, UseDualStack: h, UseFIPS: h, Endpoint: g }, rules: [{ conditions: [{ [t]: a, [u]: [i] }], type: b, rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: i, properties: l, headers: l }, type: d }] }, { conditions: [{ [t]: a, [u]: r }], type: b, rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: e }], type: b, rules: [{ conditions: [j, k], type: b, rules: [{ conditions: [m, o], type: b, rules: [{ endpoint: { url: "https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: p, type: b, rules: [{ conditions: [m], type: b, rules: [{ conditions: [{ [t]: "stringEquals", [u]: ["aws-us-gov", { [t]: f, [u]: [n, "name"] }] }], endpoint: { url: "https://rds.{Region}.amazonaws.com", properties: l, headers: l }, type: d }, { endpoint: { url: "https://rds-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: q, type: b, rules: [{ conditions: [o], type: b, rules: [{ endpoint: { url: "https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://rds.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
7
7
|
exports.ruleSet = _data;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.WriteForwardingStatus = exports.Ec2ImagePropertiesNotSupportedFault = exports.CustomDBEngineVersionQuotaExceededFault = exports.CustomDBEngineVersionAlreadyExistsFault = exports.CreateCustomDBEngineVersionFault = exports.SourceDatabaseNotSupportedFault = exports.SourceClusterNotSupportedFault = exports.InstanceQuotaExceededFault = exports.DBClusterQuotaExceededFault = exports.DBClusterParameterGroupNotFoundFault = exports.BlueGreenDeploymentAlreadyExistsFault = exports.OptionGroupQuotaExceededFault = exports.OptionGroupNotFoundFault = exports.OptionGroupAlreadyExistsFault = exports.InvalidDBSnapshotStateFault = exports.DBSnapshotAlreadyExistsFault = exports.CustomAvailabilityZoneNotFoundFault = exports.SnapshotQuotaExceededFault = exports.KMSKeyNotAccessibleFault = exports.InvalidDBClusterSnapshotStateFault = exports.DBClusterSnapshotNotFoundFault = exports.DBClusterSnapshotAlreadyExistsFault = exports.DBParameterGroupQuotaExceededFault = exports.DBParameterGroupNotFoundFault = exports.DBParameterGroupAlreadyExistsFault = exports.InvalidExportTaskStateFault = exports.ExportTaskNotFoundFault = exports.ExportSourceType = exports.InvalidDBSecurityGroupStateFault = exports.DBSecurityGroupNotFoundFault = exports.AuthorizationQuotaExceededFault = exports.AuthorizationAlreadyExistsFault = exports.ResourceNotFoundFault = exports.DBSnapshotNotFoundFault = exports.DBProxyTargetGroupNotFoundFault = exports.DBProxyNotFoundFault = exports.BlueGreenDeploymentNotFoundFault = exports.SubscriptionNotFoundFault = exports.SourceNotFoundFault = exports.InvalidDBInstanceStateFault = exports.DBInstanceRoleQuotaExceededFault = exports.DBInstanceRoleAlreadyExistsFault = exports.DBInstanceNotFoundFault = exports.InvalidDBClusterStateFault = exports.DBClusterRoleQuotaExceededFault = exports.DBClusterRoleAlreadyExistsFault = exports.DBClusterNotFoundFault = exports.ActivityStreamStatus = exports.ActivityStreamPolicyStatus = exports.ActivityStreamMode = void 0;
|
|
4
4
|
exports.SubscriptionCategoryNotFoundFault = exports.SubscriptionAlreadyExistFault = exports.SNSTopicArnNotFoundFault = exports.SNSNoAuthorizationFault = exports.SNSInvalidTopicFault = exports.EventSubscriptionQuotaExceededFault = exports.DBSubnetQuotaExceededFault = exports.DBSubnetGroupQuotaExceededFault = exports.DBSubnetGroupAlreadyExistsFault = exports.DBSecurityGroupQuotaExceededFault = exports.DBSecurityGroupNotSupportedFault = exports.DBSecurityGroupAlreadyExistsFault = exports.InvalidDBProxyStateFault = exports.DBProxyEndpointQuotaExceededFault = exports.DBProxyEndpointAlreadyExistsFault = exports.DBProxyEndpointStatus = exports.DBProxyEndpointTargetRole = exports.DBProxyQuotaExceededFault = exports.DBProxyAlreadyExistsFault = exports.DBProxyStatus = exports.EngineFamily = exports.IAMAuthMode = exports.ClientPasswordAuthType = exports.AuthScheme = exports.InvalidDBSubnetGroupFault = exports.DBSubnetGroupNotAllowedFault = exports.StorageTypeNotSupportedFault = exports.ProvisionedIopsNotAvailableInAZFault = exports.NetworkTypeNotSupported = exports.InsufficientDBInstanceCapacityFault = exports.DBInstanceAlreadyExistsFault = exports.ReplicaMode = exports.AutomationMode = exports.CertificateNotFoundFault = exports.BackupPolicyNotFoundFault = exports.AuthorizationNotFoundFault = exports.DBClusterEndpointQuotaExceededFault = exports.DBClusterEndpointAlreadyExistsFault = exports.StorageQuotaExceededFault = exports.InvalidVPCNetworkStateFault = exports.InvalidSubnet = exports.InvalidGlobalClusterStateFault = exports.InvalidDBSubnetGroupStateFault = exports.InsufficientStorageClusterCapacityFault = exports.GlobalClusterNotFoundFault = exports.DomainNotFoundFault = exports.DBSubnetGroupNotFoundFault = exports.DBSubnetGroupDoesNotCoverEnoughAZs = exports.DBClusterAlreadyExistsFault = exports.LocalWriteForwardingStatus = void 0;
|
|
5
|
-
exports.ApplyMethod = exports.DBClusterBacktrackNotFoundFault = exports.DBProxyTargetNotFoundFault = exports.InvalidOptionGroupStateFault = exports.InvalidEventSubscriptionStateFault = exports.InvalidDBSubnetStateFault = exports.InvalidDBProxyEndpointStateFault = exports.DBProxyEndpointNotFoundFault = exports.InvalidDBInstanceAutomatedBackupStateFault = exports.DBInstanceAutomatedBackupNotFoundFault = exports.DBInstanceAutomatedBackupQuotaExceededFault = exports.InvalidDBParameterGroupStateFault = exports.InvalidDBClusterEndpointStateFault = exports.DBClusterEndpointNotFoundFault = exports.InvalidCustomDBEngineVersionStateFault = exports.CustomDBEngineVersionNotFoundFault = exports.InvalidBlueGreenDeploymentStateFault = exports.GlobalClusterQuotaExceededFault = exports.GlobalClusterAlreadyExistsFault = exports.FailoverStatus = void 0;
|
|
5
|
+
exports.ApplyMethod = exports.DBClusterBacktrackNotFoundFault = exports.DBProxyTargetNotFoundFault = exports.InvalidOptionGroupStateFault = exports.InvalidEventSubscriptionStateFault = exports.InvalidDBSubnetStateFault = exports.InvalidDBProxyEndpointStateFault = exports.DBProxyEndpointNotFoundFault = exports.InvalidDBInstanceAutomatedBackupStateFault = exports.DBInstanceAutomatedBackupNotFoundFault = exports.DBInstanceAutomatedBackupQuotaExceededFault = exports.InvalidDBParameterGroupStateFault = exports.InvalidDBClusterEndpointStateFault = exports.DBClusterEndpointNotFoundFault = exports.InvalidDBClusterAutomatedBackupStateFault = exports.DBClusterAutomatedBackupNotFoundFault = exports.DBClusterAutomatedBackupQuotaExceededFault = exports.InvalidCustomDBEngineVersionStateFault = exports.CustomDBEngineVersionNotFoundFault = exports.InvalidBlueGreenDeploymentStateFault = exports.GlobalClusterQuotaExceededFault = exports.GlobalClusterAlreadyExistsFault = exports.FailoverStatus = void 0;
|
|
6
6
|
const RDSServiceException_1 = require("./RDSServiceException");
|
|
7
7
|
exports.ActivityStreamMode = {
|
|
8
8
|
async: "async",
|
|
@@ -1263,6 +1263,45 @@ class InvalidCustomDBEngineVersionStateFault extends RDSServiceException_1.RDSSe
|
|
|
1263
1263
|
}
|
|
1264
1264
|
}
|
|
1265
1265
|
exports.InvalidCustomDBEngineVersionStateFault = InvalidCustomDBEngineVersionStateFault;
|
|
1266
|
+
class DBClusterAutomatedBackupQuotaExceededFault extends RDSServiceException_1.RDSServiceException {
|
|
1267
|
+
constructor(opts) {
|
|
1268
|
+
super({
|
|
1269
|
+
name: "DBClusterAutomatedBackupQuotaExceededFault",
|
|
1270
|
+
$fault: "client",
|
|
1271
|
+
...opts,
|
|
1272
|
+
});
|
|
1273
|
+
this.name = "DBClusterAutomatedBackupQuotaExceededFault";
|
|
1274
|
+
this.$fault = "client";
|
|
1275
|
+
Object.setPrototypeOf(this, DBClusterAutomatedBackupQuotaExceededFault.prototype);
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
exports.DBClusterAutomatedBackupQuotaExceededFault = DBClusterAutomatedBackupQuotaExceededFault;
|
|
1279
|
+
class DBClusterAutomatedBackupNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
1280
|
+
constructor(opts) {
|
|
1281
|
+
super({
|
|
1282
|
+
name: "DBClusterAutomatedBackupNotFoundFault",
|
|
1283
|
+
$fault: "client",
|
|
1284
|
+
...opts,
|
|
1285
|
+
});
|
|
1286
|
+
this.name = "DBClusterAutomatedBackupNotFoundFault";
|
|
1287
|
+
this.$fault = "client";
|
|
1288
|
+
Object.setPrototypeOf(this, DBClusterAutomatedBackupNotFoundFault.prototype);
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
exports.DBClusterAutomatedBackupNotFoundFault = DBClusterAutomatedBackupNotFoundFault;
|
|
1292
|
+
class InvalidDBClusterAutomatedBackupStateFault extends RDSServiceException_1.RDSServiceException {
|
|
1293
|
+
constructor(opts) {
|
|
1294
|
+
super({
|
|
1295
|
+
name: "InvalidDBClusterAutomatedBackupStateFault",
|
|
1296
|
+
$fault: "client",
|
|
1297
|
+
...opts,
|
|
1298
|
+
});
|
|
1299
|
+
this.name = "InvalidDBClusterAutomatedBackupStateFault";
|
|
1300
|
+
this.$fault = "client";
|
|
1301
|
+
Object.setPrototypeOf(this, InvalidDBClusterAutomatedBackupStateFault.prototype);
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
exports.InvalidDBClusterAutomatedBackupStateFault = InvalidDBClusterAutomatedBackupStateFault;
|
|
1266
1305
|
class DBClusterEndpointNotFoundFault extends RDSServiceException_1.RDSServiceException {
|
|
1267
1306
|
constructor(opts) {
|
|
1268
1307
|
super({
|