@aws-sdk/client-rds-data 3.183.0 → 3.185.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/protocols/Aws_restJson1.js +2 -2
- package/dist-es/RDSData.js +33 -26
- package/dist-es/RDSDataClient.js +28 -22
- package/dist-es/commands/BatchExecuteStatementCommand.js +28 -21
- package/dist-es/commands/BeginTransactionCommand.js +28 -21
- package/dist-es/commands/CommitTransactionCommand.js +28 -21
- package/dist-es/commands/ExecuteSqlCommand.js +28 -21
- package/dist-es/commands/ExecuteStatementCommand.js +28 -21
- package/dist-es/commands/RollbackTransactionCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/RDSDataServiceException.js +10 -5
- package/dist-es/models/models_0.js +116 -164
- package/dist-es/protocols/Aws_restJson1.js +844 -666
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-rds-data
|
|
@@ -929,10 +929,10 @@ const deserializeAws_restJson1Value = (output, context) => {
|
|
|
929
929
|
return { $unknown: Object.entries(output)[0] };
|
|
930
930
|
};
|
|
931
931
|
const deserializeMetadata = (output) => {
|
|
932
|
-
var _a;
|
|
932
|
+
var _a, _b;
|
|
933
933
|
return ({
|
|
934
934
|
httpStatusCode: output.statusCode,
|
|
935
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
935
|
+
requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
|
|
936
936
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
937
937
|
cfId: output.headers["x-amz-cf-id"],
|
|
938
938
|
});
|
package/dist-es/RDSData.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { BatchExecuteStatementCommand, } from "./commands/BatchExecuteStatementCommand";
|
|
2
3
|
import { BeginTransactionCommand, } from "./commands/BeginTransactionCommand";
|
|
3
4
|
import { CommitTransactionCommand, } from "./commands/CommitTransactionCommand";
|
|
@@ -5,89 +6,95 @@ import { ExecuteSqlCommand } from "./commands/ExecuteSqlCommand";
|
|
|
5
6
|
import { ExecuteStatementCommand, } from "./commands/ExecuteStatementCommand";
|
|
6
7
|
import { RollbackTransactionCommand, } from "./commands/RollbackTransactionCommand";
|
|
7
8
|
import { RDSDataClient } from "./RDSDataClient";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
var RDSData = (function (_super) {
|
|
10
|
+
__extends(RDSData, _super);
|
|
11
|
+
function RDSData() {
|
|
12
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
13
|
+
}
|
|
14
|
+
RDSData.prototype.batchExecuteStatement = function (args, optionsOrCb, cb) {
|
|
15
|
+
var command = new BatchExecuteStatementCommand(args);
|
|
11
16
|
if (typeof optionsOrCb === "function") {
|
|
12
17
|
this.send(command, optionsOrCb);
|
|
13
18
|
}
|
|
14
19
|
else if (typeof cb === "function") {
|
|
15
20
|
if (typeof optionsOrCb !== "object")
|
|
16
|
-
throw new Error(
|
|
21
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
17
22
|
this.send(command, optionsOrCb || {}, cb);
|
|
18
23
|
}
|
|
19
24
|
else {
|
|
20
25
|
return this.send(command, optionsOrCb);
|
|
21
26
|
}
|
|
22
|
-
}
|
|
23
|
-
beginTransaction(args, optionsOrCb, cb) {
|
|
24
|
-
|
|
27
|
+
};
|
|
28
|
+
RDSData.prototype.beginTransaction = function (args, optionsOrCb, cb) {
|
|
29
|
+
var command = new BeginTransactionCommand(args);
|
|
25
30
|
if (typeof optionsOrCb === "function") {
|
|
26
31
|
this.send(command, optionsOrCb);
|
|
27
32
|
}
|
|
28
33
|
else if (typeof cb === "function") {
|
|
29
34
|
if (typeof optionsOrCb !== "object")
|
|
30
|
-
throw new Error(
|
|
35
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
31
36
|
this.send(command, optionsOrCb || {}, cb);
|
|
32
37
|
}
|
|
33
38
|
else {
|
|
34
39
|
return this.send(command, optionsOrCb);
|
|
35
40
|
}
|
|
36
|
-
}
|
|
37
|
-
commitTransaction(args, optionsOrCb, cb) {
|
|
38
|
-
|
|
41
|
+
};
|
|
42
|
+
RDSData.prototype.commitTransaction = function (args, optionsOrCb, cb) {
|
|
43
|
+
var command = new CommitTransactionCommand(args);
|
|
39
44
|
if (typeof optionsOrCb === "function") {
|
|
40
45
|
this.send(command, optionsOrCb);
|
|
41
46
|
}
|
|
42
47
|
else if (typeof cb === "function") {
|
|
43
48
|
if (typeof optionsOrCb !== "object")
|
|
44
|
-
throw new Error(
|
|
49
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
45
50
|
this.send(command, optionsOrCb || {}, cb);
|
|
46
51
|
}
|
|
47
52
|
else {
|
|
48
53
|
return this.send(command, optionsOrCb);
|
|
49
54
|
}
|
|
50
|
-
}
|
|
51
|
-
executeSql(args, optionsOrCb, cb) {
|
|
52
|
-
|
|
55
|
+
};
|
|
56
|
+
RDSData.prototype.executeSql = function (args, optionsOrCb, cb) {
|
|
57
|
+
var command = new ExecuteSqlCommand(args);
|
|
53
58
|
if (typeof optionsOrCb === "function") {
|
|
54
59
|
this.send(command, optionsOrCb);
|
|
55
60
|
}
|
|
56
61
|
else if (typeof cb === "function") {
|
|
57
62
|
if (typeof optionsOrCb !== "object")
|
|
58
|
-
throw new Error(
|
|
63
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
59
64
|
this.send(command, optionsOrCb || {}, cb);
|
|
60
65
|
}
|
|
61
66
|
else {
|
|
62
67
|
return this.send(command, optionsOrCb);
|
|
63
68
|
}
|
|
64
|
-
}
|
|
65
|
-
executeStatement(args, optionsOrCb, cb) {
|
|
66
|
-
|
|
69
|
+
};
|
|
70
|
+
RDSData.prototype.executeStatement = function (args, optionsOrCb, cb) {
|
|
71
|
+
var command = new ExecuteStatementCommand(args);
|
|
67
72
|
if (typeof optionsOrCb === "function") {
|
|
68
73
|
this.send(command, optionsOrCb);
|
|
69
74
|
}
|
|
70
75
|
else if (typeof cb === "function") {
|
|
71
76
|
if (typeof optionsOrCb !== "object")
|
|
72
|
-
throw new Error(
|
|
77
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
73
78
|
this.send(command, optionsOrCb || {}, cb);
|
|
74
79
|
}
|
|
75
80
|
else {
|
|
76
81
|
return this.send(command, optionsOrCb);
|
|
77
82
|
}
|
|
78
|
-
}
|
|
79
|
-
rollbackTransaction(args, optionsOrCb, cb) {
|
|
80
|
-
|
|
83
|
+
};
|
|
84
|
+
RDSData.prototype.rollbackTransaction = function (args, optionsOrCb, cb) {
|
|
85
|
+
var command = new RollbackTransactionCommand(args);
|
|
81
86
|
if (typeof optionsOrCb === "function") {
|
|
82
87
|
this.send(command, optionsOrCb);
|
|
83
88
|
}
|
|
84
89
|
else if (typeof cb === "function") {
|
|
85
90
|
if (typeof optionsOrCb !== "object")
|
|
86
|
-
throw new Error(
|
|
91
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
87
92
|
this.send(command, optionsOrCb || {}, cb);
|
|
88
93
|
}
|
|
89
94
|
else {
|
|
90
95
|
return this.send(command, optionsOrCb);
|
|
91
96
|
}
|
|
92
|
-
}
|
|
93
|
-
|
|
97
|
+
};
|
|
98
|
+
return RDSData;
|
|
99
|
+
}(RDSDataClient));
|
|
100
|
+
export { RDSData };
|
package/dist-es/RDSDataClient.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var RDSDataClient = (function (_super) {
|
|
13
|
+
__extends(RDSDataClient, _super);
|
|
14
|
+
function RDSDataClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
RDSDataClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return RDSDataClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { RDSDataClient };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { BatchExecuteStatementRequestFilterSensitiveLog, BatchExecuteStatementResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1BatchExecuteStatementCommand, serializeAws_restJson1BatchExecuteStatementCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var BatchExecuteStatementCommand = (function (_super) {
|
|
7
|
+
__extends(BatchExecuteStatementCommand, _super);
|
|
8
|
+
function BatchExecuteStatementCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
BatchExecuteStatementCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "BatchExecuteStatementCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: BatchExecuteStatementRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: BatchExecuteStatementResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
BatchExecuteStatementCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1BatchExecuteStatementCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
BatchExecuteStatementCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1BatchExecuteStatementCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return BatchExecuteStatementCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { BatchExecuteStatementCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { BeginTransactionRequestFilterSensitiveLog, BeginTransactionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1BeginTransactionCommand, serializeAws_restJson1BeginTransactionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var BeginTransactionCommand = (function (_super) {
|
|
7
|
+
__extends(BeginTransactionCommand, _super);
|
|
8
|
+
function BeginTransactionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
BeginTransactionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "BeginTransactionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: BeginTransactionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: BeginTransactionResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
BeginTransactionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1BeginTransactionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
BeginTransactionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1BeginTransactionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return BeginTransactionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { BeginTransactionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { CommitTransactionRequestFilterSensitiveLog, CommitTransactionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1CommitTransactionCommand, serializeAws_restJson1CommitTransactionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CommitTransactionCommand = (function (_super) {
|
|
7
|
+
__extends(CommitTransactionCommand, _super);
|
|
8
|
+
function CommitTransactionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CommitTransactionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "CommitTransactionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CommitTransactionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CommitTransactionResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CommitTransactionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1CommitTransactionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CommitTransactionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1CommitTransactionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CommitTransactionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CommitTransactionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ExecuteSqlRequestFilterSensitiveLog, ExecuteSqlResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1ExecuteSqlCommand, serializeAws_restJson1ExecuteSqlCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ExecuteSqlCommand = (function (_super) {
|
|
7
|
+
__extends(ExecuteSqlCommand, _super);
|
|
8
|
+
function ExecuteSqlCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ExecuteSqlCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "ExecuteSqlCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ExecuteSqlRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ExecuteSqlResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ExecuteSqlCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1ExecuteSqlCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ExecuteSqlCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1ExecuteSqlCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ExecuteSqlCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ExecuteSqlCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ExecuteStatementRequestFilterSensitiveLog, ExecuteStatementResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1ExecuteStatementCommand, serializeAws_restJson1ExecuteStatementCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ExecuteStatementCommand = (function (_super) {
|
|
7
|
+
__extends(ExecuteStatementCommand, _super);
|
|
8
|
+
function ExecuteStatementCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ExecuteStatementCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "ExecuteStatementCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ExecuteStatementRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ExecuteStatementResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ExecuteStatementCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1ExecuteStatementCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ExecuteStatementCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1ExecuteStatementCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ExecuteStatementCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ExecuteStatementCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { RollbackTransactionRequestFilterSensitiveLog, RollbackTransactionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1RollbackTransactionCommand, serializeAws_restJson1RollbackTransactionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var RollbackTransactionCommand = (function (_super) {
|
|
7
|
+
__extends(RollbackTransactionCommand, _super);
|
|
8
|
+
function RollbackTransactionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
RollbackTransactionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "RDSDataClient";
|
|
18
|
+
var commandName = "RollbackTransactionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: RollbackTransactionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: RollbackTransactionResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
RollbackTransactionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1RollbackTransactionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
RollbackTransactionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1RollbackTransactionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return RollbackTransactionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { RollbackTransactionCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
+
var regionHash = {
|
|
3
4
|
"us-east-1": {
|
|
4
5
|
variants: [
|
|
5
6
|
{
|
|
@@ -33,7 +34,7 @@ const regionHash = {
|
|
|
33
34
|
],
|
|
34
35
|
},
|
|
35
36
|
};
|
|
36
|
-
|
|
37
|
+
var partitionHash = {
|
|
37
38
|
aws: {
|
|
38
39
|
regions: [
|
|
39
40
|
"af-south-1",
|
|
@@ -157,9 +158,8 @@ const partitionHash = {
|
|
|
157
158
|
],
|
|
158
159
|
},
|
|
159
160
|
};
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
});
|
|
161
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
162
|
+
return __generator(this, function (_a) {
|
|
163
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "rds-data", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
164
|
+
});
|
|
165
|
+
}); };
|