@aws-sdk/client-athena 3.315.0 → 3.316.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/Athena.js +64 -840
- package/dist-cjs/protocols/Aws_json1_1.js +4 -4
- package/dist-es/Athena.js +64 -840
- package/dist-es/protocols/Aws_json1_1.js +4 -4
- package/dist-types/Athena.d.ts +81 -264
- package/dist-types/ts3.4/Athena.d.ts +2 -1
- package/package.json +6 -6
|
@@ -2630,7 +2630,7 @@ const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
|
|
|
2630
2630
|
};
|
|
2631
2631
|
const se_CreateNamedQueryInput = (input, context) => {
|
|
2632
2632
|
return take(input, {
|
|
2633
|
-
ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
|
|
2633
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2634
2634
|
Database: [],
|
|
2635
2635
|
Description: [],
|
|
2636
2636
|
Name: [],
|
|
@@ -2640,12 +2640,12 @@ const se_CreateNamedQueryInput = (input, context) => {
|
|
|
2640
2640
|
};
|
|
2641
2641
|
const se_DeleteNamedQueryInput = (input, context) => {
|
|
2642
2642
|
return take(input, {
|
|
2643
|
-
NamedQueryId: (_) => _ ?? generateIdempotencyToken(),
|
|
2643
|
+
NamedQueryId: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2644
2644
|
});
|
|
2645
2645
|
};
|
|
2646
2646
|
const se_StartQueryExecutionInput = (input, context) => {
|
|
2647
2647
|
return take(input, {
|
|
2648
|
-
ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
|
|
2648
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2649
2649
|
ExecutionParameters: _json,
|
|
2650
2650
|
QueryExecutionContext: _json,
|
|
2651
2651
|
QueryString: [],
|
|
@@ -2656,7 +2656,7 @@ const se_StartQueryExecutionInput = (input, context) => {
|
|
|
2656
2656
|
};
|
|
2657
2657
|
const se_StopQueryExecutionInput = (input, context) => {
|
|
2658
2658
|
return take(input, {
|
|
2659
|
-
QueryExecutionId: (_) => _ ?? generateIdempotencyToken(),
|
|
2659
|
+
QueryExecutionId: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2660
2660
|
});
|
|
2661
2661
|
};
|
|
2662
2662
|
const de_BatchGetPreparedStatementOutput = (output, context) => {
|