@aws-sdk/client-rds 3.38.0 → 3.39.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/CHANGELOG.md +11 -0
- package/dist-cjs/RDS.js +45 -0
- package/dist-cjs/commands/CreateCustomDBEngineVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteCustomDBEngineVersionCommand.js +36 -0
- package/dist-cjs/commands/DescribeDBProxyTargetsCommand.js +2 -1
- package/dist-cjs/commands/ModifyCustomDBEngineVersionCommand.js +37 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +5 -0
- package/dist-cjs/models/models_0.js +70 -73
- package/dist-cjs/models/models_1.js +60 -4
- package/dist-cjs/protocols/Aws_query.js +426 -6
- package/dist-es/RDS.js +45 -0
- package/dist-es/commands/CreateCustomDBEngineVersionCommand.js +39 -0
- package/dist-es/commands/DeleteCustomDBEngineVersionCommand.js +39 -0
- package/dist-es/commands/DescribeDBProxyTargetsCommand.js +2 -1
- package/dist-es/commands/ModifyCustomDBEngineVersionCommand.js +40 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +5 -0
- package/dist-es/models/models_0.js +45 -54
- package/dist-es/models/models_1.js +48 -0
- package/dist-es/protocols/Aws_query.js +431 -0
- package/dist-types/RDS.d.ts +103 -13
- package/dist-types/RDSClient.d.ts +5 -2
- package/dist-types/commands/AddRoleToDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +1 -2
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +62 -0
- package/dist-types/commands/CreateDBParameterGroupCommand.d.ts +4 -3
- package/dist-types/commands/CreateOptionGroupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +55 -0
- package/dist-types/commands/DescribeDBLogFilesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBProxyTargetsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeValidDBInstanceModificationsCommand.d.ts +3 -4
- package/dist-types/commands/DownloadDBLogFilePortionCommand.d.ts +1 -0
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +46 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +1 -1
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +1 -1
- package/dist-types/commands/StartExportTaskCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +697 -410
- package/dist-types/models/models_1.d.ts +468 -137
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/RDS.d.ts +15 -0
- package/dist-types/ts3.4/RDSClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/CreateCustomDBEngineVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteCustomDBEngineVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDBProxyTargetsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ModifyCustomDBEngineVersionCommand.d.ts +18 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +190 -154
- package/dist-types/ts3.4/models/models_1.d.ts +97 -2
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +9 -0
- package/package.json +11 -11
package/dist-es/RDS.js
CHANGED
|
@@ -13,6 +13,7 @@ import { CopyDBParameterGroupCommand, } from "./commands/CopyDBParameterGroupCom
|
|
|
13
13
|
import { CopyDBSnapshotCommand, } from "./commands/CopyDBSnapshotCommand";
|
|
14
14
|
import { CopyOptionGroupCommand, } from "./commands/CopyOptionGroupCommand";
|
|
15
15
|
import { CreateCustomAvailabilityZoneCommand, } from "./commands/CreateCustomAvailabilityZoneCommand";
|
|
16
|
+
import { CreateCustomDBEngineVersionCommand, } from "./commands/CreateCustomDBEngineVersionCommand";
|
|
16
17
|
import { CreateDBClusterCommand, } from "./commands/CreateDBClusterCommand";
|
|
17
18
|
import { CreateDBClusterEndpointCommand, } from "./commands/CreateDBClusterEndpointCommand";
|
|
18
19
|
import { CreateDBClusterParameterGroupCommand, } from "./commands/CreateDBClusterParameterGroupCommand";
|
|
@@ -29,6 +30,7 @@ import { CreateEventSubscriptionCommand, } from "./commands/CreateEventSubscript
|
|
|
29
30
|
import { CreateGlobalClusterCommand, } from "./commands/CreateGlobalClusterCommand";
|
|
30
31
|
import { CreateOptionGroupCommand, } from "./commands/CreateOptionGroupCommand";
|
|
31
32
|
import { DeleteCustomAvailabilityZoneCommand, } from "./commands/DeleteCustomAvailabilityZoneCommand";
|
|
33
|
+
import { DeleteCustomDBEngineVersionCommand, } from "./commands/DeleteCustomDBEngineVersionCommand";
|
|
32
34
|
import { DeleteDBClusterCommand, } from "./commands/DeleteDBClusterCommand";
|
|
33
35
|
import { DeleteDBClusterEndpointCommand, } from "./commands/DeleteDBClusterEndpointCommand";
|
|
34
36
|
import { DeleteDBClusterParameterGroupCommand, } from "./commands/DeleteDBClusterParameterGroupCommand";
|
|
@@ -93,6 +95,7 @@ import { ImportInstallationMediaCommand, } from "./commands/ImportInstallationMe
|
|
|
93
95
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
94
96
|
import { ModifyCertificatesCommand, } from "./commands/ModifyCertificatesCommand";
|
|
95
97
|
import { ModifyCurrentDBClusterCapacityCommand, } from "./commands/ModifyCurrentDBClusterCapacityCommand";
|
|
98
|
+
import { ModifyCustomDBEngineVersionCommand, } from "./commands/ModifyCustomDBEngineVersionCommand";
|
|
96
99
|
import { ModifyDBClusterCommand, } from "./commands/ModifyDBClusterCommand";
|
|
97
100
|
import { ModifyDBClusterEndpointCommand, } from "./commands/ModifyDBClusterEndpointCommand";
|
|
98
101
|
import { ModifyDBClusterParameterGroupCommand, } from "./commands/ModifyDBClusterParameterGroupCommand";
|
|
@@ -338,6 +341,20 @@ var RDS = (function (_super) {
|
|
|
338
341
|
return this.send(command, optionsOrCb);
|
|
339
342
|
}
|
|
340
343
|
};
|
|
344
|
+
RDS.prototype.createCustomDBEngineVersion = function (args, optionsOrCb, cb) {
|
|
345
|
+
var command = new CreateCustomDBEngineVersionCommand(args);
|
|
346
|
+
if (typeof optionsOrCb === "function") {
|
|
347
|
+
this.send(command, optionsOrCb);
|
|
348
|
+
}
|
|
349
|
+
else if (typeof cb === "function") {
|
|
350
|
+
if (typeof optionsOrCb !== "object")
|
|
351
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
352
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
353
|
+
}
|
|
354
|
+
else {
|
|
355
|
+
return this.send(command, optionsOrCb);
|
|
356
|
+
}
|
|
357
|
+
};
|
|
341
358
|
RDS.prototype.createDBCluster = function (args, optionsOrCb, cb) {
|
|
342
359
|
var command = new CreateDBClusterCommand(args);
|
|
343
360
|
if (typeof optionsOrCb === "function") {
|
|
@@ -562,6 +579,20 @@ var RDS = (function (_super) {
|
|
|
562
579
|
return this.send(command, optionsOrCb);
|
|
563
580
|
}
|
|
564
581
|
};
|
|
582
|
+
RDS.prototype.deleteCustomDBEngineVersion = function (args, optionsOrCb, cb) {
|
|
583
|
+
var command = new DeleteCustomDBEngineVersionCommand(args);
|
|
584
|
+
if (typeof optionsOrCb === "function") {
|
|
585
|
+
this.send(command, optionsOrCb);
|
|
586
|
+
}
|
|
587
|
+
else if (typeof cb === "function") {
|
|
588
|
+
if (typeof optionsOrCb !== "object")
|
|
589
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
590
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
591
|
+
}
|
|
592
|
+
else {
|
|
593
|
+
return this.send(command, optionsOrCb);
|
|
594
|
+
}
|
|
595
|
+
};
|
|
565
596
|
RDS.prototype.deleteDBCluster = function (args, optionsOrCb, cb) {
|
|
566
597
|
var command = new DeleteDBClusterCommand(args);
|
|
567
598
|
if (typeof optionsOrCb === "function") {
|
|
@@ -1458,6 +1489,20 @@ var RDS = (function (_super) {
|
|
|
1458
1489
|
return this.send(command, optionsOrCb);
|
|
1459
1490
|
}
|
|
1460
1491
|
};
|
|
1492
|
+
RDS.prototype.modifyCustomDBEngineVersion = function (args, optionsOrCb, cb) {
|
|
1493
|
+
var command = new ModifyCustomDBEngineVersionCommand(args);
|
|
1494
|
+
if (typeof optionsOrCb === "function") {
|
|
1495
|
+
this.send(command, optionsOrCb);
|
|
1496
|
+
}
|
|
1497
|
+
else if (typeof cb === "function") {
|
|
1498
|
+
if (typeof optionsOrCb !== "object")
|
|
1499
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1500
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1501
|
+
}
|
|
1502
|
+
else {
|
|
1503
|
+
return this.send(command, optionsOrCb);
|
|
1504
|
+
}
|
|
1505
|
+
};
|
|
1461
1506
|
RDS.prototype.modifyDBCluster = function (args, optionsOrCb, cb) {
|
|
1462
1507
|
var command = new ModifyDBClusterCommand(args);
|
|
1463
1508
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { CreateCustomDBEngineVersionMessage, DBEngineVersion } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_queryCreateCustomDBEngineVersionCommand, serializeAws_queryCreateCustomDBEngineVersionCommand, } from "../protocols/Aws_query";
|
|
6
|
+
var CreateCustomDBEngineVersionCommand = (function (_super) {
|
|
7
|
+
__extends(CreateCustomDBEngineVersionCommand, _super);
|
|
8
|
+
function CreateCustomDBEngineVersionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreateCustomDBEngineVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSClient";
|
|
18
|
+
var commandName = "CreateCustomDBEngineVersionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreateCustomDBEngineVersionMessage.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DBEngineVersion.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreateCustomDBEngineVersionCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_queryCreateCustomDBEngineVersionCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreateCustomDBEngineVersionCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_queryCreateCustomDBEngineVersionCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreateCustomDBEngineVersionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateCustomDBEngineVersionCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DBEngineVersion, DeleteCustomDBEngineVersionMessage } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_queryDeleteCustomDBEngineVersionCommand, serializeAws_queryDeleteCustomDBEngineVersionCommand, } from "../protocols/Aws_query";
|
|
6
|
+
var DeleteCustomDBEngineVersionCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteCustomDBEngineVersionCommand, _super);
|
|
8
|
+
function DeleteCustomDBEngineVersionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DeleteCustomDBEngineVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSClient";
|
|
18
|
+
var commandName = "DeleteCustomDBEngineVersionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DeleteCustomDBEngineVersionMessage.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DBEngineVersion.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteCustomDBEngineVersionCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_queryDeleteCustomDBEngineVersionCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DeleteCustomDBEngineVersionCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_queryDeleteCustomDBEngineVersionCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DeleteCustomDBEngineVersionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteCustomDBEngineVersionCommand };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeDBProxyTargetsRequest
|
|
4
|
+
import { DescribeDBProxyTargetsRequest } from "../models/models_0";
|
|
5
|
+
import { DescribeDBProxyTargetsResponse } from "../models/models_1";
|
|
5
6
|
import { deserializeAws_queryDescribeDBProxyTargetsCommand, serializeAws_queryDescribeDBProxyTargetsCommand, } from "../protocols/Aws_query";
|
|
6
7
|
var DescribeDBProxyTargetsCommand = (function (_super) {
|
|
7
8
|
__extends(DescribeDBProxyTargetsCommand, _super);
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DBEngineVersion } from "../models/models_0";
|
|
5
|
+
import { ModifyCustomDBEngineVersionMessage } from "../models/models_1";
|
|
6
|
+
import { deserializeAws_queryModifyCustomDBEngineVersionCommand, serializeAws_queryModifyCustomDBEngineVersionCommand, } from "../protocols/Aws_query";
|
|
7
|
+
var ModifyCustomDBEngineVersionCommand = (function (_super) {
|
|
8
|
+
__extends(ModifyCustomDBEngineVersionCommand, _super);
|
|
9
|
+
function ModifyCustomDBEngineVersionCommand(input) {
|
|
10
|
+
var _this = _super.call(this) || this;
|
|
11
|
+
_this.input = input;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
ModifyCustomDBEngineVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
17
|
+
var logger = configuration.logger;
|
|
18
|
+
var clientName = "RDSClient";
|
|
19
|
+
var commandName = "ModifyCustomDBEngineVersionCommand";
|
|
20
|
+
var handlerExecutionContext = {
|
|
21
|
+
logger: logger,
|
|
22
|
+
clientName: clientName,
|
|
23
|
+
commandName: commandName,
|
|
24
|
+
inputFilterSensitiveLog: ModifyCustomDBEngineVersionMessage.filterSensitiveLog,
|
|
25
|
+
outputFilterSensitiveLog: DBEngineVersion.filterSensitiveLog,
|
|
26
|
+
};
|
|
27
|
+
var requestHandler = configuration.requestHandler;
|
|
28
|
+
return stack.resolve(function (request) {
|
|
29
|
+
return requestHandler.handle(request.request, options || {});
|
|
30
|
+
}, handlerExecutionContext);
|
|
31
|
+
};
|
|
32
|
+
ModifyCustomDBEngineVersionCommand.prototype.serialize = function (input, context) {
|
|
33
|
+
return serializeAws_queryModifyCustomDBEngineVersionCommand(input, context);
|
|
34
|
+
};
|
|
35
|
+
ModifyCustomDBEngineVersionCommand.prototype.deserialize = function (output, context) {
|
|
36
|
+
return deserializeAws_queryModifyCustomDBEngineVersionCommand(output, context);
|
|
37
|
+
};
|
|
38
|
+
return ModifyCustomDBEngineVersionCommand;
|
|
39
|
+
}($Command));
|
|
40
|
+
export { ModifyCustomDBEngineVersionCommand };
|
|
@@ -12,6 +12,7 @@ export * from "./CopyDBParameterGroupCommand";
|
|
|
12
12
|
export * from "./CopyDBSnapshotCommand";
|
|
13
13
|
export * from "./CopyOptionGroupCommand";
|
|
14
14
|
export * from "./CreateCustomAvailabilityZoneCommand";
|
|
15
|
+
export * from "./CreateCustomDBEngineVersionCommand";
|
|
15
16
|
export * from "./CreateDBClusterCommand";
|
|
16
17
|
export * from "./CreateDBClusterEndpointCommand";
|
|
17
18
|
export * from "./CreateDBClusterParameterGroupCommand";
|
|
@@ -28,6 +29,7 @@ export * from "./CreateEventSubscriptionCommand";
|
|
|
28
29
|
export * from "./CreateGlobalClusterCommand";
|
|
29
30
|
export * from "./CreateOptionGroupCommand";
|
|
30
31
|
export * from "./DeleteCustomAvailabilityZoneCommand";
|
|
32
|
+
export * from "./DeleteCustomDBEngineVersionCommand";
|
|
31
33
|
export * from "./DeleteDBClusterCommand";
|
|
32
34
|
export * from "./DeleteDBClusterEndpointCommand";
|
|
33
35
|
export * from "./DeleteDBClusterParameterGroupCommand";
|
|
@@ -92,6 +94,7 @@ export * from "./ImportInstallationMediaCommand";
|
|
|
92
94
|
export * from "./ListTagsForResourceCommand";
|
|
93
95
|
export * from "./ModifyCertificatesCommand";
|
|
94
96
|
export * from "./ModifyCurrentDBClusterCapacityCommand";
|
|
97
|
+
export * from "./ModifyCustomDBEngineVersionCommand";
|
|
95
98
|
export * from "./ModifyDBClusterCommand";
|
|
96
99
|
export * from "./ModifyDBClusterEndpointCommand";
|
|
97
100
|
export * from "./ModifyDBClusterParameterGroupCommand";
|
package/dist-es/endpoints.js
CHANGED
|
@@ -60,22 +60,27 @@ var partitionHash = {
|
|
|
60
60
|
"us-west-1",
|
|
61
61
|
"us-west-2",
|
|
62
62
|
],
|
|
63
|
+
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
|
|
63
64
|
hostname: "rds.{region}.amazonaws.com",
|
|
64
65
|
},
|
|
65
66
|
"aws-cn": {
|
|
66
67
|
regions: ["cn-north-1", "cn-northwest-1"],
|
|
68
|
+
regionRegex: "^cn\\-\\w+\\-\\d+$",
|
|
67
69
|
hostname: "rds.{region}.amazonaws.com.cn",
|
|
68
70
|
},
|
|
69
71
|
"aws-iso": {
|
|
70
72
|
regions: ["us-iso-east-1", "us-iso-west-1"],
|
|
73
|
+
regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
|
|
71
74
|
hostname: "rds.{region}.c2s.ic.gov",
|
|
72
75
|
},
|
|
73
76
|
"aws-iso-b": {
|
|
74
77
|
regions: ["us-isob-east-1"],
|
|
78
|
+
regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
|
|
75
79
|
hostname: "rds.{region}.sc2s.sgov.gov",
|
|
76
80
|
},
|
|
77
81
|
"aws-us-gov": {
|
|
78
82
|
regions: ["rds.us-gov-east-1", "rds.us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
|
|
83
|
+
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
79
84
|
hostname: "rds.{region}.amazonaws.com",
|
|
80
85
|
},
|
|
81
86
|
};
|
|
@@ -330,6 +330,34 @@ export var CustomAvailabilityZoneQuotaExceededFault;
|
|
|
330
330
|
(function (CustomAvailabilityZoneQuotaExceededFault) {
|
|
331
331
|
CustomAvailabilityZoneQuotaExceededFault.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
332
|
})(CustomAvailabilityZoneQuotaExceededFault || (CustomAvailabilityZoneQuotaExceededFault = {}));
|
|
333
|
+
export var CreateCustomDBEngineVersionMessage;
|
|
334
|
+
(function (CreateCustomDBEngineVersionMessage) {
|
|
335
|
+
CreateCustomDBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
})(CreateCustomDBEngineVersionMessage || (CreateCustomDBEngineVersionMessage = {}));
|
|
337
|
+
export var CustomDBEngineVersionAlreadyExistsFault;
|
|
338
|
+
(function (CustomDBEngineVersionAlreadyExistsFault) {
|
|
339
|
+
CustomDBEngineVersionAlreadyExistsFault.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
})(CustomDBEngineVersionAlreadyExistsFault || (CustomDBEngineVersionAlreadyExistsFault = {}));
|
|
341
|
+
export var CustomDBEngineVersionQuotaExceededFault;
|
|
342
|
+
(function (CustomDBEngineVersionQuotaExceededFault) {
|
|
343
|
+
CustomDBEngineVersionQuotaExceededFault.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
})(CustomDBEngineVersionQuotaExceededFault || (CustomDBEngineVersionQuotaExceededFault = {}));
|
|
345
|
+
export var CharacterSet;
|
|
346
|
+
(function (CharacterSet) {
|
|
347
|
+
CharacterSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
})(CharacterSet || (CharacterSet = {}));
|
|
349
|
+
export var Timezone;
|
|
350
|
+
(function (Timezone) {
|
|
351
|
+
Timezone.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
})(Timezone || (Timezone = {}));
|
|
353
|
+
export var UpgradeTarget;
|
|
354
|
+
(function (UpgradeTarget) {
|
|
355
|
+
UpgradeTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
})(UpgradeTarget || (UpgradeTarget = {}));
|
|
357
|
+
export var DBEngineVersion;
|
|
358
|
+
(function (DBEngineVersion) {
|
|
359
|
+
DBEngineVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
})(DBEngineVersion || (DBEngineVersion = {}));
|
|
333
361
|
export var ScalingConfiguration;
|
|
334
362
|
(function (ScalingConfiguration) {
|
|
335
363
|
ScalingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -482,6 +510,11 @@ export var DBInstanceRole;
|
|
|
482
510
|
(function (DBInstanceRole) {
|
|
483
511
|
DBInstanceRole.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
484
512
|
})(DBInstanceRole || (DBInstanceRole = {}));
|
|
513
|
+
export var AutomationMode;
|
|
514
|
+
(function (AutomationMode) {
|
|
515
|
+
AutomationMode["ALL_PAUSED"] = "all-paused";
|
|
516
|
+
AutomationMode["FULL"] = "full";
|
|
517
|
+
})(AutomationMode || (AutomationMode = {}));
|
|
485
518
|
export var DBInstanceAutomatedBackupsReplication;
|
|
486
519
|
(function (DBInstanceAutomatedBackupsReplication) {
|
|
487
520
|
DBInstanceAutomatedBackupsReplication.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -803,6 +836,18 @@ export var DeleteCustomAvailabilityZoneResult;
|
|
|
803
836
|
CustomAvailabilityZone: CustomAvailabilityZone.filterSensitiveLog(obj.CustomAvailabilityZone),
|
|
804
837
|
}))); };
|
|
805
838
|
})(DeleteCustomAvailabilityZoneResult || (DeleteCustomAvailabilityZoneResult = {}));
|
|
839
|
+
export var CustomDBEngineVersionNotFoundFault;
|
|
840
|
+
(function (CustomDBEngineVersionNotFoundFault) {
|
|
841
|
+
CustomDBEngineVersionNotFoundFault.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
842
|
+
})(CustomDBEngineVersionNotFoundFault || (CustomDBEngineVersionNotFoundFault = {}));
|
|
843
|
+
export var DeleteCustomDBEngineVersionMessage;
|
|
844
|
+
(function (DeleteCustomDBEngineVersionMessage) {
|
|
845
|
+
DeleteCustomDBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
846
|
+
})(DeleteCustomDBEngineVersionMessage || (DeleteCustomDBEngineVersionMessage = {}));
|
|
847
|
+
export var InvalidCustomDBEngineVersionStateFault;
|
|
848
|
+
(function (InvalidCustomDBEngineVersionStateFault) {
|
|
849
|
+
InvalidCustomDBEngineVersionStateFault.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
850
|
+
})(InvalidCustomDBEngineVersionStateFault || (InvalidCustomDBEngineVersionStateFault = {}));
|
|
806
851
|
export var DeleteDBClusterMessage;
|
|
807
852
|
(function (DeleteDBClusterMessage) {
|
|
808
853
|
DeleteDBClusterMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1087,22 +1132,6 @@ export var DescribeDBClusterSnapshotsMessage;
|
|
|
1087
1132
|
(function (DescribeDBClusterSnapshotsMessage) {
|
|
1088
1133
|
DescribeDBClusterSnapshotsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1089
1134
|
})(DescribeDBClusterSnapshotsMessage || (DescribeDBClusterSnapshotsMessage = {}));
|
|
1090
|
-
export var CharacterSet;
|
|
1091
|
-
(function (CharacterSet) {
|
|
1092
|
-
CharacterSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1093
|
-
})(CharacterSet || (CharacterSet = {}));
|
|
1094
|
-
export var Timezone;
|
|
1095
|
-
(function (Timezone) {
|
|
1096
|
-
Timezone.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1097
|
-
})(Timezone || (Timezone = {}));
|
|
1098
|
-
export var UpgradeTarget;
|
|
1099
|
-
(function (UpgradeTarget) {
|
|
1100
|
-
UpgradeTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1101
|
-
})(UpgradeTarget || (UpgradeTarget = {}));
|
|
1102
|
-
export var DBEngineVersion;
|
|
1103
|
-
(function (DBEngineVersion) {
|
|
1104
|
-
DBEngineVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1105
|
-
})(DBEngineVersion || (DBEngineVersion = {}));
|
|
1106
1135
|
export var DBEngineVersionMessage;
|
|
1107
1136
|
(function (DBEngineVersionMessage) {
|
|
1108
1137
|
DBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1191,41 +1220,3 @@ export var DescribeDBProxyTargetsRequest;
|
|
|
1191
1220
|
(function (DescribeDBProxyTargetsRequest) {
|
|
1192
1221
|
DescribeDBProxyTargetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1193
1222
|
})(DescribeDBProxyTargetsRequest || (DescribeDBProxyTargetsRequest = {}));
|
|
1194
|
-
export var TargetRole;
|
|
1195
|
-
(function (TargetRole) {
|
|
1196
|
-
TargetRole["READ_ONLY"] = "READ_ONLY";
|
|
1197
|
-
TargetRole["READ_WRITE"] = "READ_WRITE";
|
|
1198
|
-
TargetRole["UNKNOWN"] = "UNKNOWN";
|
|
1199
|
-
})(TargetRole || (TargetRole = {}));
|
|
1200
|
-
export var TargetHealthReason;
|
|
1201
|
-
(function (TargetHealthReason) {
|
|
1202
|
-
TargetHealthReason["AUTH_FAILURE"] = "AUTH_FAILURE";
|
|
1203
|
-
TargetHealthReason["CONNECTION_FAILED"] = "CONNECTION_FAILED";
|
|
1204
|
-
TargetHealthReason["INVALID_REPLICATION_STATE"] = "INVALID_REPLICATION_STATE";
|
|
1205
|
-
TargetHealthReason["PENDING_PROXY_CAPACITY"] = "PENDING_PROXY_CAPACITY";
|
|
1206
|
-
TargetHealthReason["UNREACHABLE"] = "UNREACHABLE";
|
|
1207
|
-
})(TargetHealthReason || (TargetHealthReason = {}));
|
|
1208
|
-
export var TargetState;
|
|
1209
|
-
(function (TargetState) {
|
|
1210
|
-
TargetState["available"] = "AVAILABLE";
|
|
1211
|
-
TargetState["registering"] = "REGISTERING";
|
|
1212
|
-
TargetState["unavailable"] = "UNAVAILABLE";
|
|
1213
|
-
})(TargetState || (TargetState = {}));
|
|
1214
|
-
export var TargetHealth;
|
|
1215
|
-
(function (TargetHealth) {
|
|
1216
|
-
TargetHealth.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1217
|
-
})(TargetHealth || (TargetHealth = {}));
|
|
1218
|
-
export var TargetType;
|
|
1219
|
-
(function (TargetType) {
|
|
1220
|
-
TargetType["RDS_INSTANCE"] = "RDS_INSTANCE";
|
|
1221
|
-
TargetType["RDS_SERVERLESS_ENDPOINT"] = "RDS_SERVERLESS_ENDPOINT";
|
|
1222
|
-
TargetType["TRACKED_CLUSTER"] = "TRACKED_CLUSTER";
|
|
1223
|
-
})(TargetType || (TargetType = {}));
|
|
1224
|
-
export var DBProxyTarget;
|
|
1225
|
-
(function (DBProxyTarget) {
|
|
1226
|
-
DBProxyTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1227
|
-
})(DBProxyTarget || (DBProxyTarget = {}));
|
|
1228
|
-
export var DescribeDBProxyTargetsResponse;
|
|
1229
|
-
(function (DescribeDBProxyTargetsResponse) {
|
|
1230
|
-
DescribeDBProxyTargetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1231
|
-
})(DescribeDBProxyTargetsResponse || (DescribeDBProxyTargetsResponse = {}));
|
|
@@ -1,4 +1,42 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var TargetRole;
|
|
3
|
+
(function (TargetRole) {
|
|
4
|
+
TargetRole["READ_ONLY"] = "READ_ONLY";
|
|
5
|
+
TargetRole["READ_WRITE"] = "READ_WRITE";
|
|
6
|
+
TargetRole["UNKNOWN"] = "UNKNOWN";
|
|
7
|
+
})(TargetRole || (TargetRole = {}));
|
|
8
|
+
export var TargetHealthReason;
|
|
9
|
+
(function (TargetHealthReason) {
|
|
10
|
+
TargetHealthReason["AUTH_FAILURE"] = "AUTH_FAILURE";
|
|
11
|
+
TargetHealthReason["CONNECTION_FAILED"] = "CONNECTION_FAILED";
|
|
12
|
+
TargetHealthReason["INVALID_REPLICATION_STATE"] = "INVALID_REPLICATION_STATE";
|
|
13
|
+
TargetHealthReason["PENDING_PROXY_CAPACITY"] = "PENDING_PROXY_CAPACITY";
|
|
14
|
+
TargetHealthReason["UNREACHABLE"] = "UNREACHABLE";
|
|
15
|
+
})(TargetHealthReason || (TargetHealthReason = {}));
|
|
16
|
+
export var TargetState;
|
|
17
|
+
(function (TargetState) {
|
|
18
|
+
TargetState["available"] = "AVAILABLE";
|
|
19
|
+
TargetState["registering"] = "REGISTERING";
|
|
20
|
+
TargetState["unavailable"] = "UNAVAILABLE";
|
|
21
|
+
})(TargetState || (TargetState = {}));
|
|
22
|
+
export var TargetHealth;
|
|
23
|
+
(function (TargetHealth) {
|
|
24
|
+
TargetHealth.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
25
|
+
})(TargetHealth || (TargetHealth = {}));
|
|
26
|
+
export var TargetType;
|
|
27
|
+
(function (TargetType) {
|
|
28
|
+
TargetType["RDS_INSTANCE"] = "RDS_INSTANCE";
|
|
29
|
+
TargetType["RDS_SERVERLESS_ENDPOINT"] = "RDS_SERVERLESS_ENDPOINT";
|
|
30
|
+
TargetType["TRACKED_CLUSTER"] = "TRACKED_CLUSTER";
|
|
31
|
+
})(TargetType || (TargetType = {}));
|
|
32
|
+
export var DBProxyTarget;
|
|
33
|
+
(function (DBProxyTarget) {
|
|
34
|
+
DBProxyTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
35
|
+
})(DBProxyTarget || (DBProxyTarget = {}));
|
|
36
|
+
export var DescribeDBProxyTargetsResponse;
|
|
37
|
+
(function (DescribeDBProxyTargetsResponse) {
|
|
38
|
+
DescribeDBProxyTargetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
+
})(DescribeDBProxyTargetsResponse || (DescribeDBProxyTargetsResponse = {}));
|
|
2
40
|
export var DBSecurityGroupMessage;
|
|
3
41
|
(function (DBSecurityGroupMessage) {
|
|
4
42
|
DBSecurityGroupMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -307,6 +345,16 @@ export var ModifyCurrentDBClusterCapacityMessage;
|
|
|
307
345
|
(function (ModifyCurrentDBClusterCapacityMessage) {
|
|
308
346
|
ModifyCurrentDBClusterCapacityMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
347
|
})(ModifyCurrentDBClusterCapacityMessage || (ModifyCurrentDBClusterCapacityMessage = {}));
|
|
348
|
+
export var CustomEngineVersionStatus;
|
|
349
|
+
(function (CustomEngineVersionStatus) {
|
|
350
|
+
CustomEngineVersionStatus["available"] = "available";
|
|
351
|
+
CustomEngineVersionStatus["inactive"] = "inactive";
|
|
352
|
+
CustomEngineVersionStatus["inactive_except_restore"] = "inactive-except-restore";
|
|
353
|
+
})(CustomEngineVersionStatus || (CustomEngineVersionStatus = {}));
|
|
354
|
+
export var ModifyCustomDBEngineVersionMessage;
|
|
355
|
+
(function (ModifyCustomDBEngineVersionMessage) {
|
|
356
|
+
ModifyCustomDBEngineVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
})(ModifyCustomDBEngineVersionMessage || (ModifyCustomDBEngineVersionMessage = {}));
|
|
310
358
|
export var CloudwatchLogsExportConfiguration;
|
|
311
359
|
(function (CloudwatchLogsExportConfiguration) {
|
|
312
360
|
CloudwatchLogsExportConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|