@aws-sdk/client-athena 3.315.0 → 3.319.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 +8 -8
|
@@ -2755,7 +2755,7 @@ const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
|
|
|
2755
2755
|
};
|
|
2756
2756
|
const se_CreateNamedQueryInput = (input, context) => {
|
|
2757
2757
|
return (0, smithy_client_1.take)(input, {
|
|
2758
|
-
ClientRequestToken: (_) => _ ?? (0, uuid_1.v4)(),
|
|
2758
|
+
ClientRequestToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
2759
2759
|
Database: [],
|
|
2760
2760
|
Description: [],
|
|
2761
2761
|
Name: [],
|
|
@@ -2765,12 +2765,12 @@ const se_CreateNamedQueryInput = (input, context) => {
|
|
|
2765
2765
|
};
|
|
2766
2766
|
const se_DeleteNamedQueryInput = (input, context) => {
|
|
2767
2767
|
return (0, smithy_client_1.take)(input, {
|
|
2768
|
-
NamedQueryId: (_) => _ ?? (0, uuid_1.v4)(),
|
|
2768
|
+
NamedQueryId: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
2769
2769
|
});
|
|
2770
2770
|
};
|
|
2771
2771
|
const se_StartQueryExecutionInput = (input, context) => {
|
|
2772
2772
|
return (0, smithy_client_1.take)(input, {
|
|
2773
|
-
ClientRequestToken: (_) => _ ?? (0, uuid_1.v4)(),
|
|
2773
|
+
ClientRequestToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
2774
2774
|
ExecutionParameters: smithy_client_1._json,
|
|
2775
2775
|
QueryExecutionContext: smithy_client_1._json,
|
|
2776
2776
|
QueryString: [],
|
|
@@ -2781,7 +2781,7 @@ const se_StartQueryExecutionInput = (input, context) => {
|
|
|
2781
2781
|
};
|
|
2782
2782
|
const se_StopQueryExecutionInput = (input, context) => {
|
|
2783
2783
|
return (0, smithy_client_1.take)(input, {
|
|
2784
|
-
QueryExecutionId: (_) => _ ?? (0, uuid_1.v4)(),
|
|
2784
|
+
QueryExecutionId: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
2785
2785
|
});
|
|
2786
2786
|
};
|
|
2787
2787
|
const de_BatchGetPreparedStatementOutput = (output, context) => {
|