@aws-sdk/client-rds-data 3.289.0 → 3.290.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/dist-types/commands/BatchExecuteStatementCommand.d.ts +20 -0
- package/dist-types/commands/BeginTransactionCommand.d.ts +20 -0
- package/dist-types/commands/CommitTransactionCommand.d.ts +23 -0
- package/dist-types/commands/ExecuteSqlCommand.d.ts +17 -0
- package/dist-types/commands/ExecuteStatementCommand.d.ts +20 -0
- package/dist-types/commands/RollbackTransactionCommand.d.ts +23 -0
- package/package.json +29 -29
|
@@ -42,6 +42,26 @@ export interface BatchExecuteStatementCommandOutput extends BatchExecuteStatemen
|
|
|
42
42
|
* @see {@link BatchExecuteStatementCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
46
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link BadRequestException} (client fault)
|
|
49
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
52
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
55
|
+
* <p>An internal error occurred.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
58
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
59
|
+
* available.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link StatementTimeoutException} (client fault)
|
|
62
|
+
* <p>The execution of the SQL statement timed out.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
45
65
|
*/
|
|
46
66
|
export declare class BatchExecuteStatementCommand extends $Command<BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput, RDSDataClientResolvedConfig> {
|
|
47
67
|
readonly input: BatchExecuteStatementCommandInput;
|
|
@@ -37,6 +37,26 @@ export interface BeginTransactionCommandOutput extends BeginTransactionResponse,
|
|
|
37
37
|
* @see {@link BeginTransactionCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
47
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
50
|
+
* <p>An internal error occurred.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
53
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
54
|
+
* available.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link StatementTimeoutException} (client fault)
|
|
57
|
+
* <p>The execution of the SQL statement timed out.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
40
60
|
*/
|
|
41
61
|
export declare class BeginTransactionCommand extends $Command<BeginTransactionCommandInput, BeginTransactionCommandOutput, RDSDataClientResolvedConfig> {
|
|
42
62
|
readonly input: BeginTransactionCommandInput;
|
|
@@ -30,6 +30,29 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
|
|
|
30
30
|
* @see {@link CommitTransactionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
40
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
43
|
+
* <p>An internal error occurred.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link NotFoundException} (client fault)
|
|
46
|
+
* <p>The <code>resourceArn</code>, <code>secretArn</code>, or <code>transactionId</code> value can't be found.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
49
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
50
|
+
* available.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link StatementTimeoutException} (client fault)
|
|
53
|
+
* <p>The execution of the SQL statement timed out.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
33
56
|
*/
|
|
34
57
|
export declare class CommitTransactionCommand extends $Command<CommitTransactionCommandInput, CommitTransactionCommandOutput, RDSDataClientResolvedConfig> {
|
|
35
58
|
readonly input: CommitTransactionCommandInput;
|
|
@@ -35,6 +35,23 @@ export interface ExecuteSqlCommandOutput extends ExecuteSqlResponse, __MetadataB
|
|
|
35
35
|
* @see {@link ExecuteSqlCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
39
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
45
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
48
|
+
* <p>An internal error occurred.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
51
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
52
|
+
* available.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
38
55
|
*/
|
|
39
56
|
export declare class ExecuteSqlCommand extends $Command<ExecuteSqlCommandInput, ExecuteSqlCommandOutput, RDSDataClientResolvedConfig> {
|
|
40
57
|
readonly input: ExecuteSqlCommandInput;
|
|
@@ -35,6 +35,26 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementResponse,
|
|
|
35
35
|
* @see {@link ExecuteStatementCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
39
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
45
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
48
|
+
* <p>An internal error occurred.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
51
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
52
|
+
* available.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link StatementTimeoutException} (client fault)
|
|
55
|
+
* <p>The execution of the SQL statement timed out.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
38
58
|
*/
|
|
39
59
|
export declare class ExecuteStatementCommand extends $Command<ExecuteStatementCommandInput, ExecuteStatementCommandOutput, RDSDataClientResolvedConfig> {
|
|
40
60
|
readonly input: ExecuteStatementCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface RollbackTransactionCommandOutput extends RollbackTransactionRes
|
|
|
29
29
|
* @see {@link RollbackTransactionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RDSDataClientResolvedConfig | config} for RDSDataClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>There is an error in the call or in a SQL statement.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
39
|
+
* <p>There are insufficient privileges to make the call.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
42
|
+
* <p>An internal error occurred.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>The <code>resourceArn</code>, <code>secretArn</code>, or <code>transactionId</code> value can't be found.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableError} (server fault)
|
|
48
|
+
* <p>The service specified by the <code>resourceArn</code> parameter is not
|
|
49
|
+
* available.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link StatementTimeoutException} (client fault)
|
|
52
|
+
* <p>The execution of the SQL statement timed out.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class RollbackTransactionCommand extends $Command<RollbackTransactionCommandInput, RollbackTransactionCommandOutput, RDSDataClientResolvedConfig> {
|
|
34
57
|
readonly input: RollbackTransactionCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|