@aws-sdk/client-cloudhsm 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 (45) hide show
  1. package/dist-cjs/commands/AddTagsToResourceCommand.js +2 -2
  2. package/dist-cjs/commands/CreateHapgCommand.js +2 -2
  3. package/dist-cjs/commands/CreateHsmCommand.js +2 -2
  4. package/dist-cjs/commands/CreateLunaClientCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteHapgCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteHsmCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteLunaClientCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeHapgCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeHsmCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeLunaClientCommand.js +2 -2
  11. package/dist-cjs/commands/GetConfigCommand.js +2 -2
  12. package/dist-cjs/commands/ListAvailableZonesCommand.js +2 -2
  13. package/dist-cjs/commands/ListHapgsCommand.js +2 -2
  14. package/dist-cjs/commands/ListHsmsCommand.js +2 -2
  15. package/dist-cjs/commands/ListLunaClientsCommand.js +2 -2
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  17. package/dist-cjs/commands/ModifyHapgCommand.js +2 -2
  18. package/dist-cjs/commands/ModifyHsmCommand.js +2 -2
  19. package/dist-cjs/commands/ModifyLunaClientCommand.js +2 -2
  20. package/dist-cjs/commands/RemoveTagsFromResourceCommand.js +2 -2
  21. package/dist-cjs/protocols/Aws_json1_1.js +297 -305
  22. package/dist-es/commands/AddTagsToResourceCommand.js +3 -3
  23. package/dist-es/commands/CreateHapgCommand.js +3 -3
  24. package/dist-es/commands/CreateHsmCommand.js +3 -3
  25. package/dist-es/commands/CreateLunaClientCommand.js +3 -3
  26. package/dist-es/commands/DeleteHapgCommand.js +3 -3
  27. package/dist-es/commands/DeleteHsmCommand.js +3 -3
  28. package/dist-es/commands/DeleteLunaClientCommand.js +3 -3
  29. package/dist-es/commands/DescribeHapgCommand.js +3 -3
  30. package/dist-es/commands/DescribeHsmCommand.js +3 -3
  31. package/dist-es/commands/DescribeLunaClientCommand.js +3 -3
  32. package/dist-es/commands/GetConfigCommand.js +3 -3
  33. package/dist-es/commands/ListAvailableZonesCommand.js +3 -3
  34. package/dist-es/commands/ListHapgsCommand.js +3 -3
  35. package/dist-es/commands/ListHsmsCommand.js +3 -3
  36. package/dist-es/commands/ListLunaClientsCommand.js +3 -3
  37. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  38. package/dist-es/commands/ModifyHapgCommand.js +3 -3
  39. package/dist-es/commands/ModifyHsmCommand.js +3 -3
  40. package/dist-es/commands/ModifyLunaClientCommand.js +3 -3
  41. package/dist-es/commands/RemoveTagsFromResourceCommand.js +3 -3
  42. package/dist-es/protocols/Aws_json1_1.js +256 -264
  43. package/dist-types/protocols/Aws_json1_1.d.ts +160 -40
  44. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +40 -40
  45. package/package.json +6 -6
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1AddTagsToResourceCommand, serializeAws_json1_1AddTagsToResourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_AddTagsToResourceCommand, se_AddTagsToResourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class AddTagsToResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class AddTagsToResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1AddTagsToResourceCommand(input, context);
36
+ return se_AddTagsToResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1AddTagsToResourceCommand(output, context);
39
+ return de_AddTagsToResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateHapgCommand, serializeAws_json1_1CreateHapgCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateHapgCommand, se_CreateHapgCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateHapgCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateHapgCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateHapgCommand(input, context);
36
+ return se_CreateHapgCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateHapgCommand(output, context);
39
+ return de_CreateHapgCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateHsmCommand, serializeAws_json1_1CreateHsmCommand } from "../protocols/Aws_json1_1";
4
+ import { de_CreateHsmCommand, se_CreateHsmCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateHsmCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateHsmCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateHsmCommand(input, context);
36
+ return se_CreateHsmCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateHsmCommand(output, context);
39
+ return de_CreateHsmCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateLunaClientCommand, serializeAws_json1_1CreateLunaClientCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateLunaClientCommand, se_CreateLunaClientCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateLunaClientCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateLunaClientCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateLunaClientCommand(input, context);
36
+ return se_CreateLunaClientCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateLunaClientCommand(output, context);
39
+ return de_CreateLunaClientCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteHapgCommand, serializeAws_json1_1DeleteHapgCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteHapgCommand, se_DeleteHapgCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteHapgCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteHapgCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteHapgCommand(input, context);
36
+ return se_DeleteHapgCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteHapgCommand(output, context);
39
+ return de_DeleteHapgCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteHsmCommand, serializeAws_json1_1DeleteHsmCommand } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteHsmCommand, se_DeleteHsmCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteHsmCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteHsmCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteHsmCommand(input, context);
36
+ return se_DeleteHsmCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteHsmCommand(output, context);
39
+ return de_DeleteHsmCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteLunaClientCommand, serializeAws_json1_1DeleteLunaClientCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteLunaClientCommand, se_DeleteLunaClientCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteLunaClientCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteLunaClientCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteLunaClientCommand(input, context);
36
+ return se_DeleteLunaClientCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteLunaClientCommand(output, context);
39
+ return de_DeleteLunaClientCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeHapgCommand, serializeAws_json1_1DescribeHapgCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeHapgCommand, se_DescribeHapgCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeHapgCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeHapgCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeHapgCommand(input, context);
36
+ return se_DescribeHapgCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeHapgCommand(output, context);
39
+ return de_DescribeHapgCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeHsmCommand, serializeAws_json1_1DescribeHsmCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeHsmCommand, se_DescribeHsmCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeHsmCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeHsmCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeHsmCommand(input, context);
36
+ return se_DescribeHsmCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeHsmCommand(output, context);
39
+ return de_DescribeHsmCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeLunaClientCommand, serializeAws_json1_1DescribeLunaClientCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeLunaClientCommand, se_DescribeLunaClientCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeLunaClientCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeLunaClientCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeLunaClientCommand(input, context);
36
+ return se_DescribeLunaClientCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeLunaClientCommand(output, context);
39
+ return de_DescribeLunaClientCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1GetConfigCommand, serializeAws_json1_1GetConfigCommand } from "../protocols/Aws_json1_1";
4
+ import { de_GetConfigCommand, se_GetConfigCommand } from "../protocols/Aws_json1_1";
5
5
  export class GetConfigCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetConfigCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1GetConfigCommand(input, context);
