@aws-sdk/client-rolesanywhere 3.306.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/CreateProfileCommand.js +2 -2
  2. package/dist-cjs/commands/CreateTrustAnchorCommand.js +2 -2
  3. package/dist-cjs/commands/DeleteCrlCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteProfileCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteTrustAnchorCommand.js +2 -2
  6. package/dist-cjs/commands/DisableCrlCommand.js +2 -2
  7. package/dist-cjs/commands/DisableProfileCommand.js +2 -2
  8. package/dist-cjs/commands/DisableTrustAnchorCommand.js +2 -2
  9. package/dist-cjs/commands/EnableCrlCommand.js +2 -2
  10. package/dist-cjs/commands/EnableProfileCommand.js +2 -2
  11. package/dist-cjs/commands/EnableTrustAnchorCommand.js +2 -2
  12. package/dist-cjs/commands/GetCrlCommand.js +2 -2
  13. package/dist-cjs/commands/GetProfileCommand.js +2 -2
  14. package/dist-cjs/commands/GetSubjectCommand.js +2 -2
  15. package/dist-cjs/commands/GetTrustAnchorCommand.js +2 -2
  16. package/dist-cjs/commands/ImportCrlCommand.js +2 -2
  17. package/dist-cjs/commands/ListCrlsCommand.js +2 -2
  18. package/dist-cjs/commands/ListProfilesCommand.js +2 -2
  19. package/dist-cjs/commands/ListSubjectsCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/ListTrustAnchorsCommand.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/UpdateCrlCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateProfileCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateTrustAnchorCommand.js +2 -2
  27. package/dist-cjs/protocols/Aws_restJson1.js +299 -305
  28. package/dist-es/commands/CreateProfileCommand.js +3 -3
  29. package/dist-es/commands/CreateTrustAnchorCommand.js +3 -3
  30. package/dist-es/commands/DeleteCrlCommand.js +3 -3
  31. package/dist-es/commands/DeleteProfileCommand.js +3 -3
  32. package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -3
  33. package/dist-es/commands/DisableCrlCommand.js +3 -3
  34. package/dist-es/commands/DisableProfileCommand.js +3 -3
  35. package/dist-es/commands/DisableTrustAnchorCommand.js +3 -3
  36. package/dist-es/commands/EnableCrlCommand.js +3 -3
  37. package/dist-es/commands/EnableProfileCommand.js +3 -3
  38. package/dist-es/commands/EnableTrustAnchorCommand.js +3 -3
  39. package/dist-es/commands/GetCrlCommand.js +3 -3
  40. package/dist-es/commands/GetProfileCommand.js +3 -3
  41. package/dist-es/commands/GetSubjectCommand.js +3 -3
  42. package/dist-es/commands/GetTrustAnchorCommand.js +3 -3
  43. package/dist-es/commands/ImportCrlCommand.js +3 -3
  44. package/dist-es/commands/ListCrlsCommand.js +3 -3
  45. package/dist-es/commands/ListProfilesCommand.js +3 -3
  46. package/dist-es/commands/ListSubjectsCommand.js +3 -3
  47. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  48. package/dist-es/commands/ListTrustAnchorsCommand.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/UpdateCrlCommand.js +3 -3
  52. package/dist-es/commands/UpdateProfileCommand.js +3 -3
  53. package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -3
  54. package/dist-es/protocols/Aws_restJson1.js +245 -251
  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 +6 -6
