@aws-sdk/client-iot-events 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.
Files changed (57) hide show
  1. package/dist-cjs/commands/CreateAlarmModelCommand.js +2 -2
  2. package/dist-cjs/commands/CreateDetectorModelCommand.js +2 -2
  3. package/dist-cjs/commands/CreateInputCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteAlarmModelCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteDetectorModelCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteInputCommand.js +2 -2
  7. package/dist-cjs/commands/DescribeAlarmModelCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeDetectorModelAnalysisCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeDetectorModelCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeInputCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeLoggingOptionsCommand.js +2 -2
  12. package/dist-cjs/commands/GetDetectorModelAnalysisResultsCommand.js +2 -2
  13. package/dist-cjs/commands/ListAlarmModelVersionsCommand.js +2 -2
  14. package/dist-cjs/commands/ListAlarmModelsCommand.js +2 -2
  15. package/dist-cjs/commands/ListDetectorModelVersionsCommand.js +2 -2
  16. package/dist-cjs/commands/ListDetectorModelsCommand.js +2 -2
  17. package/dist-cjs/commands/ListInputRoutingsCommand.js +2 -2
  18. package/dist-cjs/commands/ListInputsCommand.js +2 -2
  19. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-cjs/commands/PutLoggingOptionsCommand.js +2 -2
  21. package/dist-cjs/commands/StartDetectorModelAnalysisCommand.js +2 -2
  22. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  24. package/dist-cjs/commands/UpdateAlarmModelCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateDetectorModelCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateInputCommand.js +2 -2
  27. package/dist-cjs/protocols/Aws_restJson1.js +643 -695
  28. package/dist-es/commands/CreateAlarmModelCommand.js +3 -3
  29. package/dist-es/commands/CreateDetectorModelCommand.js +3 -3
  30. package/dist-es/commands/CreateInputCommand.js +3 -3
  31. package/dist-es/commands/DeleteAlarmModelCommand.js +3 -3
  32. package/dist-es/commands/DeleteDetectorModelCommand.js +3 -3
  33. package/dist-es/commands/DeleteInputCommand.js +3 -3
  34. package/dist-es/commands/DescribeAlarmModelCommand.js +3 -3
  35. package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +3 -3
  36. package/dist-es/commands/DescribeDetectorModelCommand.js +3 -3
  37. package/dist-es/commands/DescribeInputCommand.js +3 -3
  38. package/dist-es/commands/DescribeLoggingOptionsCommand.js +3 -3
  39. package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +3 -3
  40. package/dist-es/commands/ListAlarmModelVersionsCommand.js +3 -3
  41. package/dist-es/commands/ListAlarmModelsCommand.js +3 -3
  42. package/dist-es/commands/ListDetectorModelVersionsCommand.js +3 -3
  43. package/dist-es/commands/ListDetectorModelsCommand.js +3 -3
  44. package/dist-es/commands/ListInputRoutingsCommand.js +3 -3
  45. package/dist-es/commands/ListInputsCommand.js +3 -3
  46. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  47. package/dist-es/commands/PutLoggingOptionsCommand.js +3 -3
  48. package/dist-es/commands/StartDetectorModelAnalysisCommand.js +3 -3
  49. package/dist-es/commands/TagResourceCommand.js +3 -3
  50. package/dist-es/commands/UntagResourceCommand.js +3 -3
  51. package/dist-es/commands/UpdateAlarmModelCommand.js +3 -3
  52. package/dist-es/commands/UpdateDetectorModelCommand.js +3 -3
  53. package/dist-es/commands/UpdateInputCommand.js +3 -3
  54. package/dist-es/protocols/Aws_restJson1.js +589 -641
  55. package/dist-types/protocols/Aws_restJson1.d.ts +208 -52
  56. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +52 -52
  57. package/package.json +29 -29
