@aws-sdk/client-rds-data 3.934.0 → 3.935.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-cjs/index.js CHANGED
@@ -141,14 +141,6 @@ let BadRequestException$1 = class BadRequestException extends RDSDataServiceExce
141
141
  Object.setPrototypeOf(this, BadRequestException.prototype);
142
142
  }
143
143
  };
144
- const TypeHint = {
145
- DATE: "DATE",
146
- DECIMAL: "DECIMAL",
147
- JSON: "JSON",
148
- TIME: "TIME",
149
- TIMESTAMP: "TIMESTAMP",
150
- UUID: "UUID",
151
- };
152
144
  let DatabaseErrorException$1 = class DatabaseErrorException extends RDSDataServiceException$1 {
153
145
  name = "DatabaseErrorException";
154
146
  $fault = "client";
@@ -319,18 +311,6 @@ let NotFoundException$1 = class NotFoundException extends RDSDataServiceExceptio
319
311
  Object.setPrototypeOf(this, NotFoundException.prototype);
320
312
  }
321
313
  };
322
- const DecimalReturnType = {
323
- DOUBLE_OR_LONG: "DOUBLE_OR_LONG",
324
- STRING: "STRING",
325
- };
326
- const RecordsFormatType = {
327
- JSON: "JSON",
328
- NONE: "NONE",
329
- };
330
- const LongReturnType = {
331
- LONG: "LONG",
332
- STRING: "STRING",
333
- };
334
314
  let UnsupportedResultException$1 = class UnsupportedResultException extends RDSDataServiceException$1 {
335
315
  name = "UnsupportedResultException";
336
316
  $fault = "client";
@@ -926,7 +906,6 @@ exports.DatabaseErrorException = DatabaseErrorException$1;
926
906
  exports.DatabaseNotFoundException = DatabaseNotFoundException$1;
927
907
  exports.DatabaseResumingException = DatabaseResumingException$1;
928
908
  exports.DatabaseUnavailableException = DatabaseUnavailableException$1;
929
- exports.DecimalReturnType = DecimalReturnType;
930
909
  exports.ExecuteSqlCommand = ExecuteSqlCommand;
931
910
  exports.ExecuteStatementCommand = ExecuteStatementCommand;
932
911
  exports.ForbiddenException = ForbiddenException$1;
@@ -934,16 +913,13 @@ exports.HttpEndpointNotEnabledException = HttpEndpointNotEnabledException$1;
934
913
  exports.InternalServerErrorException = InternalServerErrorException$1;
935
914
  exports.InvalidResourceStateException = InvalidResourceStateException$1;
936
915
  exports.InvalidSecretException = InvalidSecretException$1;
937
- exports.LongReturnType = LongReturnType;
938
916
  exports.NotFoundException = NotFoundException$1;
939
917
  exports.RDSData = RDSData;
940
918
  exports.RDSDataClient = RDSDataClient;
941
919
  exports.RDSDataServiceException = RDSDataServiceException$1;
942
- exports.RecordsFormatType = RecordsFormatType;
943
920
  exports.RollbackTransactionCommand = RollbackTransactionCommand;
944
921
  exports.SecretsErrorException = SecretsErrorException$1;
945
922
  exports.ServiceUnavailableError = ServiceUnavailableError$1;
946
923
  exports.StatementTimeoutException = StatementTimeoutException$1;
947
924
  exports.TransactionNotFoundException = TransactionNotFoundException$1;
948
- exports.TypeHint = TypeHint;
949
925
  exports.UnsupportedResultException = UnsupportedResultException$1;
package/dist-es/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from "./RDSDataClient";
2
2
  export * from "./RDSData";
3
3
  export * from "./commands";
4
- export * from "./models";
4
+ export * from "./models/errors";
5
5
  export { RDSDataServiceException } from "./models/RDSDataServiceException";
@@ -0,0 +1,207 @@
1
+ import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export class BadRequestException extends __BaseException {
15
+ name = "BadRequestException";
16
+ $fault = "client";
17
+ constructor(opts) {
18
+ super({
19
+ name: "BadRequestException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, BadRequestException.prototype);
24
+ }
25
+ }
26
+ export class DatabaseErrorException extends __BaseException {
27
+ name = "DatabaseErrorException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "DatabaseErrorException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, DatabaseErrorException.prototype);
36
+ }
37
+ }
38
+ export class DatabaseNotFoundException extends __BaseException {
39
+ name = "DatabaseNotFoundException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "DatabaseNotFoundException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, DatabaseNotFoundException.prototype);
48
+ }
49
+ }
50
+ export class DatabaseResumingException extends __BaseException {
51
+ name = "DatabaseResumingException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "DatabaseResumingException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, DatabaseResumingException.prototype);
60
+ }
61
+ }
62
+ export class DatabaseUnavailableException extends __BaseException {
63
+ name = "DatabaseUnavailableException";
64
+ $fault = "server";
65
+ constructor(opts) {
66
+ super({
67
+ name: "DatabaseUnavailableException",
68
+ $fault: "server",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, DatabaseUnavailableException.prototype);
72
+ }
73
+ }
74
+ export class ForbiddenException extends __BaseException {
75
+ name = "ForbiddenException";
76
+ $fault = "client";
77
+ constructor(opts) {
78
+ super({
79
+ name: "ForbiddenException",
80
+ $fault: "client",
81
+ ...opts,
82
+ });
83
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
84
+ }
85
+ }
86
+ export class HttpEndpointNotEnabledException extends __BaseException {
87
+ name = "HttpEndpointNotEnabledException";
88
+ $fault = "client";
89
+ constructor(opts) {
90
+ super({
91
+ name: "HttpEndpointNotEnabledException",
92
+ $fault: "client",
93
+ ...opts,
94
+ });
95
+ Object.setPrototypeOf(this, HttpEndpointNotEnabledException.prototype);
96
+ }
97
+ }
98
+ export class InternalServerErrorException extends __BaseException {
99
+ name = "InternalServerErrorException";
100
+ $fault = "server";
101
+ constructor(opts) {
102
+ super({
103
+ name: "InternalServerErrorException",
104
+ $fault: "server",
105
+ ...opts,
106
+ });
107
+ Object.setPrototypeOf(this, InternalServerErrorException.prototype);
108
+ }
109
+ }
110
+ export class InvalidResourceStateException extends __BaseException {
111
+ name = "InvalidResourceStateException";
112
+ $fault = "client";
113
+ constructor(opts) {
114
+ super({
115
+ name: "InvalidResourceStateException",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
120
+ }
121
+ }
122
+ export class InvalidSecretException extends __BaseException {
123
+ name = "InvalidSecretException";
124
+ $fault = "client";
125
+ constructor(opts) {
126
+ super({
127
+ name: "InvalidSecretException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ Object.setPrototypeOf(this, InvalidSecretException.prototype);
132
+ }
133
+ }
134
+ export class SecretsErrorException extends __BaseException {
135
+ name = "SecretsErrorException";
136
+ $fault = "client";
137
+ constructor(opts) {
138
+ super({
139
+ name: "SecretsErrorException",
140
+ $fault: "client",
141
+ ...opts,
142
+ });
143
+ Object.setPrototypeOf(this, SecretsErrorException.prototype);
144
+ }
145
+ }
146
+ export class ServiceUnavailableError extends __BaseException {
147
+ name = "ServiceUnavailableError";
148
+ $fault = "server";
149
+ constructor(opts) {
150
+ super({
151
+ name: "ServiceUnavailableError",
152
+ $fault: "server",
153
+ ...opts,
154
+ });
155
+ Object.setPrototypeOf(this, ServiceUnavailableError.prototype);
156
+ }
157
+ }
158
+ export class StatementTimeoutException extends __BaseException {
159
+ name = "StatementTimeoutException";
160
+ $fault = "client";
161
+ dbConnectionId;
162
+ constructor(opts) {
163
+ super({
164
+ name: "StatementTimeoutException",
165
+ $fault: "client",
166
+ ...opts,
167
+ });
168
+ Object.setPrototypeOf(this, StatementTimeoutException.prototype);
169
+ this.dbConnectionId = opts.dbConnectionId;
170
+ }
171
+ }
172
+ export class TransactionNotFoundException extends __BaseException {
173
+ name = "TransactionNotFoundException";
174
+ $fault = "client";
175
+ constructor(opts) {
176
+ super({
177
+ name: "TransactionNotFoundException",
178
+ $fault: "client",
179
+ ...opts,
180
+ });
181
+ Object.setPrototypeOf(this, TransactionNotFoundException.prototype);
182
+ }
183
+ }
184
+ export class NotFoundException extends __BaseException {
185
+ name = "NotFoundException";
186
+ $fault = "client";
187
+ constructor(opts) {
188
+ super({
189
+ name: "NotFoundException",
190
+ $fault: "client",
191
+ ...opts,
192
+ });
193
+ Object.setPrototypeOf(this, NotFoundException.prototype);
194
+ }
195
+ }
196
+ export class UnsupportedResultException extends __BaseException {
197
+ name = "UnsupportedResultException";
198
+ $fault = "client";
199
+ constructor(opts) {
200
+ super({
201
+ name: "UnsupportedResultException",
202
+ $fault: "client",
203
+ ...opts,
204
+ });
205
+ Object.setPrototypeOf(this, UnsupportedResultException.prototype);
206
+ }
207
+ }
@@ -1,28 +1,3 @@
1
- import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- constructor(opts) {
6
- super({
7
- name: "AccessDeniedException",
8
- $fault: "client",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
- }
13
- }
14
- export class BadRequestException extends __BaseException {
15
- name = "BadRequestException";
16
- $fault = "client";
17
- constructor(opts) {
18
- super({
19
- name: "BadRequestException",
20
- $fault: "client",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, BadRequestException.prototype);
24
- }
25
- }
26
1
  export const TypeHint = {
27
2
  DATE: "DATE",
28
3
  DECIMAL: "DECIMAL",
@@ -31,176 +6,6 @@ export const TypeHint = {
31
6
  TIMESTAMP: "TIMESTAMP",
32
7
  UUID: "UUID",
33
8
  };
34
- export class DatabaseErrorException extends __BaseException {
35
- name = "DatabaseErrorException";
36
- $fault = "client";
37
- constructor(opts) {
38
- super({
39
- name: "DatabaseErrorException",
40
- $fault: "client",
41
- ...opts,
42
- });
43
- Object.setPrototypeOf(this, DatabaseErrorException.prototype);
44
- }
45
- }
46
- export class DatabaseNotFoundException extends __BaseException {
47
- name = "DatabaseNotFoundException";
48
- $fault = "client";
49
- constructor(opts) {
50
- super({
51
- name: "DatabaseNotFoundException",
52
- $fault: "client",
53
- ...opts,
54
- });
55
- Object.setPrototypeOf(this, DatabaseNotFoundException.prototype);
56
- }
57
- }
58
- export class DatabaseResumingException extends __BaseException {
59
- name = "DatabaseResumingException";
60
- $fault = "client";
61
- constructor(opts) {
62
- super({
63
- name: "DatabaseResumingException",
64
- $fault: "client",
65
- ...opts,
66
- });
67
- Object.setPrototypeOf(this, DatabaseResumingException.prototype);
68
- }
69
- }
70
- export class DatabaseUnavailableException extends __BaseException {
71
- name = "DatabaseUnavailableException";
72
- $fault = "server";
73
- constructor(opts) {
74
- super({
75
- name: "DatabaseUnavailableException",
76
- $fault: "server",
77
- ...opts,
78
- });
79
- Object.setPrototypeOf(this, DatabaseUnavailableException.prototype);
80
- }
81
- }
82
- export class ForbiddenException extends __BaseException {
83
- name = "ForbiddenException";
84
- $fault = "client";
85
- constructor(opts) {
86
- super({
87
- name: "ForbiddenException",
88
- $fault: "client",
89
- ...opts,
90
- });
91
- Object.setPrototypeOf(this, ForbiddenException.prototype);
92
- }
93
- }
94
- export class HttpEndpointNotEnabledException extends __BaseException {
95
- name = "HttpEndpointNotEnabledException";
96
- $fault = "client";
97
- constructor(opts) {
98
- super({
99
- name: "HttpEndpointNotEnabledException",
100
- $fault: "client",
101
- ...opts,
102
- });
103
- Object.setPrototypeOf(this, HttpEndpointNotEnabledException.prototype);
104
- }
105
- }
106
- export class InternalServerErrorException extends __BaseException {
107
- name = "InternalServerErrorException";
108
- $fault = "server";
109
- constructor(opts) {
110
- super({
111
- name: "InternalServerErrorException",
112
- $fault: "server",
113
- ...opts,
114
- });
115
- Object.setPrototypeOf(this, InternalServerErrorException.prototype);
116
- }
117
- }
118
- export class InvalidResourceStateException extends __BaseException {
119
- name = "InvalidResourceStateException";
120
- $fault = "client";
121
- constructor(opts) {
122
- super({
123
- name: "InvalidResourceStateException",
124
- $fault: "client",
125
- ...opts,
126
- });
127
- Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
128
- }
129
- }
130
- export class InvalidSecretException extends __BaseException {
131
- name = "InvalidSecretException";
132
- $fault = "client";
133
- constructor(opts) {
134
- super({
135
- name: "InvalidSecretException",
136
- $fault: "client",
137
- ...opts,
138
- });
139
- Object.setPrototypeOf(this, InvalidSecretException.prototype);
140
- }
141
- }
142
- export class SecretsErrorException extends __BaseException {
143
- name = "SecretsErrorException";
144
- $fault = "client";
145
- constructor(opts) {
146
- super({
147
- name: "SecretsErrorException",
148
- $fault: "client",
149
- ...opts,
150
- });
151
- Object.setPrototypeOf(this, SecretsErrorException.prototype);
152
- }
153
- }
154
- export class ServiceUnavailableError extends __BaseException {
155
- name = "ServiceUnavailableError";
156
- $fault = "server";
157
- constructor(opts) {
158
- super({
159
- name: "ServiceUnavailableError",
160
- $fault: "server",
161
- ...opts,
162
- });
163
- Object.setPrototypeOf(this, ServiceUnavailableError.prototype);
164
- }
165
- }
166
- export class StatementTimeoutException extends __BaseException {
167
- name = "StatementTimeoutException";
168
- $fault = "client";
169
- dbConnectionId;
170
- constructor(opts) {
171
- super({
172
- name: "StatementTimeoutException",
173
- $fault: "client",
174
- ...opts,
175
- });
176
- Object.setPrototypeOf(this, StatementTimeoutException.prototype);
177
- this.dbConnectionId = opts.dbConnectionId;
178
- }
179
- }
180
- export class TransactionNotFoundException extends __BaseException {
181
- name = "TransactionNotFoundException";
182
- $fault = "client";
183
- constructor(opts) {
184
- super({
185
- name: "TransactionNotFoundException",
186
- $fault: "client",
187
- ...opts,
188
- });
189
- Object.setPrototypeOf(this, TransactionNotFoundException.prototype);
190
- }
191
- }
192
- export class NotFoundException extends __BaseException {
193
- name = "NotFoundException";
194
- $fault = "client";
195
- constructor(opts) {
196
- super({
197
- name: "NotFoundException",
198
- $fault: "client",
199
- ...opts,
200
- });
201
- Object.setPrototypeOf(this, NotFoundException.prototype);
202
- }
203
- }
204
9
  export const DecimalReturnType = {
205
10
  DOUBLE_OR_LONG: "DOUBLE_OR_LONG",
206
11
  STRING: "STRING",
@@ -213,15 +18,3 @@ export const LongReturnType = {
213
18
  LONG: "LONG",
214
19
  STRING: "STRING",
215
20
  };
216
- export class UnsupportedResultException extends __BaseException {
217
- name = "UnsupportedResultException";
218
- $fault = "client";
219
- constructor(opts) {
220
- super({
221
- name: "UnsupportedResultException",
222
- $fault: "client",
223
- ...opts,
224
- });
225
- Object.setPrototypeOf(this, UnsupportedResultException.prototype);
226
- }
227
- }
@@ -129,7 +129,7 @@ const _v = "values";
129
129
  const _va = "value";
130
130
  const n0 = "com.amazonaws.rdsdata";
131
131
  import { TypeRegistry } from "@smithy/core/schema";
132
- import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, DatabaseErrorException as __DatabaseErrorException, DatabaseNotFoundException as __DatabaseNotFoundException, DatabaseResumingException as __DatabaseResumingException, DatabaseUnavailableException as __DatabaseUnavailableException, ForbiddenException as __ForbiddenException, HttpEndpointNotEnabledException as __HttpEndpointNotEnabledException, InternalServerErrorException as __InternalServerErrorException, InvalidResourceStateException as __InvalidResourceStateException, InvalidSecretException as __InvalidSecretException, NotFoundException as __NotFoundException, SecretsErrorException as __SecretsErrorException, ServiceUnavailableError as __ServiceUnavailableError, StatementTimeoutException as __StatementTimeoutException, TransactionNotFoundException as __TransactionNotFoundException, UnsupportedResultException as __UnsupportedResultException, } from "../models/index";
132
+ import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, DatabaseErrorException as __DatabaseErrorException, DatabaseNotFoundException as __DatabaseNotFoundException, DatabaseResumingException as __DatabaseResumingException, DatabaseUnavailableException as __DatabaseUnavailableException, ForbiddenException as __ForbiddenException, HttpEndpointNotEnabledException as __HttpEndpointNotEnabledException, InternalServerErrorException as __InternalServerErrorException, InvalidResourceStateException as __InvalidResourceStateException, InvalidSecretException as __InvalidSecretException, NotFoundException as __NotFoundException, SecretsErrorException as __SecretsErrorException, ServiceUnavailableError as __ServiceUnavailableError, StatementTimeoutException as __StatementTimeoutException, TransactionNotFoundException as __TransactionNotFoundException, UnsupportedResultException as __UnsupportedResultException, } from "../models/errors";
133
133
  import { RDSDataServiceException as __RDSDataServiceException } from "../models/RDSDataServiceException";
134
134
  export var AccessDeniedException = [
135
135
  -3,
@@ -23,5 +23,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
23
23
  export type { RuntimeExtension } from "./runtimeExtensions";
24
24
  export type { RDSDataExtensionConfiguration } from "./extensionConfiguration";
25
25
  export * from "./commands";
26
- export * from "./models";
26
+ export * from "./models/errors";
27
+ export type * from "./models/models_0";
27
28
  export { RDSDataServiceException } from "./models/RDSDataServiceException";
@@ -0,0 +1,236 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
3
+ /**
4
+ * <p>You don't have sufficient access to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>There is an error in the call or in a SQL statement. (This error only appears in calls from Aurora Serverless v1 databases.)</p>
17
+ * @public
18
+ */
19
+ export declare class BadRequestException extends __BaseException {
20
+ readonly name: "BadRequestException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>There was an error in processing the SQL statement.</p>
29
+ * @public
30
+ */
31
+ export declare class DatabaseErrorException extends __BaseException {
32
+ readonly name: "DatabaseErrorException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<DatabaseErrorException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>The DB cluster doesn't have a DB instance.</p>
41
+ * @public
42
+ */
43
+ export declare class DatabaseNotFoundException extends __BaseException {
44
+ readonly name: "DatabaseNotFoundException";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<DatabaseNotFoundException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>A request was cancelled because the Aurora Serverless v2 DB instance was paused.
53
+ * The Data API request automatically resumes the DB instance. Wait a few seconds and
54
+ * try again.</p>
55
+ * @public
56
+ */
57
+ export declare class DatabaseResumingException extends __BaseException {
58
+ readonly name: "DatabaseResumingException";
59
+ readonly $fault: "client";
60
+ /**
61
+ * @internal
62
+ */
63
+ constructor(opts: __ExceptionOptionType<DatabaseResumingException, __BaseException>);
64
+ }
65
+ /**
66
+ * <p>The writer instance in the DB cluster isn't available.</p>
67
+ * @public
68
+ */
69
+ export declare class DatabaseUnavailableException extends __BaseException {
70
+ readonly name: "DatabaseUnavailableException";
71
+ readonly $fault: "server";
72
+ /**
73
+ * @internal
74
+ */
75
+ constructor(opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>);
76
+ }
77
+ /**
78
+ * <p>There are insufficient privileges to make the call.</p>
79
+ * @public
80
+ */
81
+ export declare class ForbiddenException extends __BaseException {
82
+ readonly name: "ForbiddenException";
83
+ readonly $fault: "client";
84
+ /**
85
+ * @internal
86
+ */
87
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
88
+ }
89
+ /**
90
+ * <p>The HTTP endpoint for using RDS Data API isn't enabled for the DB cluster.</p>
91
+ * @public
92
+ */
93
+ export declare class HttpEndpointNotEnabledException extends __BaseException {
94
+ readonly name: "HttpEndpointNotEnabledException";
95
+ readonly $fault: "client";
96
+ /**
97
+ * @internal
98
+ */
99
+ constructor(opts: __ExceptionOptionType<HttpEndpointNotEnabledException, __BaseException>);
100
+ }
101
+ /**
102
+ * <p>An internal error occurred.</p>
103
+ * @public
104
+ */
105
+ export declare class InternalServerErrorException extends __BaseException {
106
+ readonly name: "InternalServerErrorException";
107
+ readonly $fault: "server";
108
+ /**
109
+ * @internal
110
+ */
111
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
112
+ }
113
+ /**
114
+ * <p>The resource is in an invalid state.</p>
115
+ * @public
116
+ */
117
+ export declare class InvalidResourceStateException extends __BaseException {
118
+ readonly name: "InvalidResourceStateException";
119
+ readonly $fault: "client";
120
+ /**
121
+ * @internal
122
+ */
123
+ constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
124
+ }
125
+ /**
126
+ * <p>The Secrets Manager secret used with the request isn't valid.</p>
127
+ * @public
128
+ */
129
+ export declare class InvalidSecretException extends __BaseException {
130
+ readonly name: "InvalidSecretException";
131
+ readonly $fault: "client";
132
+ /**
133
+ * @internal
134
+ */
135
+ constructor(opts: __ExceptionOptionType<InvalidSecretException, __BaseException>);
136
+ }
137
+ /**
138
+ * <p>There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:</p>
139
+ * <ul>
140
+ * <li>
141
+ * <p>RDS Data API timed out retrieving the secret.</p>
142
+ * </li>
143
+ * <li>
144
+ * <p>The secret provided wasn't found.</p>
145
+ * </li>
146
+ * <li>
147
+ * <p>The secret couldn't be decrypted.</p>
148
+ * </li>
149
+ * </ul>
150
+ * @public
151
+ */
152
+ export declare class SecretsErrorException extends __BaseException {
153
+ readonly name: "SecretsErrorException";
154
+ readonly $fault: "client";
155
+ /**
156
+ * @internal
157
+ */
158
+ constructor(opts: __ExceptionOptionType<SecretsErrorException, __BaseException>);
159
+ }
160
+ /**
161
+ * <p>The service specified by the <code>resourceArn</code> parameter isn't
162
+ * available.</p>
163
+ * @public
164
+ */
165
+ export declare class ServiceUnavailableError extends __BaseException {
166
+ readonly name: "ServiceUnavailableError";
167
+ readonly $fault: "server";
168
+ /**
169
+ * @internal
170
+ */
171
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>);
172
+ }
173
+ /**
174
+ * <p>The execution of the SQL statement timed out.</p>
175
+ * @public
176
+ */
177
+ export declare class StatementTimeoutException extends __BaseException {
178
+ readonly name: "StatementTimeoutException";
179
+ readonly $fault: "client";
180
+ /**
181
+ * <p>The database connection ID that executed the SQL statement.</p>
182
+ * @public
183
+ */
184
+ dbConnectionId?: number | undefined;
185
+ /**
186
+ * @internal
187
+ */
188
+ constructor(opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>);
189
+ }
190
+ /**
191
+ * <p>The transaction ID wasn't found.</p>
192
+ * @public
193
+ */
194
+ export declare class TransactionNotFoundException extends __BaseException {
195
+ readonly name: "TransactionNotFoundException";
196
+ readonly $fault: "client";
197
+ /**
198
+ * @internal
199
+ */
200
+ constructor(opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>);
201
+ }
202
+ /**
203
+ * <p>The <code>resourceArn</code>, <code>secretArn</code>, or <code>transactionId</code> value can't be found.</p>
204
+ * @public
205
+ */
206
+ export declare class NotFoundException extends __BaseException {
207
+ readonly name: "NotFoundException";
208
+ readonly $fault: "client";
209
+ /**
210
+ * @internal
211
+ */
212
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
213
+ }
214
+ /**
215
+ * <p>There was a problem with the result because of one of the following conditions:</p>
216
+ * <ul>
217
+ * <li>
218
+ * <p>It contained an unsupported data type.</p>
219
+ * </li>
220
+ * <li>
221
+ * <p>It contained a multidimensional array.</p>
222
+ * </li>
223
+ * <li>
224
+ * <p>The size was too large.</p>
225
+ * </li>
226
+ * </ul>
227
+ * @public
228
+ */
229
+ export declare class UnsupportedResultException extends __BaseException {
230
+ readonly name: "UnsupportedResultException";
231
+ readonly $fault: "client";
232
+ /**
233
+ * @internal
234
+ */
235
+ constructor(opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>);
236
+ }
@@ -1,29 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
3
- /**
4
- * <p>You don't have sufficient access to perform this action.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
- }
15
- /**
16
- * <p>There is an error in the call or in a SQL statement. (This error only appears in calls from Aurora Serverless v1 databases.)</p>
17
- * @public
18
- */
19
- export declare class BadRequestException extends __BaseException {
20
- readonly name: "BadRequestException";
21
- readonly $fault: "client";
22
- /**
23
- * @internal
24
- */
25
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
26
- }
27
1
  /**
28
2
  * @public
29
3
  * @enum
@@ -40,181 +14,6 @@ export declare const TypeHint: {
40
14
  * @public
41
15
  */
42
16
  export type TypeHint = (typeof TypeHint)[keyof typeof TypeHint];
43
- /**
44
- * <p>There was an error in processing the SQL statement.</p>
45
- * @public
46
- */
47
- export declare class DatabaseErrorException extends __BaseException {
48
- readonly name: "DatabaseErrorException";
49
- readonly $fault: "client";
50
- /**
51
- * @internal
52
- */
53
- constructor(opts: __ExceptionOptionType<DatabaseErrorException, __BaseException>);
54
- }
55
- /**
56
- * <p>The DB cluster doesn't have a DB instance.</p>
57
- * @public
58
- */
59
- export declare class DatabaseNotFoundException extends __BaseException {
60
- readonly name: "DatabaseNotFoundException";
61
- readonly $fault: "client";
62
- /**
63
- * @internal
64
- */
65
- constructor(opts: __ExceptionOptionType<DatabaseNotFoundException, __BaseException>);
66
- }
67
- /**
68
- * <p>A request was cancelled because the Aurora Serverless v2 DB instance was paused.
69
- * The Data API request automatically resumes the DB instance. Wait a few seconds and
70
- * try again.</p>
71
- * @public
72
- */
73
- export declare class DatabaseResumingException extends __BaseException {
74
- readonly name: "DatabaseResumingException";
75
- readonly $fault: "client";
76
- /**
77
- * @internal
78
- */
79
- constructor(opts: __ExceptionOptionType<DatabaseResumingException, __BaseException>);
80
- }
81
- /**
82
- * <p>The writer instance in the DB cluster isn't available.</p>
83
- * @public
84
- */
85
- export declare class DatabaseUnavailableException extends __BaseException {
86
- readonly name: "DatabaseUnavailableException";
87
- readonly $fault: "server";
88
- /**
89
- * @internal
90
- */
91
- constructor(opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>);
92
- }
93
- /**
94
- * <p>There are insufficient privileges to make the call.</p>
95
- * @public
96
- */
97
- export declare class ForbiddenException extends __BaseException {
98
- readonly name: "ForbiddenException";
99
- readonly $fault: "client";
100
- /**
101
- * @internal
102
- */
103
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
104
- }
105
- /**
106
- * <p>The HTTP endpoint for using RDS Data API isn't enabled for the DB cluster.</p>
107
- * @public
108
- */
109
- export declare class HttpEndpointNotEnabledException extends __BaseException {
110
- readonly name: "HttpEndpointNotEnabledException";
111
- readonly $fault: "client";
112
- /**
113
- * @internal
114
- */
115
- constructor(opts: __ExceptionOptionType<HttpEndpointNotEnabledException, __BaseException>);
116
- }
117
- /**
118
- * <p>An internal error occurred.</p>
119
- * @public
120
- */
121
- export declare class InternalServerErrorException extends __BaseException {
122
- readonly name: "InternalServerErrorException";
123
- readonly $fault: "server";
124
- /**
125
- * @internal
126
- */
127
- constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
128
- }
129
- /**
130
- * <p>The resource is in an invalid state.</p>
131
- * @public
132
- */
133
- export declare class InvalidResourceStateException extends __BaseException {
134
- readonly name: "InvalidResourceStateException";
135
- readonly $fault: "client";
136
- /**
137
- * @internal
138
- */
139
- constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
140
- }
141
- /**
142
- * <p>The Secrets Manager secret used with the request isn't valid.</p>
143
- * @public
144
- */
145
- export declare class InvalidSecretException extends __BaseException {
146
- readonly name: "InvalidSecretException";
147
- readonly $fault: "client";
148
- /**
149
- * @internal
150
- */
151
- constructor(opts: __ExceptionOptionType<InvalidSecretException, __BaseException>);
152
- }
153
- /**
154
- * <p>There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:</p>
155
- * <ul>
156
- * <li>
157
- * <p>RDS Data API timed out retrieving the secret.</p>
158
- * </li>
159
- * <li>
160
- * <p>The secret provided wasn't found.</p>
161
- * </li>
162
- * <li>
163
- * <p>The secret couldn't be decrypted.</p>
164
- * </li>
165
- * </ul>
166
- * @public
167
- */
168
- export declare class SecretsErrorException extends __BaseException {
169
- readonly name: "SecretsErrorException";
170
- readonly $fault: "client";
171
- /**
172
- * @internal
173
- */
174
- constructor(opts: __ExceptionOptionType<SecretsErrorException, __BaseException>);
175
- }
176
- /**
177
- * <p>The service specified by the <code>resourceArn</code> parameter isn't
178
- * available.</p>
179
- * @public
180
- */
181
- export declare class ServiceUnavailableError extends __BaseException {
182
- readonly name: "ServiceUnavailableError";
183
- readonly $fault: "server";
184
- /**
185
- * @internal
186
- */
187
- constructor(opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>);
188
- }
189
- /**
190
- * <p>The execution of the SQL statement timed out.</p>
191
- * @public
192
- */
193
- export declare class StatementTimeoutException extends __BaseException {
194
- readonly name: "StatementTimeoutException";
195
- readonly $fault: "client";
196
- /**
197
- * <p>The database connection ID that executed the SQL statement.</p>
198
- * @public
199
- */
200
- dbConnectionId?: number | undefined;
201
- /**
202
- * @internal
203
- */
204
- constructor(opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>);
205
- }
206
- /**
207
- * <p>The transaction ID wasn't found.</p>
208
- * @public
209
- */
210
- export declare class TransactionNotFoundException extends __BaseException {
211
- readonly name: "TransactionNotFoundException";
212
- readonly $fault: "client";
213
- /**
214
- * @internal
215
- */
216
- constructor(opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>);
217
- }
218
17
  /**
219
18
  * <p>The request parameters represent the input of a request to start a SQL
220
19
  * transaction.</p>
@@ -362,18 +161,6 @@ export interface CommitTransactionResponse {
362
161
  */
363
162
  transactionStatus?: string | undefined;
364
163
  }
365
- /**
366
- * <p>The <code>resourceArn</code>, <code>secretArn</code>, or <code>transactionId</code> value can't be found.</p>
367
- * @public
368
- */
369
- export declare class NotFoundException extends __BaseException {
370
- readonly name: "NotFoundException";
371
- readonly $fault: "client";
372
- /**
373
- * @internal
374
- */
375
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
376
- }
377
164
  /**
378
165
  * @public
379
166
  * @enum
@@ -491,29 +278,6 @@ export interface ResultSetOptions {
491
278
  */
492
279
  longReturnType?: LongReturnType | undefined;
493
280
  }
494
- /**
495
- * <p>There was a problem with the result because of one of the following conditions:</p>
496
- * <ul>
497
- * <li>
498
- * <p>It contained an unsupported data type.</p>
499
- * </li>
500
- * <li>
501
- * <p>It contained a multidimensional array.</p>
502
- * </li>
503
- * <li>
504
- * <p>The size was too large.</p>
505
- * </li>
506
- * </ul>
507
- * @public
508
- */
509
- export declare class UnsupportedResultException extends __BaseException {
510
- readonly name: "UnsupportedResultException";
511
- readonly $fault: "client";
512
- /**
513
- * @internal
514
- */
515
- constructor(opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>);
516
- }
517
281
  /**
518
282
  * <p>The request parameters represent the input of a request to perform a rollback of a
519
283
  * transaction.</p>
@@ -4,5 +4,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { RDSDataExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
- export * from "./models";
7
+ export * from "./models/errors";
8
+ export * from "./models/models_0";
8
9
  export { RDSDataServiceException } from "./models/RDSDataServiceException";
@@ -0,0 +1,121 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class BadRequestException extends __BaseException {
11
+ readonly name: "BadRequestException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
15
+ );
16
+ }
17
+ export declare class DatabaseErrorException extends __BaseException {
18
+ readonly name: "DatabaseErrorException";
19
+ readonly $fault: "client";
20
+ constructor(
21
+ opts: __ExceptionOptionType<DatabaseErrorException, __BaseException>
22
+ );
23
+ }
24
+ export declare class DatabaseNotFoundException extends __BaseException {
25
+ readonly name: "DatabaseNotFoundException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<DatabaseNotFoundException, __BaseException>
29
+ );
30
+ }
31
+ export declare class DatabaseResumingException extends __BaseException {
32
+ readonly name: "DatabaseResumingException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<DatabaseResumingException, __BaseException>
36
+ );
37
+ }
38
+ export declare class DatabaseUnavailableException extends __BaseException {
39
+ readonly name: "DatabaseUnavailableException";
40
+ readonly $fault: "server";
41
+ constructor(
42
+ opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>
43
+ );
44
+ }
45
+ export declare class ForbiddenException extends __BaseException {
46
+ readonly name: "ForbiddenException";
47
+ readonly $fault: "client";
48
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
49
+ }
50
+ export declare class HttpEndpointNotEnabledException extends __BaseException {
51
+ readonly name: "HttpEndpointNotEnabledException";
52
+ readonly $fault: "client";
53
+ constructor(
54
+ opts: __ExceptionOptionType<
55
+ HttpEndpointNotEnabledException,
56
+ __BaseException
57
+ >
58
+ );
59
+ }
60
+ export declare class InternalServerErrorException extends __BaseException {
61
+ readonly name: "InternalServerErrorException";
62
+ readonly $fault: "server";
63
+ constructor(
64
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
65
+ );
66
+ }
67
+ export declare class InvalidResourceStateException extends __BaseException {
68
+ readonly name: "InvalidResourceStateException";
69
+ readonly $fault: "client";
70
+ constructor(
71
+ opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
72
+ );
73
+ }
74
+ export declare class InvalidSecretException extends __BaseException {
75
+ readonly name: "InvalidSecretException";
76
+ readonly $fault: "client";
77
+ constructor(
78
+ opts: __ExceptionOptionType<InvalidSecretException, __BaseException>
79
+ );
80
+ }
81
+ export declare class SecretsErrorException extends __BaseException {
82
+ readonly name: "SecretsErrorException";
83
+ readonly $fault: "client";
84
+ constructor(
85
+ opts: __ExceptionOptionType<SecretsErrorException, __BaseException>
86
+ );
87
+ }
88
+ export declare class ServiceUnavailableError extends __BaseException {
89
+ readonly name: "ServiceUnavailableError";
90
+ readonly $fault: "server";
91
+ constructor(
92
+ opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>
93
+ );
94
+ }
95
+ export declare class StatementTimeoutException extends __BaseException {
96
+ readonly name: "StatementTimeoutException";
97
+ readonly $fault: "client";
98
+ dbConnectionId?: number | undefined;
99
+ constructor(
100
+ opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
101
+ );
102
+ }
103
+ export declare class TransactionNotFoundException extends __BaseException {
104
+ readonly name: "TransactionNotFoundException";
105
+ readonly $fault: "client";
106
+ constructor(
107
+ opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>
108
+ );
109
+ }
110
+ export declare class NotFoundException extends __BaseException {
111
+ readonly name: "NotFoundException";
112
+ readonly $fault: "client";
113
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
114
+ }
115
+ export declare class UnsupportedResultException extends __BaseException {
116
+ readonly name: "UnsupportedResultException";
117
+ readonly $fault: "client";
118
+ constructor(
119
+ opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>
120
+ );
121
+ }
@@ -1,19 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- constructor(
7
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
- );
9
- }
10
- export declare class BadRequestException extends __BaseException {
11
- readonly name: "BadRequestException";
12
- readonly $fault: "client";
13
- constructor(
14
- opts: __ExceptionOptionType<BadRequestException, __BaseException>
15
- );
16
- }
17
1
  export declare const TypeHint: {
18
2
  readonly DATE: "DATE";
19
3
  readonly DECIMAL: "DECIMAL";
@@ -23,99 +7,6 @@ export declare const TypeHint: {
23
7
  readonly UUID: "UUID";
24
8
  };
25
9
  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 DatabaseResumingException extends __BaseException {
41
- readonly name: "DatabaseResumingException";
42
- readonly $fault: "client";
43
- constructor(
44
- opts: __ExceptionOptionType<DatabaseResumingException, __BaseException>
45
- );
46
- }
47
- export declare class DatabaseUnavailableException extends __BaseException {
48
- readonly name: "DatabaseUnavailableException";
49
- readonly $fault: "server";
50
- constructor(
51
- opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>
52
- );
53
- }
54
- export declare class ForbiddenException extends __BaseException {
55
- readonly name: "ForbiddenException";
56
- readonly $fault: "client";
57
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
58
- }
59
- export declare class HttpEndpointNotEnabledException extends __BaseException {
60
- readonly name: "HttpEndpointNotEnabledException";
61
- readonly $fault: "client";
62
- constructor(
63
- opts: __ExceptionOptionType<
64
- HttpEndpointNotEnabledException,
65
- __BaseException
66
- >
67
- );
68
- }
69
- export declare class InternalServerErrorException extends __BaseException {
70
- readonly name: "InternalServerErrorException";
71
- readonly $fault: "server";
72
- constructor(
73
- opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
74
- );
75
- }
76
- export declare class InvalidResourceStateException extends __BaseException {
77
- readonly name: "InvalidResourceStateException";
78
- readonly $fault: "client";
79
- constructor(
80
- opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
81
- );
82
- }
83
- export declare class InvalidSecretException extends __BaseException {
84
- readonly name: "InvalidSecretException";
85
- readonly $fault: "client";
86
- constructor(
87
- opts: __ExceptionOptionType<InvalidSecretException, __BaseException>
88
- );
89
- }
90
- export declare class SecretsErrorException extends __BaseException {
91
- readonly name: "SecretsErrorException";
92
- readonly $fault: "client";
93
- constructor(
94
- opts: __ExceptionOptionType<SecretsErrorException, __BaseException>
95
- );
96
- }
97
- export declare class ServiceUnavailableError extends __BaseException {
98
- readonly name: "ServiceUnavailableError";
99
- readonly $fault: "server";
100
- constructor(
101
- opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>
102
- );
103
- }
104
- export declare class StatementTimeoutException extends __BaseException {
105
- readonly name: "StatementTimeoutException";
106
- readonly $fault: "client";
107
- dbConnectionId?: number | undefined;
108
- constructor(
109
- opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
110
- );
111
- }
112
- export declare class TransactionNotFoundException extends __BaseException {
113
- readonly name: "TransactionNotFoundException";
114
- readonly $fault: "client";
115
- constructor(
116
- opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>
117
- );
118
- }
119
10
  export interface BeginTransactionRequest {
120
11
  resourceArn: string | undefined;
121
12
  secretArn: string | undefined;
@@ -149,11 +40,6 @@ export interface CommitTransactionRequest {
149
40
  export interface CommitTransactionResponse {
150
41
  transactionStatus?: string | undefined;
151
42
  }
152
- export declare class NotFoundException extends __BaseException {
153
- readonly name: "NotFoundException";
154
- readonly $fault: "client";
155
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
156
- }
157
43
  export declare const DecimalReturnType: {
158
44
  readonly DOUBLE_OR_LONG: "DOUBLE_OR_LONG";
159
45
  readonly STRING: "STRING";
@@ -187,13 +73,6 @@ export interface ResultSetOptions {
187
73
  decimalReturnType?: DecimalReturnType | undefined;
188
74
  longReturnType?: LongReturnType | undefined;
189
75
  }
190
- export declare class UnsupportedResultException extends __BaseException {
191
- readonly name: "UnsupportedResultException";
192
- readonly $fault: "client";
193
- constructor(
194
- opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>
195
- );
196
- }
197
76
  export interface RollbackTransactionRequest {
198
77
  resourceArn: string | undefined;
199
78
  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.934.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rds-data",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";