@aws-sdk/client-ssm-incidents 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.
- package/dist-cjs/commands/CreateReplicationSetCommand.js +2 -2
- package/dist-cjs/commands/CreateResponsePlanCommand.js +2 -2
- package/dist-cjs/commands/CreateTimelineEventCommand.js +2 -2
- package/dist-cjs/commands/DeleteIncidentRecordCommand.js +2 -2
- package/dist-cjs/commands/DeleteReplicationSetCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteResponsePlanCommand.js +2 -2
- package/dist-cjs/commands/DeleteTimelineEventCommand.js +2 -2
- package/dist-cjs/commands/GetIncidentRecordCommand.js +2 -2
- package/dist-cjs/commands/GetReplicationSetCommand.js +2 -2
- package/dist-cjs/commands/GetResourcePoliciesCommand.js +2 -2
- package/dist-cjs/commands/GetResponsePlanCommand.js +2 -2
- package/dist-cjs/commands/GetTimelineEventCommand.js +2 -2
- package/dist-cjs/commands/ListIncidentRecordsCommand.js +2 -2
- package/dist-cjs/commands/ListRelatedItemsCommand.js +2 -2
- package/dist-cjs/commands/ListReplicationSetsCommand.js +2 -2
- package/dist-cjs/commands/ListResponsePlansCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListTimelineEventsCommand.js +2 -2
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/StartIncidentCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateDeletionProtectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateIncidentRecordCommand.js +2 -2
- package/dist-cjs/commands/UpdateRelatedItemsCommand.js +2 -2
- package/dist-cjs/commands/UpdateReplicationSetCommand.js +2 -2
- package/dist-cjs/commands/UpdateResponsePlanCommand.js +2 -2
- package/dist-cjs/commands/UpdateTimelineEventCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +519 -555
- package/dist-es/commands/CreateReplicationSetCommand.js +3 -3
- package/dist-es/commands/CreateResponsePlanCommand.js +3 -3
- package/dist-es/commands/CreateTimelineEventCommand.js +3 -3
- package/dist-es/commands/DeleteIncidentRecordCommand.js +3 -3
- package/dist-es/commands/DeleteReplicationSetCommand.js +3 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DeleteResponsePlanCommand.js +3 -3
- package/dist-es/commands/DeleteTimelineEventCommand.js +3 -3
- package/dist-es/commands/GetIncidentRecordCommand.js +3 -3
- package/dist-es/commands/GetReplicationSetCommand.js +3 -3
- package/dist-es/commands/GetResourcePoliciesCommand.js +3 -3
- package/dist-es/commands/GetResponsePlanCommand.js +3 -3
- package/dist-es/commands/GetTimelineEventCommand.js +3 -3
- package/dist-es/commands/ListIncidentRecordsCommand.js +3 -3
- package/dist-es/commands/ListRelatedItemsCommand.js +3 -3
- package/dist-es/commands/ListReplicationSetsCommand.js +3 -3
- package/dist-es/commands/ListResponsePlansCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListTimelineEventsCommand.js +3 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
- package/dist-es/commands/StartIncidentCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateDeletionProtectionCommand.js +3 -3
- package/dist-es/commands/UpdateIncidentRecordCommand.js +3 -3
- package/dist-es/commands/UpdateRelatedItemsCommand.js +3 -3
- package/dist-es/commands/UpdateReplicationSetCommand.js +3 -3
- package/dist-es/commands/UpdateResponsePlanCommand.js +3 -3
- package/dist-es/commands/UpdateTimelineEventCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +459 -495
- package/dist-types/protocols/Aws_restJson1.d.ts +232 -58
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +58 -58
- 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 {
|
|
4
|
+
import { de_UpdateTimelineEventCommand, se_UpdateTimelineEventCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateTimelineEventCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateTimelineEventCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateTimelineEventCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateTimelineEventCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|