@aws-sdk/client-redshift-data 3.721.0 → 3.726.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 +155 -88
- package/dist-es/RedshiftDataClient.js +1 -0
- package/dist-es/models/models_0.js +30 -18
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -156,7 +156,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
156
156
|
}, "resolveRuntimeExtensions");
|
|
157
157
|
|
|
158
158
|
// src/RedshiftDataClient.ts
|
|
159
|
-
var
|
|
159
|
+
var RedshiftDataClient = class extends import_smithy_client.Client {
|
|
160
|
+
static {
|
|
161
|
+
__name(this, "RedshiftDataClient");
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* The resolved configuration of RedshiftDataClient class. This is resolved and normalized from the {@link RedshiftDataClientConfig | constructor configuration interface}.
|
|
165
|
+
*/
|
|
166
|
+
config;
|
|
160
167
|
constructor(...[configuration]) {
|
|
161
168
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
162
169
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -166,7 +173,7 @@ var _RedshiftDataClient = class _RedshiftDataClient extends import_smithy_client
|
|
|
166
173
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
167
174
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
168
175
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
169
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
176
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
170
177
|
super(_config_8);
|
|
171
178
|
this.config = _config_8;
|
|
172
179
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -194,8 +201,6 @@ var _RedshiftDataClient = class _RedshiftDataClient extends import_smithy_client
|
|
|
194
201
|
super.destroy();
|
|
195
202
|
}
|
|
196
203
|
};
|
|
197
|
-
__name(_RedshiftDataClient, "RedshiftDataClient");
|
|
198
|
-
var RedshiftDataClient = _RedshiftDataClient;
|
|
199
204
|
|
|
200
205
|
// src/RedshiftData.ts
|
|
201
206
|
|
|
@@ -213,7 +218,10 @@ var import_uuid = require("uuid");
|
|
|
213
218
|
|
|
214
219
|
// src/models/RedshiftDataServiceException.ts
|
|
215
220
|
|
|
216
|
-
var
|
|
221
|
+
var RedshiftDataServiceException = class _RedshiftDataServiceException extends import_smithy_client.ServiceException {
|
|
222
|
+
static {
|
|
223
|
+
__name(this, "RedshiftDataServiceException");
|
|
224
|
+
}
|
|
217
225
|
/**
|
|
218
226
|
* @internal
|
|
219
227
|
*/
|
|
@@ -222,11 +230,15 @@ var _RedshiftDataServiceException = class _RedshiftDataServiceException extends
|
|
|
222
230
|
Object.setPrototypeOf(this, _RedshiftDataServiceException.prototype);
|
|
223
231
|
}
|
|
224
232
|
};
|
|
225
|
-
__name(_RedshiftDataServiceException, "RedshiftDataServiceException");
|
|
226
|
-
var RedshiftDataServiceException = _RedshiftDataServiceException;
|
|
227
233
|
|
|
228
234
|
// src/models/models_0.ts
|
|
229
|
-
var
|
|
235
|
+
var ActiveSessionsExceededException = class _ActiveSessionsExceededException extends RedshiftDataServiceException {
|
|
236
|
+
static {
|
|
237
|
+
__name(this, "ActiveSessionsExceededException");
|
|
238
|
+
}
|
|
239
|
+
name = "ActiveSessionsExceededException";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
Message;
|
|
230
242
|
/**
|
|
231
243
|
* @internal
|
|
232
244
|
*/
|
|
@@ -236,15 +248,17 @@ var _ActiveSessionsExceededException = class _ActiveSessionsExceededException ex
|
|
|
236
248
|
$fault: "client",
|
|
237
249
|
...opts
|
|
238
250
|
});
|
|
239
|
-
this.name = "ActiveSessionsExceededException";
|
|
240
|
-
this.$fault = "client";
|
|
241
251
|
Object.setPrototypeOf(this, _ActiveSessionsExceededException.prototype);
|
|
242
252
|
this.Message = opts.Message;
|
|
243
253
|
}
|
|
244
254
|
};
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
255
|
+
var ActiveStatementsExceededException = class _ActiveStatementsExceededException extends RedshiftDataServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "ActiveStatementsExceededException");
|
|
258
|
+
}
|
|
259
|
+
name = "ActiveStatementsExceededException";
|
|
260
|
+
$fault = "client";
|
|
261
|
+
Message;
|
|
248
262
|
/**
|
|
249
263
|
* @internal
|
|
250
264
|
*/
|
|
@@ -254,15 +268,22 @@ var _ActiveStatementsExceededException = class _ActiveStatementsExceededExceptio
|
|
|
254
268
|
$fault: "client",
|
|
255
269
|
...opts
|
|
256
270
|
});
|
|
257
|
-
this.name = "ActiveStatementsExceededException";
|
|
258
|
-
this.$fault = "client";
|
|
259
271
|
Object.setPrototypeOf(this, _ActiveStatementsExceededException.prototype);
|
|
260
272
|
this.Message = opts.Message;
|
|
261
273
|
}
|
|
262
274
|
};
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
275
|
+
var BatchExecuteStatementException = class _BatchExecuteStatementException extends RedshiftDataServiceException {
|
|
276
|
+
static {
|
|
277
|
+
__name(this, "BatchExecuteStatementException");
|
|
278
|
+
}
|
|
279
|
+
name = "BatchExecuteStatementException";
|
|
280
|
+
$fault = "server";
|
|
281
|
+
Message;
|
|
282
|
+
/**
|
|
283
|
+
* <p>Statement identifier of the exception.</p>
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
StatementId;
|
|
266
287
|
/**
|
|
267
288
|
* @internal
|
|
268
289
|
*/
|
|
@@ -272,20 +293,26 @@ var _BatchExecuteStatementException = class _BatchExecuteStatementException exte
|
|
|
272
293
|
$fault: "server",
|
|
273
294
|
...opts
|
|
274
295
|
});
|
|
275
|
-
this.name = "BatchExecuteStatementException";
|
|
276
|
-
this.$fault = "server";
|
|
277
296
|
Object.setPrototypeOf(this, _BatchExecuteStatementException.prototype);
|
|
278
297
|
this.Message = opts.Message;
|
|
279
298
|
this.StatementId = opts.StatementId;
|
|
280
299
|
}
|
|
281
300
|
};
|
|
282
|
-
__name(_BatchExecuteStatementException, "BatchExecuteStatementException");
|
|
283
|
-
var BatchExecuteStatementException = _BatchExecuteStatementException;
|
|
284
301
|
var ResultFormatString = {
|
|
285
302
|
CSV: "CSV",
|
|
286
303
|
JSON: "JSON"
|
|
287
304
|
};
|
|
288
|
-
var
|
|
305
|
+
var InternalServerException = class _InternalServerException extends RedshiftDataServiceException {
|
|
306
|
+
static {
|
|
307
|
+
__name(this, "InternalServerException");
|
|
308
|
+
}
|
|
309
|
+
name = "InternalServerException";
|
|
310
|
+
$fault = "server";
|
|
311
|
+
/**
|
|
312
|
+
* <p>The exception message.</p>
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
Message;
|
|
289
316
|
/**
|
|
290
317
|
* @internal
|
|
291
318
|
*/
|
|
@@ -295,15 +322,21 @@ var _InternalServerException = class _InternalServerException extends RedshiftDa
|
|
|
295
322
|
$fault: "server",
|
|
296
323
|
...opts
|
|
297
324
|
});
|
|
298
|
-
this.name = "InternalServerException";
|
|
299
|
-
this.$fault = "server";
|
|
300
325
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
301
326
|
this.Message = opts.Message;
|
|
302
327
|
}
|
|
303
328
|
};
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
329
|
+
var ValidationException = class _ValidationException extends RedshiftDataServiceException {
|
|
330
|
+
static {
|
|
331
|
+
__name(this, "ValidationException");
|
|
332
|
+
}
|
|
333
|
+
name = "ValidationException";
|
|
334
|
+
$fault = "client";
|
|
335
|
+
/**
|
|
336
|
+
* <p>The exception message.</p>
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
Message;
|
|
307
340
|
/**
|
|
308
341
|
* @internal
|
|
309
342
|
*/
|
|
@@ -313,15 +346,17 @@ var _ValidationException = class _ValidationException extends RedshiftDataServic
|
|
|
313
346
|
$fault: "client",
|
|
314
347
|
...opts
|
|
315
348
|
});
|
|
316
|
-
this.name = "ValidationException";
|
|
317
|
-
this.$fault = "client";
|
|
318
349
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
319
350
|
this.Message = opts.Message;
|
|
320
351
|
}
|
|
321
352
|
};
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
353
|
+
var DatabaseConnectionException = class _DatabaseConnectionException extends RedshiftDataServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "DatabaseConnectionException");
|
|
356
|
+
}
|
|
357
|
+
name = "DatabaseConnectionException";
|
|
358
|
+
$fault = "server";
|
|
359
|
+
Message;
|
|
325
360
|
/**
|
|
326
361
|
* @internal
|
|
327
362
|
*/
|
|
@@ -331,15 +366,26 @@ var _DatabaseConnectionException = class _DatabaseConnectionException extends Re
|
|
|
331
366
|
$fault: "server",
|
|
332
367
|
...opts
|
|
333
368
|
});
|
|
334
|
-
this.name = "DatabaseConnectionException";
|
|
335
|
-
this.$fault = "server";
|
|
336
369
|
Object.setPrototypeOf(this, _DatabaseConnectionException.prototype);
|
|
337
370
|
this.Message = opts.Message;
|
|
338
371
|
}
|
|
339
372
|
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
373
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends RedshiftDataServiceException {
|
|
374
|
+
static {
|
|
375
|
+
__name(this, "ResourceNotFoundException");
|
|
376
|
+
}
|
|
377
|
+
name = "ResourceNotFoundException";
|
|
378
|
+
$fault = "client";
|
|
379
|
+
/**
|
|
380
|
+
* <p>The exception message.</p>
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
Message;
|
|
384
|
+
/**
|
|
385
|
+
* <p>Resource identifier associated with the exception.</p>
|
|
386
|
+
* @public
|
|
387
|
+
*/
|
|
388
|
+
ResourceId;
|
|
343
389
|
/**
|
|
344
390
|
* @internal
|
|
345
391
|
*/
|
|
@@ -349,15 +395,11 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Redshi
|
|
|
349
395
|
$fault: "client",
|
|
350
396
|
...opts
|
|
351
397
|
});
|
|
352
|
-
this.name = "ResourceNotFoundException";
|
|
353
|
-
this.$fault = "client";
|
|
354
398
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
355
399
|
this.Message = opts.Message;
|
|
356
400
|
this.ResourceId = opts.ResourceId;
|
|
357
401
|
}
|
|
358
402
|
};
|
|
359
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
360
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
361
403
|
var StatusString = {
|
|
362
404
|
ABORTED: "ABORTED",
|
|
363
405
|
ALL: "ALL",
|
|
@@ -375,7 +417,13 @@ var StatementStatusString = {
|
|
|
375
417
|
STARTED: "STARTED",
|
|
376
418
|
SUBMITTED: "SUBMITTED"
|
|
377
419
|
};
|
|
378
|
-
var
|
|
420
|
+
var QueryTimeoutException = class _QueryTimeoutException extends RedshiftDataServiceException {
|
|
421
|
+
static {
|
|
422
|
+
__name(this, "QueryTimeoutException");
|
|
423
|
+
}
|
|
424
|
+
name = "QueryTimeoutException";
|
|
425
|
+
$fault = "client";
|
|
426
|
+
Message;
|
|
379
427
|
/**
|
|
380
428
|
* @internal
|
|
381
429
|
*/
|
|
@@ -385,15 +433,26 @@ var _QueryTimeoutException = class _QueryTimeoutException extends RedshiftDataSe
|
|
|
385
433
|
$fault: "client",
|
|
386
434
|
...opts
|
|
387
435
|
});
|
|
388
|
-
this.name = "QueryTimeoutException";
|
|
389
|
-
this.$fault = "client";
|
|
390
436
|
Object.setPrototypeOf(this, _QueryTimeoutException.prototype);
|
|
391
437
|
this.Message = opts.Message;
|
|
392
438
|
}
|
|
393
439
|
};
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
440
|
+
var ExecuteStatementException = class _ExecuteStatementException extends RedshiftDataServiceException {
|
|
441
|
+
static {
|
|
442
|
+
__name(this, "ExecuteStatementException");
|
|
443
|
+
}
|
|
444
|
+
name = "ExecuteStatementException";
|
|
445
|
+
$fault = "server";
|
|
446
|
+
/**
|
|
447
|
+
* <p>The exception message.</p>
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
Message;
|
|
451
|
+
/**
|
|
452
|
+
* <p>Statement identifier of the exception.</p>
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
StatementId;
|
|
397
456
|
/**
|
|
398
457
|
* @internal
|
|
399
458
|
*/
|
|
@@ -403,15 +462,11 @@ var _ExecuteStatementException = class _ExecuteStatementException extends Redshi
|
|
|
403
462
|
$fault: "server",
|
|
404
463
|
...opts
|
|
405
464
|
});
|
|
406
|
-
this.name = "ExecuteStatementException";
|
|
407
|
-
this.$fault = "server";
|
|
408
465
|
Object.setPrototypeOf(this, _ExecuteStatementException.prototype);
|
|
409
466
|
this.Message = opts.Message;
|
|
410
467
|
this.StatementId = opts.StatementId;
|
|
411
468
|
}
|
|
412
469
|
};
|
|
413
|
-
__name(_ExecuteStatementException, "ExecuteStatementException");
|
|
414
|
-
var ExecuteStatementException = _ExecuteStatementException;
|
|
415
470
|
var Field;
|
|
416
471
|
((Field3) => {
|
|
417
472
|
Field3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -983,155 +1038,166 @@ function sharedHeaders(operation) {
|
|
|
983
1038
|
__name(sharedHeaders, "sharedHeaders");
|
|
984
1039
|
|
|
985
1040
|
// src/commands/BatchExecuteStatementCommand.ts
|
|
986
|
-
var
|
|
1041
|
+
var BatchExecuteStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
987
1042
|
return [
|
|
988
1043
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
989
1044
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
990
1045
|
];
|
|
991
1046
|
}).s("RedshiftData", "BatchExecuteStatement", {}).n("RedshiftDataClient", "BatchExecuteStatementCommand").f(void 0, void 0).ser(se_BatchExecuteStatementCommand).de(de_BatchExecuteStatementCommand).build() {
|
|
1047
|
+
static {
|
|
1048
|
+
__name(this, "BatchExecuteStatementCommand");
|
|
1049
|
+
}
|
|
992
1050
|
};
|
|
993
|
-
__name(_BatchExecuteStatementCommand, "BatchExecuteStatementCommand");
|
|
994
|
-
var BatchExecuteStatementCommand = _BatchExecuteStatementCommand;
|
|
995
1051
|
|
|
996
1052
|
// src/commands/CancelStatementCommand.ts
|
|
997
1053
|
|
|
998
1054
|
|
|
999
1055
|
|
|
1000
|
-
var
|
|
1056
|
+
var CancelStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1001
1057
|
return [
|
|
1002
1058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1003
1059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1004
1060
|
];
|
|
1005
1061
|
}).s("RedshiftData", "CancelStatement", {}).n("RedshiftDataClient", "CancelStatementCommand").f(void 0, void 0).ser(se_CancelStatementCommand).de(de_CancelStatementCommand).build() {
|
|
1062
|
+
static {
|
|
1063
|
+
__name(this, "CancelStatementCommand");
|
|
1064
|
+
}
|
|
1006
1065
|
};
|
|
1007
|
-
__name(_CancelStatementCommand, "CancelStatementCommand");
|
|
1008
|
-
var CancelStatementCommand = _CancelStatementCommand;
|
|
1009
1066
|
|
|
1010
1067
|
// src/commands/DescribeStatementCommand.ts
|
|
1011
1068
|
|
|
1012
1069
|
|
|
1013
1070
|
|
|
1014
|
-
var
|
|
1071
|
+
var DescribeStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1015
1072
|
return [
|
|
1016
1073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1017
1074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1018
1075
|
];
|
|
1019
1076
|
}).s("RedshiftData", "DescribeStatement", {}).n("RedshiftDataClient", "DescribeStatementCommand").f(void 0, void 0).ser(se_DescribeStatementCommand).de(de_DescribeStatementCommand).build() {
|
|
1077
|
+
static {
|
|
1078
|
+
__name(this, "DescribeStatementCommand");
|
|
1079
|
+
}
|
|
1020
1080
|
};
|
|
1021
|
-
__name(_DescribeStatementCommand, "DescribeStatementCommand");
|
|
1022
|
-
var DescribeStatementCommand = _DescribeStatementCommand;
|
|
1023
1081
|
|
|
1024
1082
|
// src/commands/DescribeTableCommand.ts
|
|
1025
1083
|
|
|
1026
1084
|
|
|
1027
1085
|
|
|
1028
|
-
var
|
|
1086
|
+
var DescribeTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1029
1087
|
return [
|
|
1030
1088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1031
1089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1032
1090
|
];
|
|
1033
1091
|
}).s("RedshiftData", "DescribeTable", {}).n("RedshiftDataClient", "DescribeTableCommand").f(void 0, void 0).ser(se_DescribeTableCommand).de(de_DescribeTableCommand).build() {
|
|
1092
|
+
static {
|
|
1093
|
+
__name(this, "DescribeTableCommand");
|
|
1094
|
+
}
|
|
1034
1095
|
};
|
|
1035
|
-
__name(_DescribeTableCommand, "DescribeTableCommand");
|
|
1036
|
-
var DescribeTableCommand = _DescribeTableCommand;
|
|
1037
1096
|
|
|
1038
1097
|
// src/commands/ExecuteStatementCommand.ts
|
|
1039
1098
|
|
|
1040
1099
|
|
|
1041
1100
|
|
|
1042
|
-
var
|
|
1101
|
+
var ExecuteStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1043
1102
|
return [
|
|
1044
1103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1045
1104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1046
1105
|
];
|
|
1047
1106
|
}).s("RedshiftData", "ExecuteStatement", {}).n("RedshiftDataClient", "ExecuteStatementCommand").f(void 0, void 0).ser(se_ExecuteStatementCommand).de(de_ExecuteStatementCommand).build() {
|
|
1107
|
+
static {
|
|
1108
|
+
__name(this, "ExecuteStatementCommand");
|
|
1109
|
+
}
|
|
1048
1110
|
};
|
|
1049
|
-
__name(_ExecuteStatementCommand, "ExecuteStatementCommand");
|
|
1050
|
-
var ExecuteStatementCommand = _ExecuteStatementCommand;
|
|
1051
1111
|
|
|
1052
1112
|
// src/commands/GetStatementResultCommand.ts
|
|
1053
1113
|
|
|
1054
1114
|
|
|
1055
1115
|
|
|
1056
|
-
var
|
|
1116
|
+
var GetStatementResultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1057
1117
|
return [
|
|
1058
1118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1059
1119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1060
1120
|
];
|
|
1061
1121
|
}).s("RedshiftData", "GetStatementResult", {}).n("RedshiftDataClient", "GetStatementResultCommand").f(void 0, void 0).ser(se_GetStatementResultCommand).de(de_GetStatementResultCommand).build() {
|
|
1122
|
+
static {
|
|
1123
|
+
__name(this, "GetStatementResultCommand");
|
|
1124
|
+
}
|
|
1062
1125
|
};
|
|
1063
|
-
__name(_GetStatementResultCommand, "GetStatementResultCommand");
|
|
1064
|
-
var GetStatementResultCommand = _GetStatementResultCommand;
|
|
1065
1126
|
|
|
1066
1127
|
// src/commands/GetStatementResultV2Command.ts
|
|
1067
1128
|
|
|
1068
1129
|
|
|
1069
1130
|
|
|
1070
|
-
var
|
|
1131
|
+
var GetStatementResultV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1071
1132
|
return [
|
|
1072
1133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1073
1134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1074
1135
|
];
|
|
1075
1136
|
}).s("RedshiftData", "GetStatementResultV2", {}).n("RedshiftDataClient", "GetStatementResultV2Command").f(void 0, void 0).ser(se_GetStatementResultV2Command).de(de_GetStatementResultV2Command).build() {
|
|
1137
|
+
static {
|
|
1138
|
+
__name(this, "GetStatementResultV2Command");
|
|
1139
|
+
}
|
|
1076
1140
|
};
|
|
1077
|
-
__name(_GetStatementResultV2Command, "GetStatementResultV2Command");
|
|
1078
|
-
var GetStatementResultV2Command = _GetStatementResultV2Command;
|
|
1079
1141
|
|
|
1080
1142
|
// src/commands/ListDatabasesCommand.ts
|
|
1081
1143
|
|
|
1082
1144
|
|
|
1083
1145
|
|
|
1084
|
-
var
|
|
1146
|
+
var ListDatabasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1085
1147
|
return [
|
|
1086
1148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1087
1149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1088
1150
|
];
|
|
1089
1151
|
}).s("RedshiftData", "ListDatabases", {}).n("RedshiftDataClient", "ListDatabasesCommand").f(void 0, void 0).ser(se_ListDatabasesCommand).de(de_ListDatabasesCommand).build() {
|
|
1152
|
+
static {
|
|
1153
|
+
__name(this, "ListDatabasesCommand");
|
|
1154
|
+
}
|
|
1090
1155
|
};
|
|
1091
|
-
__name(_ListDatabasesCommand, "ListDatabasesCommand");
|
|
1092
|
-
var ListDatabasesCommand = _ListDatabasesCommand;
|
|
1093
1156
|
|
|
1094
1157
|
// src/commands/ListSchemasCommand.ts
|
|
1095
1158
|
|
|
1096
1159
|
|
|
1097
1160
|
|
|
1098
|
-
var
|
|
1161
|
+
var ListSchemasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1099
1162
|
return [
|
|
1100
1163
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1101
1164
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1102
1165
|
];
|
|
1103
1166
|
}).s("RedshiftData", "ListSchemas", {}).n("RedshiftDataClient", "ListSchemasCommand").f(void 0, void 0).ser(se_ListSchemasCommand).de(de_ListSchemasCommand).build() {
|
|
1167
|
+
static {
|
|
1168
|
+
__name(this, "ListSchemasCommand");
|
|
1169
|
+
}
|
|
1104
1170
|
};
|
|
1105
|
-
__name(_ListSchemasCommand, "ListSchemasCommand");
|
|
1106
|
-
var ListSchemasCommand = _ListSchemasCommand;
|
|
1107
1171
|
|
|
1108
1172
|
// src/commands/ListStatementsCommand.ts
|
|
1109
1173
|
|
|
1110
1174
|
|
|
1111
1175
|
|
|
1112
|
-
var
|
|
1176
|
+
var ListStatementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1113
1177
|
return [
|
|
1114
1178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1115
1179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1116
1180
|
];
|
|
1117
1181
|
}).s("RedshiftData", "ListStatements", {}).n("RedshiftDataClient", "ListStatementsCommand").f(void 0, void 0).ser(se_ListStatementsCommand).de(de_ListStatementsCommand).build() {
|
|
1182
|
+
static {
|
|
1183
|
+
__name(this, "ListStatementsCommand");
|
|
1184
|
+
}
|
|
1118
1185
|
};
|
|
1119
|
-
__name(_ListStatementsCommand, "ListStatementsCommand");
|
|
1120
|
-
var ListStatementsCommand = _ListStatementsCommand;
|
|
1121
1186
|
|
|
1122
1187
|
// src/commands/ListTablesCommand.ts
|
|
1123
1188
|
|
|
1124
1189
|
|
|
1125
1190
|
|
|
1126
|
-
var
|
|
1191
|
+
var ListTablesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1127
1192
|
return [
|
|
1128
1193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1129
1194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1130
1195
|
];
|
|
1131
1196
|
}).s("RedshiftData", "ListTables", {}).n("RedshiftDataClient", "ListTablesCommand").f(void 0, void 0).ser(se_ListTablesCommand).de(de_ListTablesCommand).build() {
|
|
1197
|
+
static {
|
|
1198
|
+
__name(this, "ListTablesCommand");
|
|
1199
|
+
}
|
|
1132
1200
|
};
|
|
1133
|
-
__name(_ListTablesCommand, "ListTablesCommand");
|
|
1134
|
-
var ListTablesCommand = _ListTablesCommand;
|
|
1135
1201
|
|
|
1136
1202
|
// src/RedshiftData.ts
|
|
1137
1203
|
var commands = {
|
|
@@ -1147,10 +1213,11 @@ var commands = {
|
|
|
1147
1213
|
ListStatementsCommand,
|
|
1148
1214
|
ListTablesCommand
|
|
1149
1215
|
};
|
|
1150
|
-
var
|
|
1216
|
+
var RedshiftData = class extends RedshiftDataClient {
|
|
1217
|
+
static {
|
|
1218
|
+
__name(this, "RedshiftData");
|
|
1219
|
+
}
|
|
1151
1220
|
};
|
|
1152
|
-
__name(_RedshiftData, "RedshiftData");
|
|
1153
|
-
var RedshiftData = _RedshiftData;
|
|
1154
1221
|
(0, import_smithy_client.createAggregatedClient)(commands, RedshiftData);
|
|
1155
1222
|
|
|
1156
1223
|
// src/pagination/DescribeTablePaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class RedshiftDataClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,39 +1,43 @@
|
|
|
1
1
|
import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException";
|
|
2
2
|
export class ActiveSessionsExceededException extends __BaseException {
|
|
3
|
+
name = "ActiveSessionsExceededException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "ActiveSessionsExceededException",
|
|
6
9
|
$fault: "client",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "ActiveSessionsExceededException";
|
|
10
|
-
this.$fault = "client";
|
|
11
12
|
Object.setPrototypeOf(this, ActiveSessionsExceededException.prototype);
|
|
12
13
|
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export class ActiveStatementsExceededException extends __BaseException {
|
|
17
|
+
name = "ActiveStatementsExceededException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
16
20
|
constructor(opts) {
|
|
17
21
|
super({
|
|
18
22
|
name: "ActiveStatementsExceededException",
|
|
19
23
|
$fault: "client",
|
|
20
24
|
...opts,
|
|
21
25
|
});
|
|
22
|
-
this.name = "ActiveStatementsExceededException";
|
|
23
|
-
this.$fault = "client";
|
|
24
26
|
Object.setPrototypeOf(this, ActiveStatementsExceededException.prototype);
|
|
25
27
|
this.Message = opts.Message;
|
|
26
28
|
}
|
|
27
29
|
}
|
|
28
30
|
export class BatchExecuteStatementException extends __BaseException {
|
|
31
|
+
name = "BatchExecuteStatementException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
Message;
|
|
34
|
+
StatementId;
|
|
29
35
|
constructor(opts) {
|
|
30
36
|
super({
|
|
31
37
|
name: "BatchExecuteStatementException",
|
|
32
38
|
$fault: "server",
|
|
33
39
|
...opts,
|
|
34
40
|
});
|
|
35
|
-
this.name = "BatchExecuteStatementException";
|
|
36
|
-
this.$fault = "server";
|
|
37
41
|
Object.setPrototypeOf(this, BatchExecuteStatementException.prototype);
|
|
38
42
|
this.Message = opts.Message;
|
|
39
43
|
this.StatementId = opts.StatementId;
|
|
@@ -44,53 +48,58 @@ export const ResultFormatString = {
|
|
|
44
48
|
JSON: "JSON",
|
|
45
49
|
};
|
|
46
50
|
export class InternalServerException extends __BaseException {
|
|
51
|
+
name = "InternalServerException";
|
|
52
|
+
$fault = "server";
|
|
53
|
+
Message;
|
|
47
54
|
constructor(opts) {
|
|
48
55
|
super({
|
|
49
56
|
name: "InternalServerException",
|
|
50
57
|
$fault: "server",
|
|
51
58
|
...opts,
|
|
52
59
|
});
|
|
53
|
-
this.name = "InternalServerException";
|
|
54
|
-
this.$fault = "server";
|
|
55
60
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
56
61
|
this.Message = opts.Message;
|
|
57
62
|
}
|
|
58
63
|
}
|
|
59
64
|
export class ValidationException extends __BaseException {
|
|
65
|
+
name = "ValidationException";
|
|
66
|
+
$fault = "client";
|
|
67
|
+
Message;
|
|
60
68
|
constructor(opts) {
|
|
61
69
|
super({
|
|
62
70
|
name: "ValidationException",
|
|
63
71
|
$fault: "client",
|
|
64
72
|
...opts,
|
|
65
73
|
});
|
|
66
|
-
this.name = "ValidationException";
|
|
67
|
-
this.$fault = "client";
|
|
68
74
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
69
75
|
this.Message = opts.Message;
|
|
70
76
|
}
|
|
71
77
|
}
|
|
72
78
|
export class DatabaseConnectionException extends __BaseException {
|
|
79
|
+
name = "DatabaseConnectionException";
|
|
80
|
+
$fault = "server";
|
|
81
|
+
Message;
|
|
73
82
|
constructor(opts) {
|
|
74
83
|
super({
|
|
75
84
|
name: "DatabaseConnectionException",
|
|
76
85
|
$fault: "server",
|
|
77
86
|
...opts,
|
|
78
87
|
});
|
|
79
|
-
this.name = "DatabaseConnectionException";
|
|
80
|
-
this.$fault = "server";
|
|
81
88
|
Object.setPrototypeOf(this, DatabaseConnectionException.prototype);
|
|
82
89
|
this.Message = opts.Message;
|
|
83
90
|
}
|
|
84
91
|
}
|
|
85
92
|
export class ResourceNotFoundException extends __BaseException {
|
|
93
|
+
name = "ResourceNotFoundException";
|
|
94
|
+
$fault = "client";
|
|
95
|
+
Message;
|
|
96
|
+
ResourceId;
|
|
86
97
|
constructor(opts) {
|
|
87
98
|
super({
|
|
88
99
|
name: "ResourceNotFoundException",
|
|
89
100
|
$fault: "client",
|
|
90
101
|
...opts,
|
|
91
102
|
});
|
|
92
|
-
this.name = "ResourceNotFoundException";
|
|
93
|
-
this.$fault = "client";
|
|
94
103
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
95
104
|
this.Message = opts.Message;
|
|
96
105
|
this.ResourceId = opts.ResourceId;
|
|
@@ -114,27 +123,30 @@ export const StatementStatusString = {
|
|
|
114
123
|
SUBMITTED: "SUBMITTED",
|
|
115
124
|
};
|
|
116
125
|
export class QueryTimeoutException extends __BaseException {
|
|
126
|
+
name = "QueryTimeoutException";
|
|
127
|
+
$fault = "client";
|
|
128
|
+
Message;
|
|
117
129
|
constructor(opts) {
|
|
118
130
|
super({
|
|
119
131
|
name: "QueryTimeoutException",
|
|
120
132
|
$fault: "client",
|
|
121
133
|
...opts,
|
|
122
134
|
});
|
|
123
|
-
this.name = "QueryTimeoutException";
|
|
124
|
-
this.$fault = "client";
|
|
125
135
|
Object.setPrototypeOf(this, QueryTimeoutException.prototype);
|
|
126
136
|
this.Message = opts.Message;
|
|
127
137
|
}
|
|
128
138
|
}
|
|
129
139
|
export class ExecuteStatementException extends __BaseException {
|
|
140
|
+
name = "ExecuteStatementException";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
Message;
|
|
143
|
+
StatementId;
|
|
130
144
|
constructor(opts) {
|
|
131
145
|
super({
|
|
132
146
|
name: "ExecuteStatementException",
|
|
133
147
|
$fault: "server",
|
|
134
148
|
...opts,
|
|
135
149
|
});
|
|
136
|
-
this.name = "ExecuteStatementException";
|
|
137
|
-
this.$fault = "server";
|
|
138
150
|
Object.setPrototypeOf(this, ExecuteStatementException.prototype);
|
|
139
151
|
this.Message = opts.Message;
|
|
140
152
|
this.StatementId = opts.StatementId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.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-redshift-data",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|