@aws-sdk/client-timestream-query 3.303.0 → 3.309.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/commands/CancelQueryCommand.js +2 -2
- package/dist-cjs/commands/CreateScheduledQueryCommand.js +2 -2
- package/dist-cjs/commands/DeleteScheduledQueryCommand.js +2 -2
- package/dist-cjs/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-cjs/commands/DescribeScheduledQueryCommand.js +2 -2
- package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +2 -2
- package/dist-cjs/commands/ListScheduledQueriesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PrepareQueryCommand.js +2 -2
- package/dist-cjs/commands/QueryCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateScheduledQueryCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_0.js +352 -380
- package/dist-es/commands/CancelQueryCommand.js +3 -3
- package/dist-es/commands/CreateScheduledQueryCommand.js +3 -3
- package/dist-es/commands/DeleteScheduledQueryCommand.js +3 -3
- package/dist-es/commands/DescribeEndpointsCommand.js +3 -3
- package/dist-es/commands/DescribeScheduledQueryCommand.js +3 -3
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +3 -3
- package/dist-es/commands/ListScheduledQueriesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PrepareQueryCommand.js +3 -3
- package/dist-es/commands/QueryCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateScheduledQueryCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_0.js +325 -353
- package/dist-types/protocols/Aws_json1_0.d.ts +104 -26
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +26 -26
- package/package.json +30 -30
|
@@ -38,10 +38,10 @@ class CancelQueryCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_CancelQueryCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_CancelQueryCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.CancelQueryCommand = CancelQueryCommand;
|
|
@@ -39,10 +39,10 @@ class CreateScheduledQueryCommand extends smithy_client_1.Command {
|
|
|
39
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
40
|
}
|
|
41
41
|
serialize(input, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.se_CreateScheduledQueryCommand)(input, context);
|
|
43
43
|
}
|
|
44
44
|
deserialize(output, context) {
|
|
45
|
-
return (0, Aws_json1_0_1.
|
|
45
|
+
return (0, Aws_json1_0_1.de_CreateScheduledQueryCommand)(output, context);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
exports.CreateScheduledQueryCommand = CreateScheduledQueryCommand;
|
|
@@ -38,10 +38,10 @@ class DeleteScheduledQueryCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_DeleteScheduledQueryCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_DeleteScheduledQueryCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeEndpointsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeEndpointsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeEndpointsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeEndpointsCommand = DescribeEndpointsCommand;
|
|
@@ -39,10 +39,10 @@ class DescribeScheduledQueryCommand extends smithy_client_1.Command {
|
|
|
39
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
40
|
}
|
|
41
41
|
serialize(input, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.se_DescribeScheduledQueryCommand)(input, context);
|
|
43
43
|
}
|
|
44
44
|
deserialize(output, context) {
|
|
45
|
-
return (0, Aws_json1_0_1.
|
|
45
|
+
return (0, Aws_json1_0_1.de_DescribeScheduledQueryCommand)(output, context);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
exports.DescribeScheduledQueryCommand = DescribeScheduledQueryCommand;
|
|
@@ -39,10 +39,10 @@ class ExecuteScheduledQueryCommand extends smithy_client_1.Command {
|
|
|
39
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
40
|
}
|
|
41
41
|
serialize(input, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.se_ExecuteScheduledQueryCommand)(input, context);
|
|
43
43
|
}
|
|
44
44
|
deserialize(output, context) {
|
|
45
|
-
return (0, Aws_json1_0_1.
|
|
45
|
+
return (0, Aws_json1_0_1.de_ExecuteScheduledQueryCommand)(output, context);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
exports.ExecuteScheduledQueryCommand = ExecuteScheduledQueryCommand;
|
|
@@ -38,10 +38,10 @@ class ListScheduledQueriesCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_ListScheduledQueriesCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_ListScheduledQueriesCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
@@ -38,10 +38,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_ListTagsForResourceCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_ListTagsForResourceCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -39,10 +39,10 @@ class PrepareQueryCommand extends smithy_client_1.Command {
|
|
|
39
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
40
|
}
|
|
41
41
|
serialize(input, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.se_PrepareQueryCommand)(input, context);
|
|
43
43
|
}
|
|
44
44
|
deserialize(output, context) {
|
|
45
|
-
return (0, Aws_json1_0_1.
|
|
45
|
+
return (0, Aws_json1_0_1.de_PrepareQueryCommand)(output, context);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
exports.PrepareQueryCommand = PrepareQueryCommand;
|
|
@@ -39,10 +39,10 @@ class QueryCommand extends smithy_client_1.Command {
|
|
|
39
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
40
|
}
|
|
41
41
|
serialize(input, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.se_QueryCommand)(input, context);
|
|
43
43
|
}
|
|
44
44
|
deserialize(output, context) {
|
|
45
|
-
return (0, Aws_json1_0_1.
|
|
45
|
+
return (0, Aws_json1_0_1.de_QueryCommand)(output, context);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
exports.QueryCommand = QueryCommand;
|
|
@@ -38,10 +38,10 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_TagResourceCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_TagResourceCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -38,10 +38,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_UntagResourceCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_UntagResourceCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -38,10 +38,10 @@ class UpdateScheduledQueryCommand extends smithy_client_1.Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return (0, Aws_json1_0_1.
|
|
41
|
+
return (0, Aws_json1_0_1.se_UpdateScheduledQueryCommand)(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return (0, Aws_json1_0_1.
|
|
44
|
+
return (0, Aws_json1_0_1.de_UpdateScheduledQueryCommand)(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.UpdateScheduledQueryCommand = UpdateScheduledQueryCommand;
|