@aws-sdk/client-athena 3.716.0 → 3.723.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 +348 -244
- package/dist-es/AthenaClient.js +1 -0
- package/dist-es/models/models_0.js +21 -12
- 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
|
@@ -231,7 +231,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
231
231
|
}, "resolveRuntimeExtensions");
|
|
232
232
|
|
|
233
233
|
// src/AthenaClient.ts
|
|
234
|
-
var
|
|
234
|
+
var AthenaClient = class extends import_smithy_client.Client {
|
|
235
|
+
static {
|
|
236
|
+
__name(this, "AthenaClient");
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* The resolved configuration of AthenaClient class. This is resolved and normalized from the {@link AthenaClientConfig | constructor configuration interface}.
|
|
240
|
+
*/
|
|
241
|
+
config;
|
|
235
242
|
constructor(...[configuration]) {
|
|
236
243
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
237
244
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -241,7 +248,7 @@ var _AthenaClient = class _AthenaClient extends import_smithy_client.Client {
|
|
|
241
248
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
242
249
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
243
250
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
244
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
251
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
245
252
|
super(_config_8);
|
|
246
253
|
this.config = _config_8;
|
|
247
254
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -269,8 +276,6 @@ var _AthenaClient = class _AthenaClient extends import_smithy_client.Client {
|
|
|
269
276
|
super.destroy();
|
|
270
277
|
}
|
|
271
278
|
};
|
|
272
|
-
__name(_AthenaClient, "AthenaClient");
|
|
273
|
-
var AthenaClient = _AthenaClient;
|
|
274
279
|
|
|
275
280
|
// src/Athena.ts
|
|
276
281
|
|
|
@@ -288,7 +293,10 @@ var import_uuid = require("uuid");
|
|
|
288
293
|
|
|
289
294
|
// src/models/AthenaServiceException.ts
|
|
290
295
|
|
|
291
|
-
var
|
|
296
|
+
var AthenaServiceException = class _AthenaServiceException extends import_smithy_client.ServiceException {
|
|
297
|
+
static {
|
|
298
|
+
__name(this, "AthenaServiceException");
|
|
299
|
+
}
|
|
292
300
|
/**
|
|
293
301
|
* @internal
|
|
294
302
|
*/
|
|
@@ -297,14 +305,18 @@ var _AthenaServiceException = class _AthenaServiceException extends import_smith
|
|
|
297
305
|
Object.setPrototypeOf(this, _AthenaServiceException.prototype);
|
|
298
306
|
}
|
|
299
307
|
};
|
|
300
|
-
__name(_AthenaServiceException, "AthenaServiceException");
|
|
301
|
-
var AthenaServiceException = _AthenaServiceException;
|
|
302
308
|
|
|
303
309
|
// src/models/models_0.ts
|
|
304
310
|
var S3AclOption = {
|
|
305
311
|
BUCKET_OWNER_FULL_CONTROL: "BUCKET_OWNER_FULL_CONTROL"
|
|
306
312
|
};
|
|
307
|
-
var
|
|
313
|
+
var InternalServerException = class _InternalServerException extends AthenaServiceException {
|
|
314
|
+
static {
|
|
315
|
+
__name(this, "InternalServerException");
|
|
316
|
+
}
|
|
317
|
+
name = "InternalServerException";
|
|
318
|
+
$fault = "server";
|
|
319
|
+
Message;
|
|
308
320
|
/**
|
|
309
321
|
* @internal
|
|
310
322
|
*/
|
|
@@ -314,15 +326,23 @@ var _InternalServerException = class _InternalServerException extends AthenaServ
|
|
|
314
326
|
$fault: "server",
|
|
315
327
|
...opts
|
|
316
328
|
});
|
|
317
|
-
this.name = "InternalServerException";
|
|
318
|
-
this.$fault = "server";
|
|
319
329
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
320
330
|
this.Message = opts.Message;
|
|
321
331
|
}
|
|
322
332
|
};
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
333
|
+
var InvalidRequestException = class _InvalidRequestException extends AthenaServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "InvalidRequestException");
|
|
336
|
+
}
|
|
337
|
+
name = "InvalidRequestException";
|
|
338
|
+
$fault = "client";
|
|
339
|
+
/**
|
|
340
|
+
* <p>The error code returned when the query execution failed to process, or when the
|
|
341
|
+
* processing request for the named query failed.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
AthenaErrorCode;
|
|
345
|
+
Message;
|
|
326
346
|
/**
|
|
327
347
|
* @internal
|
|
328
348
|
*/
|
|
@@ -332,15 +352,11 @@ var _InvalidRequestException = class _InvalidRequestException extends AthenaServ
|
|
|
332
352
|
$fault: "client",
|
|
333
353
|
...opts
|
|
334
354
|
});
|
|
335
|
-
this.name = "InvalidRequestException";
|
|
336
|
-
this.$fault = "client";
|
|
337
355
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
338
356
|
this.AthenaErrorCode = opts.AthenaErrorCode;
|
|
339
357
|
this.Message = opts.Message;
|
|
340
358
|
}
|
|
341
359
|
};
|
|
342
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
343
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
344
360
|
var AuthenticationType = {
|
|
345
361
|
DIRECTORY_IDENTITY: "DIRECTORY_IDENTITY"
|
|
346
362
|
};
|
|
@@ -403,7 +419,19 @@ var DataCatalogStatus = {
|
|
|
403
419
|
var ThrottleReason = {
|
|
404
420
|
CONCURRENT_QUERY_LIMIT_EXCEEDED: "CONCURRENT_QUERY_LIMIT_EXCEEDED"
|
|
405
421
|
};
|
|
406
|
-
var
|
|
422
|
+
var TooManyRequestsException = class _TooManyRequestsException extends AthenaServiceException {
|
|
423
|
+
static {
|
|
424
|
+
__name(this, "TooManyRequestsException");
|
|
425
|
+
}
|
|
426
|
+
name = "TooManyRequestsException";
|
|
427
|
+
$fault = "client";
|
|
428
|
+
Message;
|
|
429
|
+
/**
|
|
430
|
+
* <p>The reason for the query throttling, for example, when it exceeds the concurrent query
|
|
431
|
+
* limit.</p>
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
434
|
+
Reason;
|
|
407
435
|
/**
|
|
408
436
|
* @internal
|
|
409
437
|
*/
|
|
@@ -413,16 +441,23 @@ var _TooManyRequestsException = class _TooManyRequestsException extends AthenaSe
|
|
|
413
441
|
$fault: "client",
|
|
414
442
|
...opts
|
|
415
443
|
});
|
|
416
|
-
this.name = "TooManyRequestsException";
|
|
417
|
-
this.$fault = "client";
|
|
418
444
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
419
445
|
this.Message = opts.Message;
|
|
420
446
|
this.Reason = opts.Reason;
|
|
421
447
|
}
|
|
422
448
|
};
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
449
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AthenaServiceException {
|
|
450
|
+
static {
|
|
451
|
+
__name(this, "ResourceNotFoundException");
|
|
452
|
+
}
|
|
453
|
+
name = "ResourceNotFoundException";
|
|
454
|
+
$fault = "client";
|
|
455
|
+
Message;
|
|
456
|
+
/**
|
|
457
|
+
* <p>The name of the Amazon resource.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
ResourceName;
|
|
426
461
|
/**
|
|
427
462
|
* @internal
|
|
428
463
|
*/
|
|
@@ -432,15 +467,11 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Athena
|
|
|
432
467
|
$fault: "client",
|
|
433
468
|
...opts
|
|
434
469
|
});
|
|
435
|
-
this.name = "ResourceNotFoundException";
|
|
436
|
-
this.$fault = "client";
|
|
437
470
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
438
471
|
this.Message = opts.Message;
|
|
439
472
|
this.ResourceName = opts.ResourceName;
|
|
440
473
|
}
|
|
441
474
|
};
|
|
442
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
443
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
444
475
|
var NotebookType = {
|
|
445
476
|
IPYNB: "IPYNB"
|
|
446
477
|
};
|
|
@@ -467,7 +498,13 @@ var CapacityReservationStatus = {
|
|
|
467
498
|
PENDING: "PENDING",
|
|
468
499
|
UPDATE_PENDING: "UPDATE_PENDING"
|
|
469
500
|
};
|
|
470
|
-
var
|
|
501
|
+
var MetadataException = class _MetadataException extends AthenaServiceException {
|
|
502
|
+
static {
|
|
503
|
+
__name(this, "MetadataException");
|
|
504
|
+
}
|
|
505
|
+
name = "MetadataException";
|
|
506
|
+
$fault = "client";
|
|
507
|
+
Message;
|
|
471
508
|
/**
|
|
472
509
|
* @internal
|
|
473
510
|
*/
|
|
@@ -477,14 +514,10 @@ var _MetadataException = class _MetadataException extends AthenaServiceException
|
|
|
477
514
|
$fault: "client",
|
|
478
515
|
...opts
|
|
479
516
|
});
|
|
480
|
-
this.name = "MetadataException";
|
|
481
|
-
this.$fault = "client";
|
|
482
517
|
Object.setPrototypeOf(this, _MetadataException.prototype);
|
|
483
518
|
this.Message = opts.Message;
|
|
484
519
|
}
|
|
485
520
|
};
|
|
486
|
-
__name(_MetadataException, "MetadataException");
|
|
487
|
-
var MetadataException = _MetadataException;
|
|
488
521
|
var ColumnNullable = {
|
|
489
522
|
NOT_NULL: "NOT_NULL",
|
|
490
523
|
NULLABLE: "NULLABLE",
|
|
@@ -517,7 +550,13 @@ var ExecutorType = {
|
|
|
517
550
|
GATEWAY: "GATEWAY",
|
|
518
551
|
WORKER: "WORKER"
|
|
519
552
|
};
|
|
520
|
-
var
|
|
553
|
+
var SessionAlreadyExistsException = class _SessionAlreadyExistsException extends AthenaServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "SessionAlreadyExistsException");
|
|
556
|
+
}
|
|
557
|
+
name = "SessionAlreadyExistsException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Message;
|
|
521
560
|
/**
|
|
522
561
|
* @internal
|
|
523
562
|
*/
|
|
@@ -527,14 +566,10 @@ var _SessionAlreadyExistsException = class _SessionAlreadyExistsException extend
|
|
|
527
566
|
$fault: "client",
|
|
528
567
|
...opts
|
|
529
568
|
});
|
|
530
|
-
this.name = "SessionAlreadyExistsException";
|
|
531
|
-
this.$fault = "client";
|
|
532
569
|
Object.setPrototypeOf(this, _SessionAlreadyExistsException.prototype);
|
|
533
570
|
this.Message = opts.Message;
|
|
534
571
|
}
|
|
535
572
|
};
|
|
536
|
-
__name(_SessionAlreadyExistsException, "SessionAlreadyExistsException");
|
|
537
|
-
var SessionAlreadyExistsException = _SessionAlreadyExistsException;
|
|
538
573
|
|
|
539
574
|
// src/protocols/Aws_json1_1.ts
|
|
540
575
|
var se_BatchGetNamedQueryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2360,953 +2395,1021 @@ function sharedHeaders(operation) {
|
|
|
2360
2395
|
__name(sharedHeaders, "sharedHeaders");
|
|
2361
2396
|
|
|
2362
2397
|
// src/commands/BatchGetNamedQueryCommand.ts
|
|
2363
|
-
var
|
|
2398
|
+
var BatchGetNamedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2364
2399
|
return [
|
|
2365
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2366
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2367
2402
|
];
|
|
2368
2403
|
}).s("AmazonAthena", "BatchGetNamedQuery", {}).n("AthenaClient", "BatchGetNamedQueryCommand").f(void 0, void 0).ser(se_BatchGetNamedQueryCommand).de(de_BatchGetNamedQueryCommand).build() {
|
|
2404
|
+
static {
|
|
2405
|
+
__name(this, "BatchGetNamedQueryCommand");
|
|
2406
|
+
}
|
|
2369
2407
|
};
|
|
2370
|
-
__name(_BatchGetNamedQueryCommand, "BatchGetNamedQueryCommand");
|
|
2371
|
-
var BatchGetNamedQueryCommand = _BatchGetNamedQueryCommand;
|
|
2372
2408
|
|
|
2373
2409
|
// src/commands/BatchGetPreparedStatementCommand.ts
|
|
2374
2410
|
|
|
2375
2411
|
|
|
2376
2412
|
|
|
2377
|
-
var
|
|
2413
|
+
var BatchGetPreparedStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2378
2414
|
return [
|
|
2379
2415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2380
2416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2381
2417
|
];
|
|
2382
2418
|
}).s("AmazonAthena", "BatchGetPreparedStatement", {}).n("AthenaClient", "BatchGetPreparedStatementCommand").f(void 0, void 0).ser(se_BatchGetPreparedStatementCommand).de(de_BatchGetPreparedStatementCommand).build() {
|
|
2419
|
+
static {
|
|
2420
|
+
__name(this, "BatchGetPreparedStatementCommand");
|
|
2421
|
+
}
|
|
2383
2422
|
};
|
|
2384
|
-
__name(_BatchGetPreparedStatementCommand, "BatchGetPreparedStatementCommand");
|
|
2385
|
-
var BatchGetPreparedStatementCommand = _BatchGetPreparedStatementCommand;
|
|
2386
2423
|
|
|
2387
2424
|
// src/commands/BatchGetQueryExecutionCommand.ts
|
|
2388
2425
|
|
|
2389
2426
|
|
|
2390
2427
|
|
|
2391
|
-
var
|
|
2428
|
+
var BatchGetQueryExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2392
2429
|
return [
|
|
2393
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2394
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2395
2432
|
];
|
|
2396
2433
|
}).s("AmazonAthena", "BatchGetQueryExecution", {}).n("AthenaClient", "BatchGetQueryExecutionCommand").f(void 0, void 0).ser(se_BatchGetQueryExecutionCommand).de(de_BatchGetQueryExecutionCommand).build() {
|
|
2434
|
+
static {
|
|
2435
|
+
__name(this, "BatchGetQueryExecutionCommand");
|
|
2436
|
+
}
|
|
2397
2437
|
};
|
|
2398
|
-
__name(_BatchGetQueryExecutionCommand, "BatchGetQueryExecutionCommand");
|
|
2399
|
-
var BatchGetQueryExecutionCommand = _BatchGetQueryExecutionCommand;
|
|
2400
2438
|
|
|
2401
2439
|
// src/commands/CancelCapacityReservationCommand.ts
|
|
2402
2440
|
|
|
2403
2441
|
|
|
2404
2442
|
|
|
2405
|
-
var
|
|
2443
|
+
var CancelCapacityReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2406
2444
|
return [
|
|
2407
2445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2408
2446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2409
2447
|
];
|
|
2410
2448
|
}).s("AmazonAthena", "CancelCapacityReservation", {}).n("AthenaClient", "CancelCapacityReservationCommand").f(void 0, void 0).ser(se_CancelCapacityReservationCommand).de(de_CancelCapacityReservationCommand).build() {
|
|
2449
|
+
static {
|
|
2450
|
+
__name(this, "CancelCapacityReservationCommand");
|
|
2451
|
+
}
|
|
2411
2452
|
};
|
|
2412
|
-
__name(_CancelCapacityReservationCommand, "CancelCapacityReservationCommand");
|
|
2413
|
-
var CancelCapacityReservationCommand = _CancelCapacityReservationCommand;
|
|
2414
2453
|
|
|
2415
2454
|
// src/commands/CreateCapacityReservationCommand.ts
|
|
2416
2455
|
|
|
2417
2456
|
|
|
2418
2457
|
|
|
2419
|
-
var
|
|
2458
|
+
var CreateCapacityReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2420
2459
|
return [
|
|
2421
2460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2422
2461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2423
2462
|
];
|
|
2424
2463
|
}).s("AmazonAthena", "CreateCapacityReservation", {}).n("AthenaClient", "CreateCapacityReservationCommand").f(void 0, void 0).ser(se_CreateCapacityReservationCommand).de(de_CreateCapacityReservationCommand).build() {
|
|
2464
|
+
static {
|
|
2465
|
+
__name(this, "CreateCapacityReservationCommand");
|
|
2466
|
+
}
|
|
2425
2467
|
};
|
|
2426
|
-
__name(_CreateCapacityReservationCommand, "CreateCapacityReservationCommand");
|
|
2427
|
-
var CreateCapacityReservationCommand = _CreateCapacityReservationCommand;
|
|
2428
2468
|
|
|
2429
2469
|
// src/commands/CreateDataCatalogCommand.ts
|
|
2430
2470
|
|
|
2431
2471
|
|
|
2432
2472
|
|
|
2433
|
-
var
|
|
2473
|
+
var CreateDataCatalogCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2434
2474
|
return [
|
|
2435
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2436
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2437
2477
|
];
|
|
2438
2478
|
}).s("AmazonAthena", "CreateDataCatalog", {}).n("AthenaClient", "CreateDataCatalogCommand").f(void 0, void 0).ser(se_CreateDataCatalogCommand).de(de_CreateDataCatalogCommand).build() {
|
|
2479
|
+
static {
|
|
2480
|
+
__name(this, "CreateDataCatalogCommand");
|
|
2481
|
+
}
|
|
2439
2482
|
};
|
|
2440
|
-
__name(_CreateDataCatalogCommand, "CreateDataCatalogCommand");
|
|
2441
|
-
var CreateDataCatalogCommand = _CreateDataCatalogCommand;
|
|
2442
2483
|
|
|
2443
2484
|
// src/commands/CreateNamedQueryCommand.ts
|
|
2444
2485
|
|
|
2445
2486
|
|
|
2446
2487
|
|
|
2447
|
-
var
|
|
2488
|
+
var CreateNamedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2448
2489
|
return [
|
|
2449
2490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2450
2491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2451
2492
|
];
|
|
2452
2493
|
}).s("AmazonAthena", "CreateNamedQuery", {}).n("AthenaClient", "CreateNamedQueryCommand").f(void 0, void 0).ser(se_CreateNamedQueryCommand).de(de_CreateNamedQueryCommand).build() {
|
|
2494
|
+
static {
|
|
2495
|
+
__name(this, "CreateNamedQueryCommand");
|
|
2496
|
+
}
|
|
2453
2497
|
};
|
|
2454
|
-
__name(_CreateNamedQueryCommand, "CreateNamedQueryCommand");
|
|
2455
|
-
var CreateNamedQueryCommand = _CreateNamedQueryCommand;
|
|
2456
2498
|
|
|
2457
2499
|
// src/commands/CreateNotebookCommand.ts
|
|
2458
2500
|
|
|
2459
2501
|
|
|
2460
2502
|
|
|
2461
|
-
var
|
|
2503
|
+
var CreateNotebookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2462
2504
|
return [
|
|
2463
2505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2464
2506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2465
2507
|
];
|
|
2466
2508
|
}).s("AmazonAthena", "CreateNotebook", {}).n("AthenaClient", "CreateNotebookCommand").f(void 0, void 0).ser(se_CreateNotebookCommand).de(de_CreateNotebookCommand).build() {
|
|
2509
|
+
static {
|
|
2510
|
+
__name(this, "CreateNotebookCommand");
|
|
2511
|
+
}
|
|
2467
2512
|
};
|
|
2468
|
-
__name(_CreateNotebookCommand, "CreateNotebookCommand");
|
|
2469
|
-
var CreateNotebookCommand = _CreateNotebookCommand;
|
|
2470
2513
|
|
|
2471
2514
|
// src/commands/CreatePreparedStatementCommand.ts
|
|
2472
2515
|
|
|
2473
2516
|
|
|
2474
2517
|
|
|
2475
|
-
var
|
|
2518
|
+
var CreatePreparedStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2476
2519
|
return [
|
|
2477
2520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2478
2521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2479
2522
|
];
|
|
2480
2523
|
}).s("AmazonAthena", "CreatePreparedStatement", {}).n("AthenaClient", "CreatePreparedStatementCommand").f(void 0, void 0).ser(se_CreatePreparedStatementCommand).de(de_CreatePreparedStatementCommand).build() {
|
|
2524
|
+
static {
|
|
2525
|
+
__name(this, "CreatePreparedStatementCommand");
|
|
2526
|
+
}
|
|
2481
2527
|
};
|
|
2482
|
-
__name(_CreatePreparedStatementCommand, "CreatePreparedStatementCommand");
|
|
2483
|
-
var CreatePreparedStatementCommand = _CreatePreparedStatementCommand;
|
|
2484
2528
|
|
|
2485
2529
|
// src/commands/CreatePresignedNotebookUrlCommand.ts
|
|
2486
2530
|
|
|
2487
2531
|
|
|
2488
2532
|
|
|
2489
|
-
var
|
|
2533
|
+
var CreatePresignedNotebookUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2490
2534
|
return [
|
|
2491
2535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2492
2536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2493
2537
|
];
|
|
2494
2538
|
}).s("AmazonAthena", "CreatePresignedNotebookUrl", {}).n("AthenaClient", "CreatePresignedNotebookUrlCommand").f(void 0, void 0).ser(se_CreatePresignedNotebookUrlCommand).de(de_CreatePresignedNotebookUrlCommand).build() {
|
|
2539
|
+
static {
|
|
2540
|
+
__name(this, "CreatePresignedNotebookUrlCommand");
|
|
2541
|
+
}
|
|
2495
2542
|
};
|
|
2496
|
-
__name(_CreatePresignedNotebookUrlCommand, "CreatePresignedNotebookUrlCommand");
|
|
2497
|
-
var CreatePresignedNotebookUrlCommand = _CreatePresignedNotebookUrlCommand;
|
|
2498
2543
|
|
|
2499
2544
|
// src/commands/CreateWorkGroupCommand.ts
|
|
2500
2545
|
|
|
2501
2546
|
|
|
2502
2547
|
|
|
2503
|
-
var
|
|
2548
|
+
var CreateWorkGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2504
2549
|
return [
|
|
2505
2550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2506
2551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2507
2552
|
];
|
|
2508
2553
|
}).s("AmazonAthena", "CreateWorkGroup", {}).n("AthenaClient", "CreateWorkGroupCommand").f(void 0, void 0).ser(se_CreateWorkGroupCommand).de(de_CreateWorkGroupCommand).build() {
|
|
2554
|
+
static {
|
|
2555
|
+
__name(this, "CreateWorkGroupCommand");
|
|
2556
|
+
}
|
|
2509
2557
|
};
|
|
2510
|
-
__name(_CreateWorkGroupCommand, "CreateWorkGroupCommand");
|
|
2511
|
-
var CreateWorkGroupCommand = _CreateWorkGroupCommand;
|
|
2512
2558
|
|
|
2513
2559
|
// src/commands/DeleteCapacityReservationCommand.ts
|
|
2514
2560
|
|
|
2515
2561
|
|
|
2516
2562
|
|
|
2517
|
-
var
|
|
2563
|
+
var DeleteCapacityReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2518
2564
|
return [
|
|
2519
2565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2520
2566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2521
2567
|
];
|
|
2522
2568
|
}).s("AmazonAthena", "DeleteCapacityReservation", {}).n("AthenaClient", "DeleteCapacityReservationCommand").f(void 0, void 0).ser(se_DeleteCapacityReservationCommand).de(de_DeleteCapacityReservationCommand).build() {
|
|
2569
|
+
static {
|
|
2570
|
+
__name(this, "DeleteCapacityReservationCommand");
|
|
2571
|
+
}
|
|
2523
2572
|
};
|
|
2524
|
-
__name(_DeleteCapacityReservationCommand, "DeleteCapacityReservationCommand");
|
|
2525
|
-
var DeleteCapacityReservationCommand = _DeleteCapacityReservationCommand;
|
|
2526
2573
|
|
|
2527
2574
|
// src/commands/DeleteDataCatalogCommand.ts
|
|
2528
2575
|
|
|
2529
2576
|
|
|
2530
2577
|
|
|
2531
|
-
var
|
|
2578
|
+
var DeleteDataCatalogCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2532
2579
|
return [
|
|
2533
2580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2534
2581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2535
2582
|
];
|
|
2536
2583
|
}).s("AmazonAthena", "DeleteDataCatalog", {}).n("AthenaClient", "DeleteDataCatalogCommand").f(void 0, void 0).ser(se_DeleteDataCatalogCommand).de(de_DeleteDataCatalogCommand).build() {
|
|
2584
|
+
static {
|
|
2585
|
+
__name(this, "DeleteDataCatalogCommand");
|
|
2586
|
+
}
|
|
2537
2587
|
};
|
|
2538
|
-
__name(_DeleteDataCatalogCommand, "DeleteDataCatalogCommand");
|
|
2539
|
-
var DeleteDataCatalogCommand = _DeleteDataCatalogCommand;
|
|
2540
2588
|
|
|
2541
2589
|
// src/commands/DeleteNamedQueryCommand.ts
|
|
2542
2590
|
|
|
2543
2591
|
|
|
2544
2592
|
|
|
2545
|
-
var
|
|
2593
|
+
var DeleteNamedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2546
2594
|
return [
|
|
2547
2595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2548
2596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2549
2597
|
];
|
|
2550
2598
|
}).s("AmazonAthena", "DeleteNamedQuery", {}).n("AthenaClient", "DeleteNamedQueryCommand").f(void 0, void 0).ser(se_DeleteNamedQueryCommand).de(de_DeleteNamedQueryCommand).build() {
|
|
2599
|
+
static {
|
|
2600
|
+
__name(this, "DeleteNamedQueryCommand");
|
|
2601
|
+
}
|
|
2551
2602
|
};
|
|
2552
|
-
__name(_DeleteNamedQueryCommand, "DeleteNamedQueryCommand");
|
|
2553
|
-
var DeleteNamedQueryCommand = _DeleteNamedQueryCommand;
|
|
2554
2603
|
|
|
2555
2604
|
// src/commands/DeleteNotebookCommand.ts
|
|
2556
2605
|
|
|
2557
2606
|
|
|
2558
2607
|
|
|
2559
|
-
var
|
|
2608
|
+
var DeleteNotebookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2560
2609
|
return [
|
|
2561
2610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2562
2611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2563
2612
|
];
|
|
2564
2613
|
}).s("AmazonAthena", "DeleteNotebook", {}).n("AthenaClient", "DeleteNotebookCommand").f(void 0, void 0).ser(se_DeleteNotebookCommand).de(de_DeleteNotebookCommand).build() {
|
|
2614
|
+
static {
|
|
2615
|
+
__name(this, "DeleteNotebookCommand");
|
|
2616
|
+
}
|
|
2565
2617
|
};
|
|
2566
|
-
__name(_DeleteNotebookCommand, "DeleteNotebookCommand");
|
|
2567
|
-
var DeleteNotebookCommand = _DeleteNotebookCommand;
|
|
2568
2618
|
|
|
2569
2619
|
// src/commands/DeletePreparedStatementCommand.ts
|
|
2570
2620
|
|
|
2571
2621
|
|
|
2572
2622
|
|
|
2573
|
-
var
|
|
2623
|
+
var DeletePreparedStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2574
2624
|
return [
|
|
2575
2625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2576
2626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2577
2627
|
];
|
|
2578
2628
|
}).s("AmazonAthena", "DeletePreparedStatement", {}).n("AthenaClient", "DeletePreparedStatementCommand").f(void 0, void 0).ser(se_DeletePreparedStatementCommand).de(de_DeletePreparedStatementCommand).build() {
|
|
2629
|
+
static {
|
|
2630
|
+
__name(this, "DeletePreparedStatementCommand");
|
|
2631
|
+
}
|
|
2579
2632
|
};
|
|
2580
|
-
__name(_DeletePreparedStatementCommand, "DeletePreparedStatementCommand");
|
|
2581
|
-
var DeletePreparedStatementCommand = _DeletePreparedStatementCommand;
|
|
2582
2633
|
|
|
2583
2634
|
// src/commands/DeleteWorkGroupCommand.ts
|
|
2584
2635
|
|
|
2585
2636
|
|
|
2586
2637
|
|
|
2587
|
-
var
|
|
2638
|
+
var DeleteWorkGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2588
2639
|
return [
|
|
2589
2640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2590
2641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2591
2642
|
];
|
|
2592
2643
|
}).s("AmazonAthena", "DeleteWorkGroup", {}).n("AthenaClient", "DeleteWorkGroupCommand").f(void 0, void 0).ser(se_DeleteWorkGroupCommand).de(de_DeleteWorkGroupCommand).build() {
|
|
2644
|
+
static {
|
|
2645
|
+
__name(this, "DeleteWorkGroupCommand");
|
|
2646
|
+
}
|
|
2593
2647
|
};
|
|
2594
|
-
__name(_DeleteWorkGroupCommand, "DeleteWorkGroupCommand");
|
|
2595
|
-
var DeleteWorkGroupCommand = _DeleteWorkGroupCommand;
|
|
2596
2648
|
|
|
2597
2649
|
// src/commands/ExportNotebookCommand.ts
|
|
2598
2650
|
|
|
2599
2651
|
|
|
2600
2652
|
|
|
2601
|
-
var
|
|
2653
|
+
var ExportNotebookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2602
2654
|
return [
|
|
2603
2655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2604
2656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2605
2657
|
];
|
|
2606
2658
|
}).s("AmazonAthena", "ExportNotebook", {}).n("AthenaClient", "ExportNotebookCommand").f(void 0, void 0).ser(se_ExportNotebookCommand).de(de_ExportNotebookCommand).build() {
|
|
2659
|
+
static {
|
|
2660
|
+
__name(this, "ExportNotebookCommand");
|
|
2661
|
+
}
|
|
2607
2662
|
};
|
|
2608
|
-
__name(_ExportNotebookCommand, "ExportNotebookCommand");
|
|
2609
|
-
var ExportNotebookCommand = _ExportNotebookCommand;
|
|
2610
2663
|
|
|
2611
2664
|
// src/commands/GetCalculationExecutionCodeCommand.ts
|
|
2612
2665
|
|
|
2613
2666
|
|
|
2614
2667
|
|
|
2615
|
-
var
|
|
2668
|
+
var GetCalculationExecutionCodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2616
2669
|
return [
|
|
2617
2670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2618
2671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2619
2672
|
];
|
|
2620
2673
|
}).s("AmazonAthena", "GetCalculationExecutionCode", {}).n("AthenaClient", "GetCalculationExecutionCodeCommand").f(void 0, void 0).ser(se_GetCalculationExecutionCodeCommand).de(de_GetCalculationExecutionCodeCommand).build() {
|
|
2674
|
+
static {
|
|
2675
|
+
__name(this, "GetCalculationExecutionCodeCommand");
|
|
2676
|
+
}
|
|
2621
2677
|
};
|
|
2622
|
-
__name(_GetCalculationExecutionCodeCommand, "GetCalculationExecutionCodeCommand");
|
|
2623
|
-
var GetCalculationExecutionCodeCommand = _GetCalculationExecutionCodeCommand;
|
|
2624
2678
|
|
|
2625
2679
|
// src/commands/GetCalculationExecutionCommand.ts
|
|
2626
2680
|
|
|
2627
2681
|
|
|
2628
2682
|
|
|
2629
|
-
var
|
|
2683
|
+
var GetCalculationExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2630
2684
|
return [
|
|
2631
2685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2632
2686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2633
2687
|
];
|
|
2634
2688
|
}).s("AmazonAthena", "GetCalculationExecution", {}).n("AthenaClient", "GetCalculationExecutionCommand").f(void 0, void 0).ser(se_GetCalculationExecutionCommand).de(de_GetCalculationExecutionCommand).build() {
|
|
2689
|
+
static {
|
|
2690
|
+
__name(this, "GetCalculationExecutionCommand");
|
|
2691
|
+
}
|
|
2635
2692
|
};
|
|
2636
|
-
__name(_GetCalculationExecutionCommand, "GetCalculationExecutionCommand");
|
|
2637
|
-
var GetCalculationExecutionCommand = _GetCalculationExecutionCommand;
|
|
2638
2693
|
|
|
2639
2694
|
// src/commands/GetCalculationExecutionStatusCommand.ts
|
|
2640
2695
|
|
|
2641
2696
|
|
|
2642
2697
|
|
|
2643
|
-
var
|
|
2698
|
+
var GetCalculationExecutionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2644
2699
|
return [
|
|
2645
2700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2646
2701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2647
2702
|
];
|
|
2648
2703
|
}).s("AmazonAthena", "GetCalculationExecutionStatus", {}).n("AthenaClient", "GetCalculationExecutionStatusCommand").f(void 0, void 0).ser(se_GetCalculationExecutionStatusCommand).de(de_GetCalculationExecutionStatusCommand).build() {
|
|
2704
|
+
static {
|
|
2705
|
+
__name(this, "GetCalculationExecutionStatusCommand");
|
|
2706
|
+
}
|
|
2649
2707
|
};
|
|
2650
|
-
__name(_GetCalculationExecutionStatusCommand, "GetCalculationExecutionStatusCommand");
|
|
2651
|
-
var GetCalculationExecutionStatusCommand = _GetCalculationExecutionStatusCommand;
|
|
2652
2708
|
|
|
2653
2709
|
// src/commands/GetCapacityAssignmentConfigurationCommand.ts
|
|
2654
2710
|
|
|
2655
2711
|
|
|
2656
2712
|
|
|
2657
|
-
var
|
|
2713
|
+
var GetCapacityAssignmentConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2658
2714
|
return [
|
|
2659
2715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2660
2716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2661
2717
|
];
|
|
2662
2718
|
}).s("AmazonAthena", "GetCapacityAssignmentConfiguration", {}).n("AthenaClient", "GetCapacityAssignmentConfigurationCommand").f(void 0, void 0).ser(se_GetCapacityAssignmentConfigurationCommand).de(de_GetCapacityAssignmentConfigurationCommand).build() {
|
|
2719
|
+
static {
|
|
2720
|
+
__name(this, "GetCapacityAssignmentConfigurationCommand");
|
|
2721
|
+
}
|
|
2663
2722
|
};
|
|
2664
|
-
__name(_GetCapacityAssignmentConfigurationCommand, "GetCapacityAssignmentConfigurationCommand");
|
|
2665
|
-
var GetCapacityAssignmentConfigurationCommand = _GetCapacityAssignmentConfigurationCommand;
|
|
2666
2723
|
|
|
2667
2724
|
// src/commands/GetCapacityReservationCommand.ts
|
|
2668
2725
|
|
|
2669
2726
|
|
|
2670
2727
|
|
|
2671
|
-
var
|
|
2728
|
+
var GetCapacityReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2672
2729
|
return [
|
|
2673
2730
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2674
2731
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2675
2732
|
];
|
|
2676
2733
|
}).s("AmazonAthena", "GetCapacityReservation", {}).n("AthenaClient", "GetCapacityReservationCommand").f(void 0, void 0).ser(se_GetCapacityReservationCommand).de(de_GetCapacityReservationCommand).build() {
|
|
2734
|
+
static {
|
|
2735
|
+
__name(this, "GetCapacityReservationCommand");
|
|
2736
|
+
}
|
|
2677
2737
|
};
|
|
2678
|
-
__name(_GetCapacityReservationCommand, "GetCapacityReservationCommand");
|
|
2679
|
-
var GetCapacityReservationCommand = _GetCapacityReservationCommand;
|
|
2680
2738
|
|
|
2681
2739
|
// src/commands/GetDatabaseCommand.ts
|
|
2682
2740
|
|
|
2683
2741
|
|
|
2684
2742
|
|
|
2685
|
-
var
|
|
2743
|
+
var GetDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2686
2744
|
return [
|
|
2687
2745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2688
2746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2689
2747
|
];
|
|
2690
2748
|
}).s("AmazonAthena", "GetDatabase", {}).n("AthenaClient", "GetDatabaseCommand").f(void 0, void 0).ser(se_GetDatabaseCommand).de(de_GetDatabaseCommand).build() {
|
|
2749
|
+
static {
|
|
2750
|
+
__name(this, "GetDatabaseCommand");
|
|
2751
|
+
}
|
|
2691
2752
|
};
|
|
2692
|
-
__name(_GetDatabaseCommand, "GetDatabaseCommand");
|
|
2693
|
-
var GetDatabaseCommand = _GetDatabaseCommand;
|
|
2694
2753
|
|
|
2695
2754
|
// src/commands/GetDataCatalogCommand.ts
|
|
2696
2755
|
|
|
2697
2756
|
|
|
2698
2757
|
|
|
2699
|
-
var
|
|
2758
|
+
var GetDataCatalogCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2700
2759
|
return [
|
|
2701
2760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2702
2761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2703
2762
|
];
|
|
2704
2763
|
}).s("AmazonAthena", "GetDataCatalog", {}).n("AthenaClient", "GetDataCatalogCommand").f(void 0, void 0).ser(se_GetDataCatalogCommand).de(de_GetDataCatalogCommand).build() {
|
|
2764
|
+
static {
|
|
2765
|
+
__name(this, "GetDataCatalogCommand");
|
|
2766
|
+
}
|
|
2705
2767
|
};
|
|
2706
|
-
__name(_GetDataCatalogCommand, "GetDataCatalogCommand");
|
|
2707
|
-
var GetDataCatalogCommand = _GetDataCatalogCommand;
|
|
2708
2768
|
|
|
2709
2769
|
// src/commands/GetNamedQueryCommand.ts
|
|
2710
2770
|
|
|
2711
2771
|
|
|
2712
2772
|
|
|
2713
|
-
var
|
|
2773
|
+
var GetNamedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2714
2774
|
return [
|
|
2715
2775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2716
2776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2717
2777
|
];
|
|
2718
2778
|
}).s("AmazonAthena", "GetNamedQuery", {}).n("AthenaClient", "GetNamedQueryCommand").f(void 0, void 0).ser(se_GetNamedQueryCommand).de(de_GetNamedQueryCommand).build() {
|
|
2779
|
+
static {
|
|
2780
|
+
__name(this, "GetNamedQueryCommand");
|
|
2781
|
+
}
|
|
2719
2782
|
};
|
|
2720
|
-
__name(_GetNamedQueryCommand, "GetNamedQueryCommand");
|
|
2721
|
-
var GetNamedQueryCommand = _GetNamedQueryCommand;
|
|
2722
2783
|
|
|
2723
2784
|
// src/commands/GetNotebookMetadataCommand.ts
|
|
2724
2785
|
|
|
2725
2786
|
|
|
2726
2787
|
|
|
2727
|
-
var
|
|
2788
|
+
var GetNotebookMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2728
2789
|
return [
|
|
2729
2790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2730
2791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2731
2792
|
];
|
|
2732
2793
|
}).s("AmazonAthena", "GetNotebookMetadata", {}).n("AthenaClient", "GetNotebookMetadataCommand").f(void 0, void 0).ser(se_GetNotebookMetadataCommand).de(de_GetNotebookMetadataCommand).build() {
|
|
2794
|
+
static {
|
|
2795
|
+
__name(this, "GetNotebookMetadataCommand");
|
|
2796
|
+
}
|
|
2733
2797
|
};
|
|
2734
|
-
__name(_GetNotebookMetadataCommand, "GetNotebookMetadataCommand");
|
|
2735
|
-
var GetNotebookMetadataCommand = _GetNotebookMetadataCommand;
|
|
2736
2798
|
|
|
2737
2799
|
// src/commands/GetPreparedStatementCommand.ts
|
|
2738
2800
|
|
|
2739
2801
|
|
|
2740
2802
|
|
|
2741
|
-
var
|
|
2803
|
+
var GetPreparedStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2742
2804
|
return [
|
|
2743
2805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2744
2806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2745
2807
|
];
|
|
2746
2808
|
}).s("AmazonAthena", "GetPreparedStatement", {}).n("AthenaClient", "GetPreparedStatementCommand").f(void 0, void 0).ser(se_GetPreparedStatementCommand).de(de_GetPreparedStatementCommand).build() {
|
|
2809
|
+
static {
|
|
2810
|
+
__name(this, "GetPreparedStatementCommand");
|
|
2811
|
+
}
|
|
2747
2812
|
};
|
|
2748
|
-
__name(_GetPreparedStatementCommand, "GetPreparedStatementCommand");
|
|
2749
|
-
var GetPreparedStatementCommand = _GetPreparedStatementCommand;
|
|
2750
2813
|
|
|
2751
2814
|
// src/commands/GetQueryExecutionCommand.ts
|
|
2752
2815
|
|
|
2753
2816
|
|
|
2754
2817
|
|
|
2755
|
-
var
|
|
2818
|
+
var GetQueryExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2756
2819
|
return [
|
|
2757
2820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2758
2821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2759
2822
|
];
|
|
2760
2823
|
}).s("AmazonAthena", "GetQueryExecution", {}).n("AthenaClient", "GetQueryExecutionCommand").f(void 0, void 0).ser(se_GetQueryExecutionCommand).de(de_GetQueryExecutionCommand).build() {
|
|
2824
|
+
static {
|
|
2825
|
+
__name(this, "GetQueryExecutionCommand");
|
|
2826
|
+
}
|
|
2761
2827
|
};
|
|
2762
|
-
__name(_GetQueryExecutionCommand, "GetQueryExecutionCommand");
|
|
2763
|
-
var GetQueryExecutionCommand = _GetQueryExecutionCommand;
|
|
2764
2828
|
|
|
2765
2829
|
// src/commands/GetQueryResultsCommand.ts
|
|
2766
2830
|
|
|
2767
2831
|
|
|
2768
2832
|
|
|
2769
|
-
var
|
|
2833
|
+
var GetQueryResultsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2770
2834
|
return [
|
|
2771
2835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2772
2836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2773
2837
|
];
|
|
2774
2838
|
}).s("AmazonAthena", "GetQueryResults", {}).n("AthenaClient", "GetQueryResultsCommand").f(void 0, void 0).ser(se_GetQueryResultsCommand).de(de_GetQueryResultsCommand).build() {
|
|
2839
|
+
static {
|
|
2840
|
+
__name(this, "GetQueryResultsCommand");
|
|
2841
|
+
}
|
|
2775
2842
|
};
|
|
2776
|
-
__name(_GetQueryResultsCommand, "GetQueryResultsCommand");
|
|
2777
|
-
var GetQueryResultsCommand = _GetQueryResultsCommand;
|
|
2778
2843
|
|
|
2779
2844
|
// src/commands/GetQueryRuntimeStatisticsCommand.ts
|
|
2780
2845
|
|
|
2781
2846
|
|
|
2782
2847
|
|
|
2783
|
-
var
|
|
2848
|
+
var GetQueryRuntimeStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2784
2849
|
return [
|
|
2785
2850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2786
2851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2787
2852
|
];
|
|
2788
2853
|
}).s("AmazonAthena", "GetQueryRuntimeStatistics", {}).n("AthenaClient", "GetQueryRuntimeStatisticsCommand").f(void 0, void 0).ser(se_GetQueryRuntimeStatisticsCommand).de(de_GetQueryRuntimeStatisticsCommand).build() {
|
|
2854
|
+
static {
|
|
2855
|
+
__name(this, "GetQueryRuntimeStatisticsCommand");
|
|
2856
|
+
}
|
|
2789
2857
|
};
|
|
2790
|
-
__name(_GetQueryRuntimeStatisticsCommand, "GetQueryRuntimeStatisticsCommand");
|
|
2791
|
-
var GetQueryRuntimeStatisticsCommand = _GetQueryRuntimeStatisticsCommand;
|
|
2792
2858
|
|
|
2793
2859
|
// src/commands/GetSessionCommand.ts
|
|
2794
2860
|
|
|
2795
2861
|
|
|
2796
2862
|
|
|
2797
|
-
var
|
|
2863
|
+
var GetSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2798
2864
|
return [
|
|
2799
2865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2800
2866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2801
2867
|
];
|
|
2802
2868
|
}).s("AmazonAthena", "GetSession", {}).n("AthenaClient", "GetSessionCommand").f(void 0, void 0).ser(se_GetSessionCommand).de(de_GetSessionCommand).build() {
|
|
2869
|
+
static {
|
|
2870
|
+
__name(this, "GetSessionCommand");
|
|
2871
|
+
}
|
|
2803
2872
|
};
|
|
2804
|
-
__name(_GetSessionCommand, "GetSessionCommand");
|
|
2805
|
-
var GetSessionCommand = _GetSessionCommand;
|
|
2806
2873
|
|
|
2807
2874
|
// src/commands/GetSessionStatusCommand.ts
|
|
2808
2875
|
|
|
2809
2876
|
|
|
2810
2877
|
|
|
2811
|
-
var
|
|
2878
|
+
var GetSessionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2812
2879
|
return [
|
|
2813
2880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2814
2881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2815
2882
|
];
|
|
2816
2883
|
}).s("AmazonAthena", "GetSessionStatus", {}).n("AthenaClient", "GetSessionStatusCommand").f(void 0, void 0).ser(se_GetSessionStatusCommand).de(de_GetSessionStatusCommand).build() {
|
|
2884
|
+
static {
|
|
2885
|
+
__name(this, "GetSessionStatusCommand");
|
|
2886
|
+
}
|
|
2817
2887
|
};
|
|
2818
|
-
__name(_GetSessionStatusCommand, "GetSessionStatusCommand");
|
|
2819
|
-
var GetSessionStatusCommand = _GetSessionStatusCommand;
|
|
2820
2888
|
|
|
2821
2889
|
// src/commands/GetTableMetadataCommand.ts
|
|
2822
2890
|
|
|
2823
2891
|
|
|
2824
2892
|
|
|
2825
|
-
var
|
|
2893
|
+
var GetTableMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2826
2894
|
return [
|
|
2827
2895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2828
2896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2829
2897
|
];
|
|
2830
2898
|
}).s("AmazonAthena", "GetTableMetadata", {}).n("AthenaClient", "GetTableMetadataCommand").f(void 0, void 0).ser(se_GetTableMetadataCommand).de(de_GetTableMetadataCommand).build() {
|
|
2899
|
+
static {
|
|
2900
|
+
__name(this, "GetTableMetadataCommand");
|
|
2901
|
+
}
|
|
2831
2902
|
};
|
|
2832
|
-
__name(_GetTableMetadataCommand, "GetTableMetadataCommand");
|
|
2833
|
-
var GetTableMetadataCommand = _GetTableMetadataCommand;
|
|
2834
2903
|
|
|
2835
2904
|
// src/commands/GetWorkGroupCommand.ts
|
|
2836
2905
|
|
|
2837
2906
|
|
|
2838
2907
|
|
|
2839
|
-
var
|
|
2908
|
+
var GetWorkGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2840
2909
|
return [
|
|
2841
2910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2842
2911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2843
2912
|
];
|
|
2844
2913
|
}).s("AmazonAthena", "GetWorkGroup", {}).n("AthenaClient", "GetWorkGroupCommand").f(void 0, void 0).ser(se_GetWorkGroupCommand).de(de_GetWorkGroupCommand).build() {
|
|
2914
|
+
static {
|
|
2915
|
+
__name(this, "GetWorkGroupCommand");
|
|
2916
|
+
}
|
|
2845
2917
|
};
|
|
2846
|
-
__name(_GetWorkGroupCommand, "GetWorkGroupCommand");
|
|
2847
|
-
var GetWorkGroupCommand = _GetWorkGroupCommand;
|
|
2848
2918
|
|
|
2849
2919
|
// src/commands/ImportNotebookCommand.ts
|
|
2850
2920
|
|
|
2851
2921
|
|
|
2852
2922
|
|
|
2853
|
-
var
|
|
2923
|
+
var ImportNotebookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2854
2924
|
return [
|
|
2855
2925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2856
2926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2857
2927
|
];
|
|
2858
2928
|
}).s("AmazonAthena", "ImportNotebook", {}).n("AthenaClient", "ImportNotebookCommand").f(void 0, void 0).ser(se_ImportNotebookCommand).de(de_ImportNotebookCommand).build() {
|
|
2929
|
+
static {
|
|
2930
|
+
__name(this, "ImportNotebookCommand");
|
|
2931
|
+
}
|
|
2859
2932
|
};
|
|
2860
|
-
__name(_ImportNotebookCommand, "ImportNotebookCommand");
|
|
2861
|
-
var ImportNotebookCommand = _ImportNotebookCommand;
|
|
2862
2933
|
|
|
2863
2934
|
// src/commands/ListApplicationDPUSizesCommand.ts
|
|
2864
2935
|
|
|
2865
2936
|
|
|
2866
2937
|
|
|
2867
|
-
var
|
|
2938
|
+
var ListApplicationDPUSizesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2868
2939
|
return [
|
|
2869
2940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2870
2941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2871
2942
|
];
|
|
2872
2943
|
}).s("AmazonAthena", "ListApplicationDPUSizes", {}).n("AthenaClient", "ListApplicationDPUSizesCommand").f(void 0, void 0).ser(se_ListApplicationDPUSizesCommand).de(de_ListApplicationDPUSizesCommand).build() {
|
|
2944
|
+
static {
|
|
2945
|
+
__name(this, "ListApplicationDPUSizesCommand");
|
|
2946
|
+
}
|
|
2873
2947
|
};
|
|
2874
|
-
__name(_ListApplicationDPUSizesCommand, "ListApplicationDPUSizesCommand");
|
|
2875
|
-
var ListApplicationDPUSizesCommand = _ListApplicationDPUSizesCommand;
|
|
2876
2948
|
|
|
2877
2949
|
// src/commands/ListCalculationExecutionsCommand.ts
|
|
2878
2950
|
|
|
2879
2951
|
|
|
2880
2952
|
|
|
2881
|
-
var
|
|
2953
|
+
var ListCalculationExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2882
2954
|
return [
|
|
2883
2955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2884
2956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2885
2957
|
];
|
|
2886
2958
|
}).s("AmazonAthena", "ListCalculationExecutions", {}).n("AthenaClient", "ListCalculationExecutionsCommand").f(void 0, void 0).ser(se_ListCalculationExecutionsCommand).de(de_ListCalculationExecutionsCommand).build() {
|
|
2959
|
+
static {
|
|
2960
|
+
__name(this, "ListCalculationExecutionsCommand");
|
|
2961
|
+
}
|
|
2887
2962
|
};
|
|
2888
|
-
__name(_ListCalculationExecutionsCommand, "ListCalculationExecutionsCommand");
|
|
2889
|
-
var ListCalculationExecutionsCommand = _ListCalculationExecutionsCommand;
|
|
2890
2963
|
|
|
2891
2964
|
// src/commands/ListCapacityReservationsCommand.ts
|
|
2892
2965
|
|
|
2893
2966
|
|
|
2894
2967
|
|
|
2895
|
-
var
|
|
2968
|
+
var ListCapacityReservationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2896
2969
|
return [
|
|
2897
2970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2898
2971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2899
2972
|
];
|
|
2900
2973
|
}).s("AmazonAthena", "ListCapacityReservations", {}).n("AthenaClient", "ListCapacityReservationsCommand").f(void 0, void 0).ser(se_ListCapacityReservationsCommand).de(de_ListCapacityReservationsCommand).build() {
|
|
2974
|
+
static {
|
|
2975
|
+
__name(this, "ListCapacityReservationsCommand");
|
|
2976
|
+
}
|
|
2901
2977
|
};
|
|
2902
|
-
__name(_ListCapacityReservationsCommand, "ListCapacityReservationsCommand");
|
|
2903
|
-
var ListCapacityReservationsCommand = _ListCapacityReservationsCommand;
|
|
2904
2978
|
|
|
2905
2979
|
// src/commands/ListDatabasesCommand.ts
|
|
2906
2980
|
|
|
2907
2981
|
|
|
2908
2982
|
|
|
2909
|
-
var
|
|
2983
|
+
var ListDatabasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2910
2984
|
return [
|
|
2911
2985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2912
2986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2913
2987
|
];
|
|
2914
2988
|
}).s("AmazonAthena", "ListDatabases", {}).n("AthenaClient", "ListDatabasesCommand").f(void 0, void 0).ser(se_ListDatabasesCommand).de(de_ListDatabasesCommand).build() {
|
|
2989
|
+
static {
|
|
2990
|
+
__name(this, "ListDatabasesCommand");
|
|
2991
|
+
}
|
|
2915
2992
|
};
|
|
2916
|
-
__name(_ListDatabasesCommand, "ListDatabasesCommand");
|
|
2917
|
-
var ListDatabasesCommand = _ListDatabasesCommand;
|
|
2918
2993
|
|
|
2919
2994
|
// src/commands/ListDataCatalogsCommand.ts
|
|
2920
2995
|
|
|
2921
2996
|
|
|
2922
2997
|
|
|
2923
|
-
var
|
|
2998
|
+
var ListDataCatalogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2924
2999
|
return [
|
|
2925
3000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2926
3001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2927
3002
|
];
|
|
2928
3003
|
}).s("AmazonAthena", "ListDataCatalogs", {}).n("AthenaClient", "ListDataCatalogsCommand").f(void 0, void 0).ser(se_ListDataCatalogsCommand).de(de_ListDataCatalogsCommand).build() {
|
|
3004
|
+
static {
|
|
3005
|
+
__name(this, "ListDataCatalogsCommand");
|
|
3006
|
+
}
|
|
2929
3007
|
};
|
|
2930
|
-
__name(_ListDataCatalogsCommand, "ListDataCatalogsCommand");
|
|
2931
|
-
var ListDataCatalogsCommand = _ListDataCatalogsCommand;
|
|
2932
3008
|
|
|
2933
3009
|
// src/commands/ListEngineVersionsCommand.ts
|
|
2934
3010
|
|
|
2935
3011
|
|
|
2936
3012
|
|
|
2937
|
-
var
|
|
3013
|
+
var ListEngineVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2938
3014
|
return [
|
|
2939
3015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2940
3016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2941
3017
|
];
|
|
2942
3018
|
}).s("AmazonAthena", "ListEngineVersions", {}).n("AthenaClient", "ListEngineVersionsCommand").f(void 0, void 0).ser(se_ListEngineVersionsCommand).de(de_ListEngineVersionsCommand).build() {
|
|
3019
|
+
static {
|
|
3020
|
+
__name(this, "ListEngineVersionsCommand");
|
|
3021
|
+
}
|
|
2943
3022
|
};
|
|
2944
|
-
__name(_ListEngineVersionsCommand, "ListEngineVersionsCommand");
|
|
2945
|
-
var ListEngineVersionsCommand = _ListEngineVersionsCommand;
|
|
2946
3023
|
|
|
2947
3024
|
// src/commands/ListExecutorsCommand.ts
|
|
2948
3025
|
|
|
2949
3026
|
|
|
2950
3027
|
|
|
2951
|
-
var
|
|
3028
|
+
var ListExecutorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2952
3029
|
return [
|
|
2953
3030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2954
3031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2955
3032
|
];
|
|
2956
3033
|
}).s("AmazonAthena", "ListExecutors", {}).n("AthenaClient", "ListExecutorsCommand").f(void 0, void 0).ser(se_ListExecutorsCommand).de(de_ListExecutorsCommand).build() {
|
|
3034
|
+
static {
|
|
3035
|
+
__name(this, "ListExecutorsCommand");
|
|
3036
|
+
}
|
|
2957
3037
|
};
|
|
2958
|
-
__name(_ListExecutorsCommand, "ListExecutorsCommand");
|
|
2959
|
-
var ListExecutorsCommand = _ListExecutorsCommand;
|
|
2960
3038
|
|
|
2961
3039
|
// src/commands/ListNamedQueriesCommand.ts
|
|
2962
3040
|
|
|
2963
3041
|
|
|
2964
3042
|
|
|
2965
|
-
var
|
|
3043
|
+
var ListNamedQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2966
3044
|
return [
|
|
2967
3045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2968
3046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2969
3047
|
];
|
|
2970
3048
|
}).s("AmazonAthena", "ListNamedQueries", {}).n("AthenaClient", "ListNamedQueriesCommand").f(void 0, void 0).ser(se_ListNamedQueriesCommand).de(de_ListNamedQueriesCommand).build() {
|
|
3049
|
+
static {
|
|
3050
|
+
__name(this, "ListNamedQueriesCommand");
|
|
3051
|
+
}
|
|
2971
3052
|
};
|
|
2972
|
-
__name(_ListNamedQueriesCommand, "ListNamedQueriesCommand");
|
|
2973
|
-
var ListNamedQueriesCommand = _ListNamedQueriesCommand;
|
|
2974
3053
|
|
|
2975
3054
|
// src/commands/ListNotebookMetadataCommand.ts
|
|
2976
3055
|
|
|
2977
3056
|
|
|
2978
3057
|
|
|
2979
|
-
var
|
|
3058
|
+
var ListNotebookMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2980
3059
|
return [
|
|
2981
3060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2982
3061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2983
3062
|
];
|
|
2984
3063
|
}).s("AmazonAthena", "ListNotebookMetadata", {}).n("AthenaClient", "ListNotebookMetadataCommand").f(void 0, void 0).ser(se_ListNotebookMetadataCommand).de(de_ListNotebookMetadataCommand).build() {
|
|
3064
|
+
static {
|
|
3065
|
+
__name(this, "ListNotebookMetadataCommand");
|
|
3066
|
+
}
|
|
2985
3067
|
};
|
|
2986
|
-
__name(_ListNotebookMetadataCommand, "ListNotebookMetadataCommand");
|
|
2987
|
-
var ListNotebookMetadataCommand = _ListNotebookMetadataCommand;
|
|
2988
3068
|
|
|
2989
3069
|
// src/commands/ListNotebookSessionsCommand.ts
|
|
2990
3070
|
|
|
2991
3071
|
|
|
2992
3072
|
|
|
2993
|
-
var
|
|
3073
|
+
var ListNotebookSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2994
3074
|
return [
|
|
2995
3075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2996
3076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2997
3077
|
];
|
|
2998
3078
|
}).s("AmazonAthena", "ListNotebookSessions", {}).n("AthenaClient", "ListNotebookSessionsCommand").f(void 0, void 0).ser(se_ListNotebookSessionsCommand).de(de_ListNotebookSessionsCommand).build() {
|
|
3079
|
+
static {
|
|
3080
|
+
__name(this, "ListNotebookSessionsCommand");
|
|
3081
|
+
}
|
|
2999
3082
|
};
|
|
3000
|
-
__name(_ListNotebookSessionsCommand, "ListNotebookSessionsCommand");
|
|
3001
|
-
var ListNotebookSessionsCommand = _ListNotebookSessionsCommand;
|
|
3002
3083
|
|
|
3003
3084
|
// src/commands/ListPreparedStatementsCommand.ts
|
|
3004
3085
|
|
|
3005
3086
|
|
|
3006
3087
|
|
|
3007
|
-
var
|
|
3088
|
+
var ListPreparedStatementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3008
3089
|
return [
|
|
3009
3090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3010
3091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3011
3092
|
];
|
|
3012
3093
|
}).s("AmazonAthena", "ListPreparedStatements", {}).n("AthenaClient", "ListPreparedStatementsCommand").f(void 0, void 0).ser(se_ListPreparedStatementsCommand).de(de_ListPreparedStatementsCommand).build() {
|
|
3094
|
+
static {
|
|
3095
|
+
__name(this, "ListPreparedStatementsCommand");
|
|
3096
|
+
}
|
|
3013
3097
|
};
|
|
3014
|
-
__name(_ListPreparedStatementsCommand, "ListPreparedStatementsCommand");
|
|
3015
|
-
var ListPreparedStatementsCommand = _ListPreparedStatementsCommand;
|
|
3016
3098
|
|
|
3017
3099
|
// src/commands/ListQueryExecutionsCommand.ts
|
|
3018
3100
|
|
|
3019
3101
|
|
|
3020
3102
|
|
|
3021
|
-
var
|
|
3103
|
+
var ListQueryExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3022
3104
|
return [
|
|
3023
3105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3024
3106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3025
3107
|
];
|
|
3026
3108
|
}).s("AmazonAthena", "ListQueryExecutions", {}).n("AthenaClient", "ListQueryExecutionsCommand").f(void 0, void 0).ser(se_ListQueryExecutionsCommand).de(de_ListQueryExecutionsCommand).build() {
|
|
3109
|
+
static {
|
|
3110
|
+
__name(this, "ListQueryExecutionsCommand");
|
|
3111
|
+
}
|
|
3027
3112
|
};
|
|
3028
|
-
__name(_ListQueryExecutionsCommand, "ListQueryExecutionsCommand");
|
|
3029
|
-
var ListQueryExecutionsCommand = _ListQueryExecutionsCommand;
|
|
3030
3113
|
|
|
3031
3114
|
// src/commands/ListSessionsCommand.ts
|
|
3032
3115
|
|
|
3033
3116
|
|
|
3034
3117
|
|
|
3035
|
-
var
|
|
3118
|
+
var ListSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3036
3119
|
return [
|
|
3037
3120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3038
3121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3039
3122
|
];
|
|
3040
3123
|
}).s("AmazonAthena", "ListSessions", {}).n("AthenaClient", "ListSessionsCommand").f(void 0, void 0).ser(se_ListSessionsCommand).de(de_ListSessionsCommand).build() {
|
|
3124
|
+
static {
|
|
3125
|
+
__name(this, "ListSessionsCommand");
|
|
3126
|
+
}
|
|
3041
3127
|
};
|
|
3042
|
-
__name(_ListSessionsCommand, "ListSessionsCommand");
|
|
3043
|
-
var ListSessionsCommand = _ListSessionsCommand;
|
|
3044
3128
|
|
|
3045
3129
|
// src/commands/ListTableMetadataCommand.ts
|
|
3046
3130
|
|
|
3047
3131
|
|
|
3048
3132
|
|
|
3049
|
-
var
|
|
3133
|
+
var ListTableMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3050
3134
|
return [
|
|
3051
3135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3052
3136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3053
3137
|
];
|
|
3054
3138
|
}).s("AmazonAthena", "ListTableMetadata", {}).n("AthenaClient", "ListTableMetadataCommand").f(void 0, void 0).ser(se_ListTableMetadataCommand).de(de_ListTableMetadataCommand).build() {
|
|
3139
|
+
static {
|
|
3140
|
+
__name(this, "ListTableMetadataCommand");
|
|
3141
|
+
}
|
|
3055
3142
|
};
|
|
3056
|
-
__name(_ListTableMetadataCommand, "ListTableMetadataCommand");
|
|
3057
|
-
var ListTableMetadataCommand = _ListTableMetadataCommand;
|
|
3058
3143
|
|
|
3059
3144
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3060
3145
|
|
|
3061
3146
|
|
|
3062
3147
|
|
|
3063
|
-
var
|
|
3148
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3064
3149
|
return [
|
|
3065
3150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3066
3151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3067
3152
|
];
|
|
3068
3153
|
}).s("AmazonAthena", "ListTagsForResource", {}).n("AthenaClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3154
|
+
static {
|
|
3155
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3156
|
+
}
|
|
3069
3157
|
};
|
|
3070
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3071
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3072
3158
|
|
|
3073
3159
|
// src/commands/ListWorkGroupsCommand.ts
|
|
3074
3160
|
|
|
3075
3161
|
|
|
3076
3162
|
|
|
3077
|
-
var
|
|
3163
|
+
var ListWorkGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3078
3164
|
return [
|
|
3079
3165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3080
3166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3081
3167
|
];
|
|
3082
3168
|
}).s("AmazonAthena", "ListWorkGroups", {}).n("AthenaClient", "ListWorkGroupsCommand").f(void 0, void 0).ser(se_ListWorkGroupsCommand).de(de_ListWorkGroupsCommand).build() {
|
|
3169
|
+
static {
|
|
3170
|
+
__name(this, "ListWorkGroupsCommand");
|
|
3171
|
+
}
|
|
3083
3172
|
};
|
|
3084
|
-
__name(_ListWorkGroupsCommand, "ListWorkGroupsCommand");
|
|
3085
|
-
var ListWorkGroupsCommand = _ListWorkGroupsCommand;
|
|
3086
3173
|
|
|
3087
3174
|
// src/commands/PutCapacityAssignmentConfigurationCommand.ts
|
|
3088
3175
|
|
|
3089
3176
|
|
|
3090
3177
|
|
|
3091
|
-
var
|
|
3178
|
+
var PutCapacityAssignmentConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3092
3179
|
return [
|
|
3093
3180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3094
3181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3095
3182
|
];
|
|
3096
3183
|
}).s("AmazonAthena", "PutCapacityAssignmentConfiguration", {}).n("AthenaClient", "PutCapacityAssignmentConfigurationCommand").f(void 0, void 0).ser(se_PutCapacityAssignmentConfigurationCommand).de(de_PutCapacityAssignmentConfigurationCommand).build() {
|
|
3184
|
+
static {
|
|
3185
|
+
__name(this, "PutCapacityAssignmentConfigurationCommand");
|
|
3186
|
+
}
|
|
3097
3187
|
};
|
|
3098
|
-
__name(_PutCapacityAssignmentConfigurationCommand, "PutCapacityAssignmentConfigurationCommand");
|
|
3099
|
-
var PutCapacityAssignmentConfigurationCommand = _PutCapacityAssignmentConfigurationCommand;
|
|
3100
3188
|
|
|
3101
3189
|
// src/commands/StartCalculationExecutionCommand.ts
|
|
3102
3190
|
|
|
3103
3191
|
|
|
3104
3192
|
|
|
3105
|
-
var
|
|
3193
|
+
var StartCalculationExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3106
3194
|
return [
|
|
3107
3195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3108
3196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3109
3197
|
];
|
|
3110
3198
|
}).s("AmazonAthena", "StartCalculationExecution", {}).n("AthenaClient", "StartCalculationExecutionCommand").f(void 0, void 0).ser(se_StartCalculationExecutionCommand).de(de_StartCalculationExecutionCommand).build() {
|
|
3199
|
+
static {
|
|
3200
|
+
__name(this, "StartCalculationExecutionCommand");
|
|
3201
|
+
}
|
|
3111
3202
|
};
|
|
3112
|
-
__name(_StartCalculationExecutionCommand, "StartCalculationExecutionCommand");
|
|
3113
|
-
var StartCalculationExecutionCommand = _StartCalculationExecutionCommand;
|
|
3114
3203
|
|
|
3115
3204
|
// src/commands/StartQueryExecutionCommand.ts
|
|
3116
3205
|
|
|
3117
3206
|
|
|
3118
3207
|
|
|
3119
|
-
var
|
|
3208
|
+
var StartQueryExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3120
3209
|
return [
|
|
3121
3210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3122
3211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3123
3212
|
];
|
|
3124
3213
|
}).s("AmazonAthena", "StartQueryExecution", {}).n("AthenaClient", "StartQueryExecutionCommand").f(void 0, void 0).ser(se_StartQueryExecutionCommand).de(de_StartQueryExecutionCommand).build() {
|
|
3214
|
+
static {
|
|
3215
|
+
__name(this, "StartQueryExecutionCommand");
|
|
3216
|
+
}
|
|
3125
3217
|
};
|
|
3126
|
-
__name(_StartQueryExecutionCommand, "StartQueryExecutionCommand");
|
|
3127
|
-
var StartQueryExecutionCommand = _StartQueryExecutionCommand;
|
|
3128
3218
|
|
|
3129
3219
|
// src/commands/StartSessionCommand.ts
|
|
3130
3220
|
|
|
3131
3221
|
|
|
3132
3222
|
|
|
3133
|
-
var
|
|
3223
|
+
var StartSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3134
3224
|
return [
|
|
3135
3225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3136
3226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3137
3227
|
];
|
|
3138
3228
|
}).s("AmazonAthena", "StartSession", {}).n("AthenaClient", "StartSessionCommand").f(void 0, void 0).ser(se_StartSessionCommand).de(de_StartSessionCommand).build() {
|
|
3229
|
+
static {
|
|
3230
|
+
__name(this, "StartSessionCommand");
|
|
3231
|
+
}
|
|
3139
3232
|
};
|
|
3140
|
-
__name(_StartSessionCommand, "StartSessionCommand");
|
|
3141
|
-
var StartSessionCommand = _StartSessionCommand;
|
|
3142
3233
|
|
|
3143
3234
|
// src/commands/StopCalculationExecutionCommand.ts
|
|
3144
3235
|
|
|
3145
3236
|
|
|
3146
3237
|
|
|
3147
|
-
var
|
|
3238
|
+
var StopCalculationExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3148
3239
|
return [
|
|
3149
3240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3150
3241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3151
3242
|
];
|
|
3152
3243
|
}).s("AmazonAthena", "StopCalculationExecution", {}).n("AthenaClient", "StopCalculationExecutionCommand").f(void 0, void 0).ser(se_StopCalculationExecutionCommand).de(de_StopCalculationExecutionCommand).build() {
|
|
3244
|
+
static {
|
|
3245
|
+
__name(this, "StopCalculationExecutionCommand");
|
|
3246
|
+
}
|
|
3153
3247
|
};
|
|
3154
|
-
__name(_StopCalculationExecutionCommand, "StopCalculationExecutionCommand");
|
|
3155
|
-
var StopCalculationExecutionCommand = _StopCalculationExecutionCommand;
|
|
3156
3248
|
|
|
3157
3249
|
// src/commands/StopQueryExecutionCommand.ts
|
|
3158
3250
|
|
|
3159
3251
|
|
|
3160
3252
|
|
|
3161
|
-
var
|
|
3253
|
+
var StopQueryExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3162
3254
|
return [
|
|
3163
3255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3164
3256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3165
3257
|
];
|
|
3166
3258
|
}).s("AmazonAthena", "StopQueryExecution", {}).n("AthenaClient", "StopQueryExecutionCommand").f(void 0, void 0).ser(se_StopQueryExecutionCommand).de(de_StopQueryExecutionCommand).build() {
|
|
3259
|
+
static {
|
|
3260
|
+
__name(this, "StopQueryExecutionCommand");
|
|
3261
|
+
}
|
|
3167
3262
|
};
|
|
3168
|
-
__name(_StopQueryExecutionCommand, "StopQueryExecutionCommand");
|
|
3169
|
-
var StopQueryExecutionCommand = _StopQueryExecutionCommand;
|
|
3170
3263
|
|
|
3171
3264
|
// src/commands/TagResourceCommand.ts
|
|
3172
3265
|
|
|
3173
3266
|
|
|
3174
3267
|
|
|
3175
|
-
var
|
|
3268
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3176
3269
|
return [
|
|
3177
3270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3178
3271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3179
3272
|
];
|
|
3180
3273
|
}).s("AmazonAthena", "TagResource", {}).n("AthenaClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3274
|
+
static {
|
|
3275
|
+
__name(this, "TagResourceCommand");
|
|
3276
|
+
}
|
|
3181
3277
|
};
|
|
3182
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3183
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3184
3278
|
|
|
3185
3279
|
// src/commands/TerminateSessionCommand.ts
|
|
3186
3280
|
|
|
3187
3281
|
|
|
3188
3282
|
|
|
3189
|
-
var
|
|
3283
|
+
var TerminateSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3190
3284
|
return [
|
|
3191
3285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3192
3286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3193
3287
|
];
|
|
3194
3288
|
}).s("AmazonAthena", "TerminateSession", {}).n("AthenaClient", "TerminateSessionCommand").f(void 0, void 0).ser(se_TerminateSessionCommand).de(de_TerminateSessionCommand).build() {
|
|
3289
|
+
static {
|
|
3290
|
+
__name(this, "TerminateSessionCommand");
|
|
3291
|
+
}
|
|
3195
3292
|
};
|
|
3196
|
-
__name(_TerminateSessionCommand, "TerminateSessionCommand");
|
|
3197
|
-
var TerminateSessionCommand = _TerminateSessionCommand;
|
|
3198
3293
|
|
|
3199
3294
|
// src/commands/UntagResourceCommand.ts
|
|
3200
3295
|
|
|
3201
3296
|
|
|
3202
3297
|
|
|
3203
|
-
var
|
|
3298
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3204
3299
|
return [
|
|
3205
3300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3206
3301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3207
3302
|
];
|
|
3208
3303
|
}).s("AmazonAthena", "UntagResource", {}).n("AthenaClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3304
|
+
static {
|
|
3305
|
+
__name(this, "UntagResourceCommand");
|
|
3306
|
+
}
|
|
3209
3307
|
};
|
|
3210
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3211
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3212
3308
|
|
|
3213
3309
|
// src/commands/UpdateCapacityReservationCommand.ts
|
|
3214
3310
|
|
|
3215
3311
|
|
|
3216
3312
|
|
|
3217
|
-
var
|
|
3313
|
+
var UpdateCapacityReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3218
3314
|
return [
|
|
3219
3315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3220
3316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3221
3317
|
];
|
|
3222
3318
|
}).s("AmazonAthena", "UpdateCapacityReservation", {}).n("AthenaClient", "UpdateCapacityReservationCommand").f(void 0, void 0).ser(se_UpdateCapacityReservationCommand).de(de_UpdateCapacityReservationCommand).build() {
|
|
3319
|
+
static {
|
|
3320
|
+
__name(this, "UpdateCapacityReservationCommand");
|
|
3321
|
+
}
|
|
3223
3322
|
};
|
|
3224
|
-
__name(_UpdateCapacityReservationCommand, "UpdateCapacityReservationCommand");
|
|
3225
|
-
var UpdateCapacityReservationCommand = _UpdateCapacityReservationCommand;
|
|
3226
3323
|
|
|
3227
3324
|
// src/commands/UpdateDataCatalogCommand.ts
|
|
3228
3325
|
|
|
3229
3326
|
|
|
3230
3327
|
|
|
3231
|
-
var
|
|
3328
|
+
var UpdateDataCatalogCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3232
3329
|
return [
|
|
3233
3330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3234
3331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3235
3332
|
];
|
|
3236
3333
|
}).s("AmazonAthena", "UpdateDataCatalog", {}).n("AthenaClient", "UpdateDataCatalogCommand").f(void 0, void 0).ser(se_UpdateDataCatalogCommand).de(de_UpdateDataCatalogCommand).build() {
|
|
3334
|
+
static {
|
|
3335
|
+
__name(this, "UpdateDataCatalogCommand");
|
|
3336
|
+
}
|
|
3237
3337
|
};
|
|
3238
|
-
__name(_UpdateDataCatalogCommand, "UpdateDataCatalogCommand");
|
|
3239
|
-
var UpdateDataCatalogCommand = _UpdateDataCatalogCommand;
|
|
3240
3338
|
|
|
3241
3339
|
// src/commands/UpdateNamedQueryCommand.ts
|
|
3242
3340
|
|
|
3243
3341
|
|
|
3244
3342
|
|
|
3245
|
-
var
|
|
3343
|
+
var UpdateNamedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3246
3344
|
return [
|
|
3247
3345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3248
3346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3249
3347
|
];
|
|
3250
3348
|
}).s("AmazonAthena", "UpdateNamedQuery", {}).n("AthenaClient", "UpdateNamedQueryCommand").f(void 0, void 0).ser(se_UpdateNamedQueryCommand).de(de_UpdateNamedQueryCommand).build() {
|
|
3349
|
+
static {
|
|
3350
|
+
__name(this, "UpdateNamedQueryCommand");
|
|
3351
|
+
}
|
|
3251
3352
|
};
|
|
3252
|
-
__name(_UpdateNamedQueryCommand, "UpdateNamedQueryCommand");
|
|
3253
|
-
var UpdateNamedQueryCommand = _UpdateNamedQueryCommand;
|
|
3254
3353
|
|
|
3255
3354
|
// src/commands/UpdateNotebookCommand.ts
|
|
3256
3355
|
|
|
3257
3356
|
|
|
3258
3357
|
|
|
3259
|
-
var
|
|
3358
|
+
var UpdateNotebookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3260
3359
|
return [
|
|
3261
3360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3262
3361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3263
3362
|
];
|
|
3264
3363
|
}).s("AmazonAthena", "UpdateNotebook", {}).n("AthenaClient", "UpdateNotebookCommand").f(void 0, void 0).ser(se_UpdateNotebookCommand).de(de_UpdateNotebookCommand).build() {
|
|
3364
|
+
static {
|
|
3365
|
+
__name(this, "UpdateNotebookCommand");
|
|
3366
|
+
}
|
|
3265
3367
|
};
|
|
3266
|
-
__name(_UpdateNotebookCommand, "UpdateNotebookCommand");
|
|
3267
|
-
var UpdateNotebookCommand = _UpdateNotebookCommand;
|
|
3268
3368
|
|
|
3269
3369
|
// src/commands/UpdateNotebookMetadataCommand.ts
|
|
3270
3370
|
|
|
3271
3371
|
|
|
3272
3372
|
|
|
3273
|
-
var
|
|
3373
|
+
var UpdateNotebookMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3274
3374
|
return [
|
|
3275
3375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3276
3376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3277
3377
|
];
|
|
3278
3378
|
}).s("AmazonAthena", "UpdateNotebookMetadata", {}).n("AthenaClient", "UpdateNotebookMetadataCommand").f(void 0, void 0).ser(se_UpdateNotebookMetadataCommand).de(de_UpdateNotebookMetadataCommand).build() {
|
|
3379
|
+
static {
|
|
3380
|
+
__name(this, "UpdateNotebookMetadataCommand");
|
|
3381
|
+
}
|
|
3279
3382
|
};
|
|
3280
|
-
__name(_UpdateNotebookMetadataCommand, "UpdateNotebookMetadataCommand");
|
|
3281
|
-
var UpdateNotebookMetadataCommand = _UpdateNotebookMetadataCommand;
|
|
3282
3383
|
|
|
3283
3384
|
// src/commands/UpdatePreparedStatementCommand.ts
|
|
3284
3385
|
|
|
3285
3386
|
|
|
3286
3387
|
|
|
3287
|
-
var
|
|
3388
|
+
var UpdatePreparedStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3288
3389
|
return [
|
|
3289
3390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3290
3391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3291
3392
|
];
|
|
3292
3393
|
}).s("AmazonAthena", "UpdatePreparedStatement", {}).n("AthenaClient", "UpdatePreparedStatementCommand").f(void 0, void 0).ser(se_UpdatePreparedStatementCommand).de(de_UpdatePreparedStatementCommand).build() {
|
|
3394
|
+
static {
|
|
3395
|
+
__name(this, "UpdatePreparedStatementCommand");
|
|
3396
|
+
}
|
|
3293
3397
|
};
|
|
3294
|
-
__name(_UpdatePreparedStatementCommand, "UpdatePreparedStatementCommand");
|
|
3295
|
-
var UpdatePreparedStatementCommand = _UpdatePreparedStatementCommand;
|
|
3296
3398
|
|
|
3297
3399
|
// src/commands/UpdateWorkGroupCommand.ts
|
|
3298
3400
|
|
|
3299
3401
|
|
|
3300
3402
|
|
|
3301
|
-
var
|
|
3403
|
+
var UpdateWorkGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3302
3404
|
return [
|
|
3303
3405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3304
3406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3305
3407
|
];
|
|
3306
3408
|
}).s("AmazonAthena", "UpdateWorkGroup", {}).n("AthenaClient", "UpdateWorkGroupCommand").f(void 0, void 0).ser(se_UpdateWorkGroupCommand).de(de_UpdateWorkGroupCommand).build() {
|
|
3409
|
+
static {
|
|
3410
|
+
__name(this, "UpdateWorkGroupCommand");
|
|
3411
|
+
}
|
|
3307
3412
|
};
|
|
3308
|
-
__name(_UpdateWorkGroupCommand, "UpdateWorkGroupCommand");
|
|
3309
|
-
var UpdateWorkGroupCommand = _UpdateWorkGroupCommand;
|
|
3310
3413
|
|
|
3311
3414
|
// src/Athena.ts
|
|
3312
3415
|
var commands = {
|
|
@@ -3379,10 +3482,11 @@ var commands = {
|
|
|
3379
3482
|
UpdatePreparedStatementCommand,
|
|
3380
3483
|
UpdateWorkGroupCommand
|
|
3381
3484
|
};
|
|
3382
|
-
var
|
|
3485
|
+
var Athena = class extends AthenaClient {
|
|
3486
|
+
static {
|
|
3487
|
+
__name(this, "Athena");
|
|
3488
|
+
}
|
|
3383
3489
|
};
|
|
3384
|
-
__name(_Athena, "Athena");
|
|
3385
|
-
var Athena = _Athena;
|
|
3386
3490
|
(0, import_smithy_client.createAggregatedClient)(commands, Athena);
|
|
3387
3491
|
|
|
3388
3492
|
// src/pagination/GetQueryResultsPaginator.ts
|