@aws-sdk/client-ssm-incidents 3.168.0 → 3.170.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 (55) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SSMIncidents.d.ts +526 -150
  3. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +304 -102
  4. package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +41 -17
  31. package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +38 -17
  32. package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +38 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +7 -7
  36. package/dist-types/ts3.4/models/SSMIncidentsServiceException.d.ts +8 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +1250 -1173
  39. package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  41. package/dist-types/ts3.4/pagination/ListIncidentRecordsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListRelatedItemsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListReplicationSetsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListResponsePlansPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListTimelineEventsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  53. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +13 -7
  54. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +13 -7
  55. package/package.json +35 -35
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "../commands/GetResourcePoliciesCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetResourcePolicies(config: SSMIncidentsPaginationConfiguration, input: GetResourcePoliciesCommandInput, ...additionalArguments: any): Paginator<GetResourcePoliciesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetResourcePoliciesCommandInput,
4
+ GetResourcePoliciesCommandOutput,
5
+ } from "../commands/GetResourcePoliciesCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetResourcePolicies(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: GetResourcePoliciesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetResourcePoliciesCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { SSMIncidents } from "../SSMIncidents";
3
- import { SSMIncidentsClient } from "../SSMIncidentsClient";
4
- export interface SSMIncidentsPaginationConfiguration extends PaginationConfiguration {
5
- client: SSMIncidents | SSMIncidentsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SSMIncidents } from "../SSMIncidents";
3
+ import { SSMIncidentsClient } from "../SSMIncidentsClient";
4
+ export interface SSMIncidentsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: SSMIncidents | SSMIncidentsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput } from "../commands/ListIncidentRecordsCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListIncidentRecords(config: SSMIncidentsPaginationConfiguration, input: ListIncidentRecordsCommandInput, ...additionalArguments: any): Paginator<ListIncidentRecordsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListIncidentRecordsCommandInput,
4
+ ListIncidentRecordsCommandOutput,
5
+ } from "../commands/ListIncidentRecordsCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListIncidentRecords(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: ListIncidentRecordsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListIncidentRecordsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput } from "../commands/ListRelatedItemsCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRelatedItems(config: SSMIncidentsPaginationConfiguration, input: ListRelatedItemsCommandInput, ...additionalArguments: any): Paginator<ListRelatedItemsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRelatedItemsCommandInput,
4
+ ListRelatedItemsCommandOutput,
5
+ } from "../commands/ListRelatedItemsCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRelatedItems(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: ListRelatedItemsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRelatedItemsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput } from "../commands/ListReplicationSetsCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListReplicationSets(config: SSMIncidentsPaginationConfiguration, input: ListReplicationSetsCommandInput, ...additionalArguments: any): Paginator<ListReplicationSetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListReplicationSetsCommandInput,
4
+ ListReplicationSetsCommandOutput,
5
+ } from "../commands/ListReplicationSetsCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListReplicationSets(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: ListReplicationSetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListReplicationSetsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListResponsePlansCommandInput, ListResponsePlansCommandOutput } from "../commands/ListResponsePlansCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListResponsePlans(config: SSMIncidentsPaginationConfiguration, input: ListResponsePlansCommandInput, ...additionalArguments: any): Paginator<ListResponsePlansCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListResponsePlansCommandInput,
4
+ ListResponsePlansCommandOutput,
5
+ } from "../commands/ListResponsePlansCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListResponsePlans(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: ListResponsePlansCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListResponsePlansCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput } from "../commands/ListTimelineEventsCommand";
3
- import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTimelineEvents(config: SSMIncidentsPaginationConfiguration, input: ListTimelineEventsCommandInput, ...additionalArguments: any): Paginator<ListTimelineEventsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTimelineEventsCommandInput,
4
+ ListTimelineEventsCommandOutput,
5
+ } from "../commands/ListTimelineEventsCommand";
6
+ import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTimelineEvents(
8
+ config: SSMIncidentsPaginationConfiguration,
9
+ input: ListTimelineEventsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTimelineEventsCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./GetResourcePoliciesPaginator";
2
- export * from "./Interfaces";
3
- export * from "./ListIncidentRecordsPaginator";
4
- export * from "./ListRelatedItemsPaginator";
5
- export * from "./ListReplicationSetsPaginator";
6
- export * from "./ListResponsePlansPaginator";
7
- export * from "./ListTimelineEventsPaginator";
1
+ export * from "./GetResourcePoliciesPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListIncidentRecordsPaginator";
4
+ export * from "./ListRelatedItemsPaginator";
5
+ export * from "./ListReplicationSetsPaginator";
6
+ export * from "./ListResponsePlansPaginator";
7
+ export * from "./ListTimelineEventsPaginator";
@@ -1,89 +1,353 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput } from "../commands/CreateReplicationSetCommand";
4
- import { CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput } from "../commands/CreateResponsePlanCommand";
5
- import { CreateTimelineEventCommandInput, CreateTimelineEventCommandOutput } from "../commands/CreateTimelineEventCommand";
6
- import { DeleteIncidentRecordCommandInput, DeleteIncidentRecordCommandOutput } from "../commands/DeleteIncidentRecordCommand";
7
- import { DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput } from "../commands/DeleteReplicationSetCommand";
8
- import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
9
- import { DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput } from "../commands/DeleteResponsePlanCommand";
10
- import { DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput } from "../commands/DeleteTimelineEventCommand";
11
- import { GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput } from "../commands/GetIncidentRecordCommand";
12
- import { GetReplicationSetCommandInput, GetReplicationSetCommandOutput } from "../commands/GetReplicationSetCommand";
13
- import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "../commands/GetResourcePoliciesCommand";
14
- import { GetResponsePlanCommandInput, GetResponsePlanCommandOutput } from "../commands/GetResponsePlanCommand";
15
- import { GetTimelineEventCommandInput, GetTimelineEventCommandOutput } from "../commands/GetTimelineEventCommand";
16
- import { ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput } from "../commands/ListIncidentRecordsCommand";
17
- import { ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput } from "../commands/ListRelatedItemsCommand";
18
- import { ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput } from "../commands/ListReplicationSetsCommand";
19
- import { ListResponsePlansCommandInput, ListResponsePlansCommandOutput } from "../commands/ListResponsePlansCommand";
20
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
21
- import { ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput } from "../commands/ListTimelineEventsCommand";
22
- import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
23
- import { StartIncidentCommandInput, StartIncidentCommandOutput } from "../commands/StartIncidentCommand";
24
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
25
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
26
- import { UpdateDeletionProtectionCommandInput, UpdateDeletionProtectionCommandOutput } from "../commands/UpdateDeletionProtectionCommand";
27
- import { UpdateIncidentRecordCommandInput, UpdateIncidentRecordCommandOutput } from "../commands/UpdateIncidentRecordCommand";
28
- import { UpdateRelatedItemsCommandInput, UpdateRelatedItemsCommandOutput } from "../commands/UpdateRelatedItemsCommand";
29
- import { UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput } from "../commands/UpdateReplicationSetCommand";
30
- import { UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput } from "../commands/UpdateResponsePlanCommand";
31
- import { UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput } from "../commands/UpdateTimelineEventCommand";
32
- export declare const serializeAws_restJson1CreateReplicationSetCommand: (input: CreateReplicationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1CreateResponsePlanCommand: (input: CreateResponsePlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1CreateTimelineEventCommand: (input: CreateTimelineEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DeleteIncidentRecordCommand: (input: DeleteIncidentRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DeleteReplicationSetCommand: (input: DeleteReplicationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteResponsePlanCommand: (input: DeleteResponsePlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DeleteTimelineEventCommand: (input: DeleteTimelineEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetIncidentRecordCommand: (input: GetIncidentRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetReplicationSetCommand: (input: GetReplicationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetResourcePoliciesCommand: (input: GetResourcePoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetResponsePlanCommand: (input: GetResponsePlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1GetTimelineEventCommand: (input: GetTimelineEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListIncidentRecordsCommand: (input: ListIncidentRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListRelatedItemsCommand: (input: ListRelatedItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListReplicationSetsCommand: (input: ListReplicationSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListResponsePlansCommand: (input: ListResponsePlansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1ListTimelineEventsCommand: (input: ListTimelineEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1StartIncidentCommand: (input: StartIncidentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1UpdateDeletionProtectionCommand: (input: UpdateDeletionProtectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1UpdateIncidentRecordCommand: (input: UpdateIncidentRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1UpdateRelatedItemsCommand: (input: UpdateRelatedItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1UpdateReplicationSetCommand: (input: UpdateReplicationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_restJson1UpdateResponsePlanCommand: (input: UpdateResponsePlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_restJson1UpdateTimelineEventCommand: (input: UpdateTimelineEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const deserializeAws_restJson1CreateReplicationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReplicationSetCommandOutput>;
62
- export declare const deserializeAws_restJson1CreateResponsePlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResponsePlanCommandOutput>;
63
- export declare const deserializeAws_restJson1CreateTimelineEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTimelineEventCommandOutput>;
64
- export declare const deserializeAws_restJson1DeleteIncidentRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIncidentRecordCommandOutput>;
65
- export declare const deserializeAws_restJson1DeleteReplicationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReplicationSetCommandOutput>;
66
- export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
67
- export declare const deserializeAws_restJson1DeleteResponsePlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResponsePlanCommandOutput>;
68
- export declare const deserializeAws_restJson1DeleteTimelineEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTimelineEventCommandOutput>;
69
- export declare const deserializeAws_restJson1GetIncidentRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIncidentRecordCommandOutput>;
70
- export declare const deserializeAws_restJson1GetReplicationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReplicationSetCommandOutput>;
71
- export declare const deserializeAws_restJson1GetResourcePoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePoliciesCommandOutput>;
72
- export declare const deserializeAws_restJson1GetResponsePlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResponsePlanCommandOutput>;
73
- export declare const deserializeAws_restJson1GetTimelineEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTimelineEventCommandOutput>;
74
- export declare const deserializeAws_restJson1ListIncidentRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIncidentRecordsCommandOutput>;
75
- export declare const deserializeAws_restJson1ListRelatedItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRelatedItemsCommandOutput>;
76
- export declare const deserializeAws_restJson1ListReplicationSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReplicationSetsCommandOutput>;
77
- export declare const deserializeAws_restJson1ListResponsePlansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResponsePlansCommandOutput>;
78
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
79
- export declare const deserializeAws_restJson1ListTimelineEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTimelineEventsCommandOutput>;
80
- export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
81
- export declare const deserializeAws_restJson1StartIncidentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartIncidentCommandOutput>;
82
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
83
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
84
- export declare const deserializeAws_restJson1UpdateDeletionProtectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDeletionProtectionCommandOutput>;
85
- export declare const deserializeAws_restJson1UpdateIncidentRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIncidentRecordCommandOutput>;
86
- export declare const deserializeAws_restJson1UpdateRelatedItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRelatedItemsCommandOutput>;
87
- export declare const deserializeAws_restJson1UpdateReplicationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateReplicationSetCommandOutput>;
88
- export declare const deserializeAws_restJson1UpdateResponsePlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResponsePlanCommandOutput>;
89
- export declare const deserializeAws_restJson1UpdateTimelineEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTimelineEventCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateReplicationSetCommandInput,
8
+ CreateReplicationSetCommandOutput,
9
+ } from "../commands/CreateReplicationSetCommand";
10
+ import {
11
+ CreateResponsePlanCommandInput,
12
+ CreateResponsePlanCommandOutput,
13
+ } from "../commands/CreateResponsePlanCommand";
14
+ import {
15
+ CreateTimelineEventCommandInput,
16
+ CreateTimelineEventCommandOutput,
17
+ } from "../commands/CreateTimelineEventCommand";
18
+ import {
19
+ DeleteIncidentRecordCommandInput,
20
+ DeleteIncidentRecordCommandOutput,
21
+ } from "../commands/DeleteIncidentRecordCommand";
22
+ import {
23
+ DeleteReplicationSetCommandInput,
24
+ DeleteReplicationSetCommandOutput,
25
+ } from "../commands/DeleteReplicationSetCommand";
26
+ import {
27
+ DeleteResourcePolicyCommandInput,
28
+ DeleteResourcePolicyCommandOutput,
29
+ } from "../commands/DeleteResourcePolicyCommand";
30
+ import {
31
+ DeleteResponsePlanCommandInput,
32
+ DeleteResponsePlanCommandOutput,
33
+ } from "../commands/DeleteResponsePlanCommand";
34
+ import {
35
+ DeleteTimelineEventCommandInput,
36
+ DeleteTimelineEventCommandOutput,
37
+ } from "../commands/DeleteTimelineEventCommand";
38
+ import {
39
+ GetIncidentRecordCommandInput,
40
+ GetIncidentRecordCommandOutput,
41
+ } from "../commands/GetIncidentRecordCommand";
42
+ import {
43
+ GetReplicationSetCommandInput,
44
+ GetReplicationSetCommandOutput,
45
+ } from "../commands/GetReplicationSetCommand";
46
+ import {
47
+ GetResourcePoliciesCommandInput,
48
+ GetResourcePoliciesCommandOutput,
49
+ } from "../commands/GetResourcePoliciesCommand";
50
+ import {
51
+ GetResponsePlanCommandInput,
52
+ GetResponsePlanCommandOutput,
53
+ } from "../commands/GetResponsePlanCommand";
54
+ import {
55
+ GetTimelineEventCommandInput,
56
+ GetTimelineEventCommandOutput,
57
+ } from "../commands/GetTimelineEventCommand";
58
+ import {
59
+ ListIncidentRecordsCommandInput,
60
+ ListIncidentRecordsCommandOutput,
61
+ } from "../commands/ListIncidentRecordsCommand";
62
+ import {
63
+ ListRelatedItemsCommandInput,
64
+ ListRelatedItemsCommandOutput,
65
+ } from "../commands/ListRelatedItemsCommand";
66
+ import {
67
+ ListReplicationSetsCommandInput,
68
+ ListReplicationSetsCommandOutput,
69
+ } from "../commands/ListReplicationSetsCommand";
70
+ import {
71
+ ListResponsePlansCommandInput,
72
+ ListResponsePlansCommandOutput,
73
+ } from "../commands/ListResponsePlansCommand";
74
+ import {
75
+ ListTagsForResourceCommandInput,
76
+ ListTagsForResourceCommandOutput,
77
+ } from "../commands/ListTagsForResourceCommand";
78
+ import {
79
+ ListTimelineEventsCommandInput,
80
+ ListTimelineEventsCommandOutput,
81
+ } from "../commands/ListTimelineEventsCommand";
82
+ import {
83
+ PutResourcePolicyCommandInput,
84
+ PutResourcePolicyCommandOutput,
85
+ } from "../commands/PutResourcePolicyCommand";
86
+ import {
87
+ StartIncidentCommandInput,
88
+ StartIncidentCommandOutput,
89
+ } from "../commands/StartIncidentCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateDeletionProtectionCommandInput,
100
+ UpdateDeletionProtectionCommandOutput,
101
+ } from "../commands/UpdateDeletionProtectionCommand";
102
+ import {
103
+ UpdateIncidentRecordCommandInput,
104
+ UpdateIncidentRecordCommandOutput,
105
+ } from "../commands/UpdateIncidentRecordCommand";
106
+ import {
107
+ UpdateRelatedItemsCommandInput,
108
+ UpdateRelatedItemsCommandOutput,
109
+ } from "../commands/UpdateRelatedItemsCommand";
110
+ import {
111
+ UpdateReplicationSetCommandInput,
112
+ UpdateReplicationSetCommandOutput,
113
+ } from "../commands/UpdateReplicationSetCommand";
114
+ import {
115
+ UpdateResponsePlanCommandInput,
116
+ UpdateResponsePlanCommandOutput,
117
+ } from "../commands/UpdateResponsePlanCommand";
118
+ import {
119
+ UpdateTimelineEventCommandInput,
120
+ UpdateTimelineEventCommandOutput,
121
+ } from "../commands/UpdateTimelineEventCommand";
122
+ export declare const serializeAws_restJson1CreateReplicationSetCommand: (
123
+ input: CreateReplicationSetCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1CreateResponsePlanCommand: (
127
+ input: CreateResponsePlanCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1CreateTimelineEventCommand: (
131
+ input: CreateTimelineEventCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1DeleteIncidentRecordCommand: (
135
+ input: DeleteIncidentRecordCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1DeleteReplicationSetCommand: (
139
+ input: DeleteReplicationSetCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (
143
+ input: DeleteResourcePolicyCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteResponsePlanCommand: (
147
+ input: DeleteResponsePlanCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DeleteTimelineEventCommand: (
151
+ input: DeleteTimelineEventCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetIncidentRecordCommand: (
155
+ input: GetIncidentRecordCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetReplicationSetCommand: (
159
+ input: GetReplicationSetCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GetResourcePoliciesCommand: (
163
+ input: GetResourcePoliciesCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1GetResponsePlanCommand: (
167
+ input: GetResponsePlanCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1GetTimelineEventCommand: (
171
+ input: GetTimelineEventCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListIncidentRecordsCommand: (
175
+ input: ListIncidentRecordsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListRelatedItemsCommand: (
179
+ input: ListRelatedItemsCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListReplicationSetsCommand: (
183
+ input: ListReplicationSetsCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ListResponsePlansCommand: (
187
+ input: ListResponsePlansCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
191
+ input: ListTagsForResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1ListTimelineEventsCommand: (
195
+ input: ListTimelineEventsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1PutResourcePolicyCommand: (
199
+ input: PutResourcePolicyCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1StartIncidentCommand: (
203
+ input: StartIncidentCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1TagResourceCommand: (
207
+ input: TagResourceCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1UntagResourceCommand: (
211
+ input: UntagResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1UpdateDeletionProtectionCommand: (
215
+ input: UpdateDeletionProtectionCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1UpdateIncidentRecordCommand: (
219
+ input: UpdateIncidentRecordCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1UpdateRelatedItemsCommand: (
223
+ input: UpdateRelatedItemsCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1UpdateReplicationSetCommand: (
227
+ input: UpdateReplicationSetCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1UpdateResponsePlanCommand: (
231
+ input: UpdateResponsePlanCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1UpdateTimelineEventCommand: (
235
+ input: UpdateTimelineEventCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const deserializeAws_restJson1CreateReplicationSetCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<CreateReplicationSetCommandOutput>;
242
+ export declare const deserializeAws_restJson1CreateResponsePlanCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<CreateResponsePlanCommandOutput>;
246
+ export declare const deserializeAws_restJson1CreateTimelineEventCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<CreateTimelineEventCommandOutput>;
250
+ export declare const deserializeAws_restJson1DeleteIncidentRecordCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DeleteIncidentRecordCommandOutput>;
254
+ export declare const deserializeAws_restJson1DeleteReplicationSetCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<DeleteReplicationSetCommandOutput>;
258
+ export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<DeleteResourcePolicyCommandOutput>;
262
+ export declare const deserializeAws_restJson1DeleteResponsePlanCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<DeleteResponsePlanCommandOutput>;
266
+ export declare const deserializeAws_restJson1DeleteTimelineEventCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<DeleteTimelineEventCommandOutput>;
270
+ export declare const deserializeAws_restJson1GetIncidentRecordCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetIncidentRecordCommandOutput>;
274
+ export declare const deserializeAws_restJson1GetReplicationSetCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetReplicationSetCommandOutput>;
278
+ export declare const deserializeAws_restJson1GetResourcePoliciesCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetResourcePoliciesCommandOutput>;
282
+ export declare const deserializeAws_restJson1GetResponsePlanCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<GetResponsePlanCommandOutput>;
286
+ export declare const deserializeAws_restJson1GetTimelineEventCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<GetTimelineEventCommandOutput>;
290
+ export declare const deserializeAws_restJson1ListIncidentRecordsCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListIncidentRecordsCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListRelatedItemsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListRelatedItemsCommandOutput>;
298
+ export declare const deserializeAws_restJson1ListReplicationSetsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListReplicationSetsCommandOutput>;
302
+ export declare const deserializeAws_restJson1ListResponsePlansCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListResponsePlansCommandOutput>;
306
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<ListTagsForResourceCommandOutput>;
310
+ export declare const deserializeAws_restJson1ListTimelineEventsCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<ListTimelineEventsCommandOutput>;
314
+ export declare const deserializeAws_restJson1PutResourcePolicyCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<PutResourcePolicyCommandOutput>;
318
+ export declare const deserializeAws_restJson1StartIncidentCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<StartIncidentCommandOutput>;
322
+ export declare const deserializeAws_restJson1TagResourceCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<TagResourceCommandOutput>;
326
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UntagResourceCommandOutput>;
330
+ export declare const deserializeAws_restJson1UpdateDeletionProtectionCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<UpdateDeletionProtectionCommandOutput>;
334
+ export declare const deserializeAws_restJson1UpdateIncidentRecordCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<UpdateIncidentRecordCommandOutput>;
338
+ export declare const deserializeAws_restJson1UpdateRelatedItemsCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<UpdateRelatedItemsCommandOutput>;
342
+ export declare const deserializeAws_restJson1UpdateReplicationSetCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<UpdateReplicationSetCommandOutput>;
346
+ export declare const deserializeAws_restJson1UpdateResponsePlanCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<UpdateResponsePlanCommandOutput>;
350
+ export declare const deserializeAws_restJson1UpdateTimelineEventCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<UpdateTimelineEventCommandOutput>;