@aws-sdk/client-rds-data 3.478.0 → 3.479.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 +15 -9
- package/dist-cjs/models/models_0.js +105 -1
- package/dist-cjs/protocols/Aws_restJson1.js +210 -0
- package/dist-es/models/models_0.js +96 -0
- package/dist-es/protocols/Aws_restJson1.js +211 -1
- package/dist-types/RDSData.d.ts +14 -8
- package/dist-types/RDSDataClient.d.ts +14 -8
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +38 -6
- package/dist-types/commands/BeginTransactionCommand.d.ts +37 -5
- package/dist-types/commands/CommitTransactionCommand.d.ts +35 -3
- package/dist-types/commands/ExecuteSqlCommand.d.ts +7 -7
- package/dist-types/commands/ExecuteStatementCommand.d.ts +51 -5
- package/dist-types/commands/RollbackTransactionCommand.d.ts +35 -3
- package/dist-types/index.d.ts +14 -8
- package/dist-types/models/models_0.d.ts +160 -45
- package/dist-types/ts3.4/models/models_0.d.ts +59 -0
- package/package.json +1 -1
|
@@ -23,11 +23,42 @@ export declare const TypeHint: {
|
|
|
23
23
|
readonly UUID: "UUID";
|
|
24
24
|
};
|
|
25
25
|
export type TypeHint = (typeof TypeHint)[keyof typeof TypeHint];
|
|
26
|
+
export declare class DatabaseErrorException extends __BaseException {
|
|
27
|
+
readonly name: "DatabaseErrorException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<DatabaseErrorException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class DatabaseNotFoundException extends __BaseException {
|
|
34
|
+
readonly name: "DatabaseNotFoundException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<DatabaseNotFoundException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class DatabaseUnavailableException extends __BaseException {
|
|
41
|
+
readonly name: "DatabaseUnavailableException";
|
|
42
|
+
readonly $fault: "server";
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
26
47
|
export declare class ForbiddenException extends __BaseException {
|
|
27
48
|
readonly name: "ForbiddenException";
|
|
28
49
|
readonly $fault: "client";
|
|
29
50
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
30
51
|
}
|
|
52
|
+
export declare class HttpEndpointNotEnabledException extends __BaseException {
|
|
53
|
+
readonly name: "HttpEndpointNotEnabledException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<
|
|
57
|
+
HttpEndpointNotEnabledException,
|
|
58
|
+
__BaseException
|
|
59
|
+
>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
31
62
|
export declare class InternalServerErrorException extends __BaseException {
|
|
32
63
|
readonly name: "InternalServerErrorException";
|
|
33
64
|
readonly $fault: "server";
|
|
@@ -35,6 +66,20 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
35
66
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
36
67
|
);
|
|
37
68
|
}
|
|
69
|
+
export declare class InvalidSecretException extends __BaseException {
|
|
70
|
+
readonly name: "InvalidSecretException";
|
|
71
|
+
readonly $fault: "client";
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<InvalidSecretException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
export declare class SecretsErrorException extends __BaseException {
|
|
77
|
+
readonly name: "SecretsErrorException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
constructor(
|
|
80
|
+
opts: __ExceptionOptionType<SecretsErrorException, __BaseException>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
38
83
|
export declare class ServiceUnavailableError extends __BaseException {
|
|
39
84
|
readonly name: "ServiceUnavailableError";
|
|
40
85
|
readonly $fault: "server";
|
|
@@ -50,6 +95,13 @@ export declare class StatementTimeoutException extends __BaseException {
|
|
|
50
95
|
opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
|
|
51
96
|
);
|
|
52
97
|
}
|
|
98
|
+
export declare class TransactionNotFoundException extends __BaseException {
|
|
99
|
+
readonly name: "TransactionNotFoundException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
constructor(
|
|
102
|
+
opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
53
105
|
export interface BeginTransactionRequest {
|
|
54
106
|
resourceArn: string | undefined;
|
|
55
107
|
secretArn: string | undefined;
|
|
@@ -121,6 +173,13 @@ export interface ResultSetOptions {
|
|
|
121
173
|
decimalReturnType?: DecimalReturnType;
|
|
122
174
|
longReturnType?: LongReturnType;
|
|
123
175
|
}
|
|
176
|
+
export declare class UnsupportedResultException extends __BaseException {
|
|
177
|
+
readonly name: "UnsupportedResultException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
constructor(
|
|
180
|
+
opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>
|
|
181
|
+
);
|
|
182
|
+
}
|
|
124
183
|
export interface RollbackTransactionRequest {
|
|
125
184
|
resourceArn: string | undefined;
|
|
126
185
|
secretArn: string | undefined;
|
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.479.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",
|