@aws-sdk/client-ssm-incidents 3.306.0 → 3.310.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 (63) hide show
  1. package/dist-cjs/commands/CreateReplicationSetCommand.js +2 -2
  2. package/dist-cjs/commands/CreateResponsePlanCommand.js +2 -2
  3. package/dist-cjs/commands/CreateTimelineEventCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteIncidentRecordCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteReplicationSetCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteResponsePlanCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteTimelineEventCommand.js +2 -2
  9. package/dist-cjs/commands/GetIncidentRecordCommand.js +2 -2
  10. package/dist-cjs/commands/GetReplicationSetCommand.js +2 -2
  11. package/dist-cjs/commands/GetResourcePoliciesCommand.js +2 -2
  12. package/dist-cjs/commands/GetResponsePlanCommand.js +2 -2
  13. package/dist-cjs/commands/GetTimelineEventCommand.js +2 -2
  14. package/dist-cjs/commands/ListIncidentRecordsCommand.js +2 -2
  15. package/dist-cjs/commands/ListRelatedItemsCommand.js +2 -2
  16. package/dist-cjs/commands/ListReplicationSetsCommand.js +2 -2
  17. package/dist-cjs/commands/ListResponsePlansCommand.js +2 -2
  18. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  19. package/dist-cjs/commands/ListTimelineEventsCommand.js +2 -2
  20. package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
  21. package/dist-cjs/commands/StartIncidentCommand.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/UpdateDeletionProtectionCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateIncidentRecordCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateRelatedItemsCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateReplicationSetCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateResponsePlanCommand.js +2 -2
  29. package/dist-cjs/commands/UpdateTimelineEventCommand.js +2 -2
  30. package/dist-cjs/protocols/Aws_restJson1.js +519 -555
  31. package/dist-es/commands/CreateReplicationSetCommand.js +3 -3
  32. package/dist-es/commands/CreateResponsePlanCommand.js +3 -3
  33. package/dist-es/commands/CreateTimelineEventCommand.js +3 -3
  34. package/dist-es/commands/DeleteIncidentRecordCommand.js +3 -3
  35. package/dist-es/commands/DeleteReplicationSetCommand.js +3 -3
  36. package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
  37. package/dist-es/commands/DeleteResponsePlanCommand.js +3 -3
  38. package/dist-es/commands/DeleteTimelineEventCommand.js +3 -3
  39. package/dist-es/commands/GetIncidentRecordCommand.js +3 -3
  40. package/dist-es/commands/GetReplicationSetCommand.js +3 -3
  41. package/dist-es/commands/GetResourcePoliciesCommand.js +3 -3
  42. package/dist-es/commands/GetResponsePlanCommand.js +3 -3
  43. package/dist-es/commands/GetTimelineEventCommand.js +3 -3
  44. package/dist-es/commands/ListIncidentRecordsCommand.js +3 -3
  45. package/dist-es/commands/ListRelatedItemsCommand.js +3 -3
  46. package/dist-es/commands/ListReplicationSetsCommand.js +3 -3
  47. package/dist-es/commands/ListResponsePlansCommand.js +3 -3
  48. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  49. package/dist-es/commands/ListTimelineEventsCommand.js +3 -3
  50. package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
  51. package/dist-es/commands/StartIncidentCommand.js +3 -3
  52. package/dist-es/commands/TagResourceCommand.js +3 -3
  53. package/dist-es/commands/UntagResourceCommand.js +3 -3
  54. package/dist-es/commands/UpdateDeletionProtectionCommand.js +3 -3
  55. package/dist-es/commands/UpdateIncidentRecordCommand.js +3 -3
  56. package/dist-es/commands/UpdateRelatedItemsCommand.js +3 -3
  57. package/dist-es/commands/UpdateReplicationSetCommand.js +3 -3
  58. package/dist-es/commands/UpdateResponsePlanCommand.js +3 -3
  59. package/dist-es/commands/UpdateTimelineEventCommand.js +3 -3
  60. package/dist-es/protocols/Aws_restJson1.js +459 -495
  61. package/dist-types/protocols/Aws_restJson1.d.ts +232 -58
  62. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +58 -58
  63. package/package.json +36 -36