@@ -37,10 +37,10 @@ class CreateProfileCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateProfileCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_CreateProfileCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateProfileCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_CreateProfileCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.CreateProfileCommand = CreateProfileCommand;
@@ -37,10 +37,10 @@ class CreateTrustAnchorCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateTrustAnchorCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_CreateTrustAnchorCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateTrustAnchorCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_CreateTrustAnchorCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.CreateTrustAnchorCommand = CreateTrustAnchorCommand;
@@ -36,10 +36,10 @@ class DeleteCrlCommand 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_restJson1DeleteCrlCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteCrlCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteCrlCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteCrlCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteCrlCommand = DeleteCrlCommand;
@@ -36,10 +36,10 @@ class DeleteProfileCommand 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_restJson1DeleteProfileCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteProfileCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteProfileCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteProfileCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteProfileCommand = DeleteProfileCommand;
@@ -36,10 +36,10 @@ class DeleteTrustAnchorCommand 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_restJson1DeleteTrustAnchorCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteTrustAnchorCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteTrustAnchorCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteTrustAnchorCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteTrustAnchorCommand = DeleteTrustAnchorCommand;
@@ -36,10 +36,10 @@ class DisableCrlCommand 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_restJson1DisableCrlCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DisableCrlCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DisableCrlCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DisableCrlCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DisableCrlCommand = DisableCrlCommand;
@@ -36,10 +36,10 @@ class DisableProfileCommand 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_restJson1DisableProfileCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DisableProfileCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DisableProfileCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DisableProfileCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DisableProfileCommand = DisableProfileCommand;
@@ -36,10 +36,10 @@ class DisableTrustAnchorCommand 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_restJson1DisableTrustAnchorCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DisableTrustAnchorCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DisableTrustAnchorCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DisableTrustAnchorCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DisableTrustAnchorCommand = DisableTrustAnchorCommand;
@@ -36,10 +36,10 @@ class EnableCrlCommand 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_restJson1EnableCrlCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_EnableCrlCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1EnableCrlCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_EnableCrlCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.EnableCrlCommand = EnableCrlCommand;
@@ -36,10 +36,10 @@ class EnableProfileCommand 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_restJson1EnableProfileCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_EnableProfileCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1EnableProfileCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_EnableProfileCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.EnableProfileCommand = EnableProfileCommand;
@@ -36,10 +36,10 @@ class EnableTrustAnchorCommand 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_restJson1EnableTrustAnchorCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_EnableTrustAnchorCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1EnableTrustAnchorCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_EnableTrustAnchorCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.EnableTrustAnchorCommand = EnableTrustAnchorCommand;
@@ -36,10 +36,10 @@ class GetCrlCommand 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_restJson1GetCrlCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetCrlCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetCrlCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetCrlCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetCrlCommand = GetCrlCommand;
@@ -36,10 +36,10 @@ class GetProfileCommand 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_restJson1GetProfileCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetProfileCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetProfileCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetProfileCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetProfileCommand = GetProfileCommand;
@@ -36,10 +36,10 @@ class GetSubjectCommand 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_restJson1GetSubjectCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetSubjectCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetSubjectCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetSubjectCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetSubjectCommand = GetSubjectCommand;
@@ -36,10 +36,10 @@ class GetTrustAnchorCommand 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_restJson1GetTrustAnchorCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetTrustAnchorCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetTrustAnchorCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetTrustAnchorCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetTrustAnchorCommand = GetTrustAnchorCommand;
@@ -37,10 +37,10 @@ class ImportCrlCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1ImportCrlCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_ImportCrlCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1ImportCrlCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_ImportCrlCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.ImportCrlCommand = ImportCrlCommand;
@@ -36,10 +36,10 @@ class ListCrlsCommand 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_restJson1ListCrlsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListCrlsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListCrlsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListCrlsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListCrlsCommand = ListCrlsCommand;
@@ -36,10 +36,10 @@ class ListProfilesCommand 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_restJson1ListProfilesCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListProfilesCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListProfilesCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListProfilesCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListProfilesCommand = ListProfilesCommand;
@@ -36,10 +36,10 @@ class ListSubjectsCommand 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_restJson1ListSubjectsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListSubjectsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListSubjectsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListSubjectsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListSubjectsCommand = ListSubjectsCommand;
@@ -37,10 +37,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_ListTagsForResourceCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_ListTagsForResourceCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -36,10 +36,10 @@ class ListTrustAnchorsCommand 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_restJson1ListTrustAnchorsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListTrustAnchorsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListTrustAnchorsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListTrustAnchorsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListTrustAnchorsCommand = ListTrustAnchorsCommand;
@@ -37,10 +37,10 @@ class TagResourceCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1TagResourceCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_TagResourceCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_TagResourceCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.TagResourceCommand = TagResourceCommand;
@@ -37,10 +37,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1UntagResourceCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_UntagResourceCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_UntagResourceCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -36,10 +36,10 @@ class UpdateCrlCommand 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_restJson1UpdateCrlCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateCrlCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateCrlCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateCrlCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateCrlCommand = UpdateCrlCommand;
@@ -36,10 +36,10 @@ class UpdateProfileCommand 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_restJson1UpdateProfileCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateProfileCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateProfileCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateProfileCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateProfileCommand = UpdateProfileCommand;
@@ -36,10 +36,10 @@ class UpdateTrustAnchorCommand 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_restJson1UpdateTrustAnchorCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateTrustAnchorCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateTrustAnchorCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateTrustAnchorCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateTrustAnchorCommand = UpdateTrustAnchorCommand;