@@ -36,10 +36,10 @@ class CreateAlarmModelCommand 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_restJson1_1.serializeAws_restJson1CreateAlarmModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateAlarmModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateAlarmModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateAlarmModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateAlarmModelCommand = CreateAlarmModelCommand;
@@ -36,10 +36,10 @@ class CreateDetectorModelCommand 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_restJson1_1.serializeAws_restJson1CreateDetectorModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateDetectorModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateDetectorModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateDetectorModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateDetectorModelCommand = CreateDetectorModelCommand;
@@ -36,10 +36,10 @@ class CreateInputCommand 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_restJson1_1.serializeAws_restJson1CreateInputCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateInputCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateInputCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateInputCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateInputCommand = CreateInputCommand;
@@ -36,10 +36,10 @@ class DeleteAlarmModelCommand 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_restJson1_1.serializeAws_restJson1DeleteAlarmModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteAlarmModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteAlarmModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteAlarmModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteAlarmModelCommand = DeleteAlarmModelCommand;
@@ -36,10 +36,10 @@ class DeleteDetectorModelCommand 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_restJson1_1.serializeAws_restJson1DeleteDetectorModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteDetectorModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteDetectorModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteDetectorModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteDetectorModelCommand = DeleteDetectorModelCommand;
@@ -36,10 +36,10 @@ class DeleteInputCommand 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_restJson1_1.serializeAws_restJson1DeleteInputCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteInputCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteInputCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteInputCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteInputCommand = DeleteInputCommand;
@@ -36,10 +36,10 @@ class DescribeAlarmModelCommand 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_restJson1_1.serializeAws_restJson1DescribeAlarmModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DescribeAlarmModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeAlarmModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DescribeAlarmModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DescribeAlarmModelCommand = DescribeAlarmModelCommand;
@@ -36,10 +36,10 @@ class DescribeDetectorModelAnalysisCommand 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_restJson1_1.serializeAws_restJson1DescribeDetectorModelAnalysisCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DescribeDetectorModelAnalysisCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeDetectorModelAnalysisCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DescribeDetectorModelAnalysisCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DescribeDetectorModelAnalysisCommand = DescribeDetectorModelAnalysisCommand;
@@ -36,10 +36,10 @@ class DescribeDetectorModelCommand 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_restJson1_1.serializeAws_restJson1DescribeDetectorModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DescribeDetectorModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeDetectorModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DescribeDetectorModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DescribeDetectorModelCommand = DescribeDetectorModelCommand;
@@ -36,10 +36,10 @@ class DescribeInputCommand 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_restJson1_1.serializeAws_restJson1DescribeInputCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DescribeInputCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeInputCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DescribeInputCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DescribeInputCommand = DescribeInputCommand;
@@ -36,10 +36,10 @@ class DescribeLoggingOptionsCommand 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_restJson1_1.serializeAws_restJson1DescribeLoggingOptionsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DescribeLoggingOptionsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeLoggingOptionsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DescribeLoggingOptionsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DescribeLoggingOptionsCommand = DescribeLoggingOptionsCommand;
@@ -36,10 +36,10 @@ class GetDetectorModelAnalysisResultsCommand 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_restJson1_1.serializeAws_restJson1GetDetectorModelAnalysisResultsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetDetectorModelAnalysisResultsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetDetectorModelAnalysisResultsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetDetectorModelAnalysisResultsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetDetectorModelAnalysisResultsCommand = GetDetectorModelAnalysisResultsCommand;
@@ -36,10 +36,10 @@ class ListAlarmModelVersionsCommand 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_restJson1_1.serializeAws_restJson1ListAlarmModelVersionsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListAlarmModelVersionsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListAlarmModelVersionsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListAlarmModelVersionsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListAlarmModelVersionsCommand = ListAlarmModelVersionsCommand;
@@ -36,10 +36,10 @@ class ListAlarmModelsCommand 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_restJson1_1.serializeAws_restJson1ListAlarmModelsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListAlarmModelsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListAlarmModelsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListAlarmModelsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListAlarmModelsCommand = ListAlarmModelsCommand;
@@ -36,10 +36,10 @@ class ListDetectorModelVersionsCommand 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_restJson1_1.serializeAws_restJson1ListDetectorModelVersionsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListDetectorModelVersionsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListDetectorModelVersionsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListDetectorModelVersionsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListDetectorModelVersionsCommand = ListDetectorModelVersionsCommand;
@@ -36,10 +36,10 @@ class ListDetectorModelsCommand 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_restJson1_1.serializeAws_restJson1ListDetectorModelsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListDetectorModelsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListDetectorModelsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListDetectorModelsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListDetectorModelsCommand = ListDetectorModelsCommand;
@@ -36,10 +36,10 @@ class ListInputRoutingsCommand 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_restJson1_1.serializeAws_restJson1ListInputRoutingsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListInputRoutingsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListInputRoutingsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListInputRoutingsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListInputRoutingsCommand = ListInputRoutingsCommand;
@@ -36,10 +36,10 @@ class ListInputsCommand 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_restJson1_1.serializeAws_restJson1ListInputsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListInputsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListInputsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListInputsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListInputsCommand = ListInputsCommand;
@@ -36,10 +36,10 @@ class ListTagsForResourceCommand 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_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListTagsForResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListTagsForResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -36,10 +36,10 @@ class PutLoggingOptionsCommand 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_restJson1_1.serializeAws_restJson1PutLoggingOptionsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_PutLoggingOptionsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1PutLoggingOptionsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_PutLoggingOptionsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.PutLoggingOptionsCommand = PutLoggingOptionsCommand;
@@ -36,10 +36,10 @@ class StartDetectorModelAnalysisCommand 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_restJson1_1.serializeAws_restJson1StartDetectorModelAnalysisCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_StartDetectorModelAnalysisCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1StartDetectorModelAnalysisCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_StartDetectorModelAnalysisCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.StartDetectorModelAnalysisCommand = StartDetectorModelAnalysisCommand;
@@ -36,10 +36,10 @@ class TagResourceCommand 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_restJson1_1.serializeAws_restJson1TagResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_TagResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_TagResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.TagResourceCommand = TagResourceCommand;
@@ -36,10 +36,10 @@ class UntagResourceCommand 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_restJson1_1.serializeAws_restJson1UntagResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UntagResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UntagResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -36,10 +36,10 @@ class UpdateAlarmModelCommand 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_restJson1_1.serializeAws_restJson1UpdateAlarmModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateAlarmModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateAlarmModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateAlarmModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateAlarmModelCommand = UpdateAlarmModelCommand;
@@ -36,10 +36,10 @@ class UpdateDetectorModelCommand 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_restJson1_1.serializeAws_restJson1UpdateDetectorModelCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateDetectorModelCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDetectorModelCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateDetectorModelCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateDetectorModelCommand = UpdateDetectorModelCommand;
@@ -36,10 +36,10 @@ class UpdateInputCommand 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_restJson1_1.serializeAws_restJson1UpdateInputCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateInputCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateInputCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateInputCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateInputCommand = UpdateInputCommand;