@@ -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_restJson1CreateReplicationSetCommand, serializeAws_restJson1CreateReplicationSetCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateReplicationSetCommand, se_CreateReplicationSetCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateReplicationSetCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateReplicationSetCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateReplicationSetCommand(input, context);
36
+ return se_CreateReplicationSetCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateReplicationSetCommand(output, context);
39
+ return de_CreateReplicationSetCommand(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_restJson1CreateResponsePlanCommand, serializeAws_restJson1CreateResponsePlanCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateResponsePlanCommand, se_CreateResponsePlanCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateResponsePlanCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateResponsePlanCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateResponsePlanCommand(input, context);
36
+ return se_CreateResponsePlanCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateResponsePlanCommand(output, context);
39
+ return de_CreateResponsePlanCommand(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_restJson1CreateTimelineEventCommand, serializeAws_restJson1CreateTimelineEventCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateTimelineEventCommand, se_CreateTimelineEventCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateTimelineEventCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateTimelineEventCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateTimelineEventCommand(input, context);
36
+ return se_CreateTimelineEventCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateTimelineEventCommand(output, context);
39
+ return de_CreateTimelineEventCommand(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_restJson1DeleteIncidentRecordCommand, serializeAws_restJson1DeleteIncidentRecordCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteIncidentRecordCommand, se_DeleteIncidentRecordCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteIncidentRecordCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteIncidentRecordCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteIncidentRecordCommand(input, context);
36
+ return se_DeleteIncidentRecordCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteIncidentRecordCommand(output, context);
39
+ return de_DeleteIncidentRecordCommand(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_restJson1DeleteReplicationSetCommand, serializeAws_restJson1DeleteReplicationSetCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteReplicationSetCommand, se_DeleteReplicationSetCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteReplicationSetCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteReplicationSetCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteReplicationSetCommand(input, context);
36
+ return se_DeleteReplicationSetCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteReplicationSetCommand(output, context);
39
+ return de_DeleteReplicationSetCommand(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_restJson1DeleteResourcePolicyCommand, serializeAws_restJson1DeleteResourcePolicyCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteResourcePolicyCommand, se_DeleteResourcePolicyCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteResourcePolicyCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteResourcePolicyCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteResourcePolicyCommand(input, context);
36
+ return se_DeleteResourcePolicyCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteResourcePolicyCommand(output, context);
39
+ return de_DeleteResourcePolicyCommand(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_restJson1DeleteResponsePlanCommand, serializeAws_restJson1DeleteResponsePlanCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteResponsePlanCommand, se_DeleteResponsePlanCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteResponsePlanCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteResponsePlanCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteResponsePlanCommand(input, context);
36
+ return se_DeleteResponsePlanCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteResponsePlanCommand(output, context);
39
+ return de_DeleteResponsePlanCommand(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_restJson1DeleteTimelineEventCommand, serializeAws_restJson1DeleteTimelineEventCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteTimelineEventCommand, se_DeleteTimelineEventCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteTimelineEventCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteTimelineEventCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteTimelineEventCommand(input, context);
36
+ return se_DeleteTimelineEventCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteTimelineEventCommand(output, context);
39
+ return de_DeleteTimelineEventCommand(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_restJson1GetIncidentRecordCommand, serializeAws_restJson1GetIncidentRecordCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetIncidentRecordCommand, se_GetIncidentRecordCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetIncidentRecordCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetIncidentRecordCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetIncidentRecordCommand(input, context);
36
+ return se_GetIncidentRecordCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetIncidentRecordCommand(output, context);
39
+ return de_GetIncidentRecordCommand(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_restJson1GetReplicationSetCommand, serializeAws_restJson1GetReplicationSetCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetReplicationSetCommand, se_GetReplicationSetCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetReplicationSetCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetReplicationSetCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetReplicationSetCommand(input, context);
36
+ return se_GetReplicationSetCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetReplicationSetCommand(output, context);
39
+ return de_GetReplicationSetCommand(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_restJson1GetResourcePoliciesCommand, serializeAws_restJson1GetResourcePoliciesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetResourcePoliciesCommand, se_GetResourcePoliciesCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetResourcePoliciesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetResourcePoliciesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetResourcePoliciesCommand(input, context);
36
+ return se_GetResourcePoliciesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetResourcePoliciesCommand(output, context);
39
+ return de_GetResourcePoliciesCommand(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_restJson1GetResponsePlanCommand, serializeAws_restJson1GetResponsePlanCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetResponsePlanCommand, se_GetResponsePlanCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetResponsePlanCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetResponsePlanCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetResponsePlanCommand(input, context);
36
+ return se_GetResponsePlanCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetResponsePlanCommand(output, context);
39
+ return de_GetResponsePlanCommand(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_restJson1GetTimelineEventCommand, serializeAws_restJson1GetTimelineEventCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetTimelineEventCommand, se_GetTimelineEventCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetTimelineEventCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetTimelineEventCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetTimelineEventCommand(input, context);
36
+ return se_GetTimelineEventCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetTimelineEventCommand(output, context);
39
+ return de_GetTimelineEventCommand(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_restJson1ListIncidentRecordsCommand, serializeAws_restJson1ListIncidentRecordsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListIncidentRecordsCommand, se_ListIncidentRecordsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListIncidentRecordsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListIncidentRecordsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListIncidentRecordsCommand(input, context);
36
+ return se_ListIncidentRecordsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListIncidentRecordsCommand(output, context);
39
+ return de_ListIncidentRecordsCommand(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_restJson1ListRelatedItemsCommand, serializeAws_restJson1ListRelatedItemsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListRelatedItemsCommand, se_ListRelatedItemsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListRelatedItemsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListRelatedItemsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListRelatedItemsCommand(input, context);
36
+ return se_ListRelatedItemsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListRelatedItemsCommand(output, context);
39
+ return de_ListRelatedItemsCommand(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_restJson1ListReplicationSetsCommand, serializeAws_restJson1ListReplicationSetsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListReplicationSetsCommand, se_ListReplicationSetsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListReplicationSetsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListReplicationSetsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListReplicationSetsCommand(input, context);
36
+ return se_ListReplicationSetsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListReplicationSetsCommand(output, context);
39
+ return de_ListReplicationSetsCommand(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_restJson1ListResponsePlansCommand, serializeAws_restJson1ListResponsePlansCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListResponsePlansCommand, se_ListResponsePlansCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListResponsePlansCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListResponsePlansCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListResponsePlansCommand(input, context);
36
+ return se_ListResponsePlansCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListResponsePlansCommand(output, context);
39
+ return de_ListResponsePlansCommand(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_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
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_restJson1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTagsForResourceCommand(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_restJson1ListTimelineEventsCommand, serializeAws_restJson1ListTimelineEventsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTimelineEventsCommand, se_ListTimelineEventsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTimelineEventsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTimelineEventsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTimelineEventsCommand(input, context);
36
+ return se_ListTimelineEventsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTimelineEventsCommand(output, context);
39
+ return de_ListTimelineEventsCommand(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_restJson1PutResourcePolicyCommand, serializeAws_restJson1PutResourcePolicyCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_PutResourcePolicyCommand, se_PutResourcePolicyCommand } from "../protocols/Aws_restJson1";
5
5
  export class PutResourcePolicyCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutResourcePolicyCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1PutResourcePolicyCommand(input, context);
36
+ return se_PutResourcePolicyCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1PutResourcePolicyCommand(output, context);
39
+ return de_PutResourcePolicyCommand(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_restJson1StartIncidentCommand, serializeAws_restJson1StartIncidentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StartIncidentCommand, se_StartIncidentCommand } from "../protocols/Aws_restJson1";
5
5
  export class StartIncidentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartIncidentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StartIncidentCommand(input, context);
36
+ return se_StartIncidentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StartIncidentCommand(output, context);
39
+ return de_StartIncidentCommand(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_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class TagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class TagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1TagResourceCommand(input, context);
36
+ return se_TagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1TagResourceCommand(output, context);
39
+ return de_TagResourceCommand(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_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class UntagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UntagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UntagResourceCommand(input, context);
36
+ return se_UntagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UntagResourceCommand(output, context);
39
+ return de_UntagResourceCommand(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_restJson1UpdateDeletionProtectionCommand, serializeAws_restJson1UpdateDeletionProtectionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateDeletionProtectionCommand, se_UpdateDeletionProtectionCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateDeletionProtectionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateDeletionProtectionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateDeletionProtectionCommand(input, context);
36
+ return se_UpdateDeletionProtectionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateDeletionProtectionCommand(output, context);
39
+ return de_UpdateDeletionProtectionCommand(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_restJson1UpdateIncidentRecordCommand, serializeAws_restJson1UpdateIncidentRecordCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateIncidentRecordCommand, se_UpdateIncidentRecordCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateIncidentRecordCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateIncidentRecordCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateIncidentRecordCommand(input, context);
36
+ return se_UpdateIncidentRecordCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateIncidentRecordCommand(output, context);
39
+ return de_UpdateIncidentRecordCommand(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_restJson1UpdateRelatedItemsCommand, serializeAws_restJson1UpdateRelatedItemsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateRelatedItemsCommand, se_UpdateRelatedItemsCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateRelatedItemsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateRelatedItemsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateRelatedItemsCommand(input, context);
36
+ return se_UpdateRelatedItemsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateRelatedItemsCommand(output, context);
39
+ return de_UpdateRelatedItemsCommand(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_restJson1UpdateReplicationSetCommand, serializeAws_restJson1UpdateReplicationSetCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateReplicationSetCommand, se_UpdateReplicationSetCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateReplicationSetCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateReplicationSetCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateReplicationSetCommand(input, context);
36
+ return se_UpdateReplicationSetCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateReplicationSetCommand(output, context);
39
+ return de_UpdateReplicationSetCommand(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_restJson1UpdateResponsePlanCommand, serializeAws_restJson1UpdateResponsePlanCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateResponsePlanCommand, se_UpdateResponsePlanCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateResponsePlanCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateResponsePlanCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateResponsePlanCommand(input, context);
36
+ return se_UpdateResponsePlanCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateResponsePlanCommand(output, context);
39
+ return de_UpdateResponsePlanCommand(output, context);
40
40
  }
41
41
  }