36
+ return se_GetConfigCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1GetConfigCommand(output, context);
39
+ return de_GetConfigCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ListAvailableZonesCommand, serializeAws_json1_1ListAvailableZonesCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_ListAvailableZonesCommand, se_ListAvailableZonesCommand } from "../protocols/Aws_json1_1";
5
5
  export class ListAvailableZonesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListAvailableZonesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ListAvailableZonesCommand(input, context);
36
+ return se_ListAvailableZonesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ListAvailableZonesCommand(output, context);
39
+ return de_ListAvailableZonesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ListHapgsCommand, serializeAws_json1_1ListHapgsCommand } from "../protocols/Aws_json1_1";
4
+ import { de_ListHapgsCommand, se_ListHapgsCommand } from "../protocols/Aws_json1_1";
5
5
  export class ListHapgsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListHapgsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ListHapgsCommand(input, context);
36
+ return se_ListHapgsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ListHapgsCommand(output, context);
39
+ return de_ListHapgsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ListHsmsCommand, serializeAws_json1_1ListHsmsCommand } from "../protocols/Aws_json1_1";
4
+ import { de_ListHsmsCommand, se_ListHsmsCommand } from "../protocols/Aws_json1_1";
5
5
  export class ListHsmsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListHsmsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ListHsmsCommand(input, context);
36
+ return se_ListHsmsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ListHsmsCommand(output, context);
39
+ return de_ListHsmsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ListLunaClientsCommand, serializeAws_json1_1ListLunaClientsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_ListLunaClientsCommand, se_ListLunaClientsCommand } from "../protocols/Aws_json1_1";
5
5
  export class ListLunaClientsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListLunaClientsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ListLunaClientsCommand(input, context);
36
+ return se_ListLunaClientsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ListLunaClientsCommand(output, context);
39
+ return de_ListLunaClientsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ListTagsForResourceCommand, serializeAws_json1_1ListTagsForResourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class ListTagsForResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTagsForResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ListTagsForResourceCommand(output, context);
39
+ return de_ListTagsForResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ModifyHapgCommand, serializeAws_json1_1ModifyHapgCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_ModifyHapgCommand, se_ModifyHapgCommand } from "../protocols/Aws_json1_1";
5
5
  export class ModifyHapgCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ModifyHapgCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ModifyHapgCommand(input, context);
36
+ return se_ModifyHapgCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ModifyHapgCommand(output, context);
39
+ return de_ModifyHapgCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ModifyHsmCommand, serializeAws_json1_1ModifyHsmCommand } from "../protocols/Aws_json1_1";
4
+ import { de_ModifyHsmCommand, se_ModifyHsmCommand } from "../protocols/Aws_json1_1";
5
5
  export class ModifyHsmCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ModifyHsmCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ModifyHsmCommand(input, context);
36
+ return se_ModifyHsmCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ModifyHsmCommand(output, context);
39
+ return de_ModifyHsmCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1ModifyLunaClientCommand, serializeAws_json1_1ModifyLunaClientCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_ModifyLunaClientCommand, se_ModifyLunaClientCommand } from "../protocols/Aws_json1_1";
5
5
  export class ModifyLunaClientCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ModifyLunaClientCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1ModifyLunaClientCommand(input, context);
36
+ return se_ModifyLunaClientCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1ModifyLunaClientCommand(output, context);
39
+ return de_ModifyLunaClientCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1RemoveTagsFromResourceCommand, serializeAws_json1_1RemoveTagsFromResourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_RemoveTagsFromResourceCommand, se_RemoveTagsFromResourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class RemoveTagsFromResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class RemoveTagsFromResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1RemoveTagsFromResourceCommand(input, context);
36
+ return se_RemoveTagsFromResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1RemoveTagsFromResourceCommand(output, context);
39
+ return de_RemoveTagsFromResourceCommand(output, context);
40
40
  }
41
41
  }