@aws-sdk/client-ssm-incidents 3.50.0 → 3.51.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 (54) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SSMIncidents.d.ts +150 -0
  3. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +102 -0
  4. package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -0
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  35. package/dist-types/ts3.4/index.d.ts +6 -0
  36. package/dist-types/ts3.4/models/index.d.ts +1 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +1296 -0
  38. package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  40. package/dist-types/ts3.4/pagination/ListIncidentRecordsPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/ListRelatedItemsPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListReplicationSetsPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListResponsePlansPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListTimelineEventsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +89 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  51. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  52. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +7 -0
  53. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +7 -0
  54. package/package.json +8 -8
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTimelineEventsInput, ListTimelineEventsOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface ListTimelineEventsCommandInput extends ListTimelineEventsInput {
6
+ }
7
+ export interface ListTimelineEventsCommandOutput extends ListTimelineEventsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTimelineEventsCommand extends $Command<ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: ListTimelineEventsCommandInput;
12
+ constructor(input: ListTimelineEventsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface PutResourcePolicyCommandInput extends PutResourcePolicyInput {
6
+ }
7
+ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: PutResourcePolicyCommandInput;
12
+ constructor(input: PutResourcePolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { StartIncidentInput, StartIncidentOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface StartIncidentCommandInput extends StartIncidentInput {
6
+ }
7
+ export interface StartIncidentCommandOutput extends StartIncidentOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartIncidentCommand extends $Command<StartIncidentCommandInput, StartIncidentCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: StartIncidentCommandInput;
12
+ constructor(input: StartIncidentCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartIncidentCommandInput, StartIncidentCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateDeletionProtectionInput, UpdateDeletionProtectionOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateDeletionProtectionCommandInput extends UpdateDeletionProtectionInput {
6
+ }
7
+ export interface UpdateDeletionProtectionCommandOutput extends UpdateDeletionProtectionOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateDeletionProtectionCommand extends $Command<UpdateDeletionProtectionCommandInput, UpdateDeletionProtectionCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateDeletionProtectionCommandInput;
12
+ constructor(input: UpdateDeletionProtectionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDeletionProtectionCommandInput, UpdateDeletionProtectionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateIncidentRecordInput, UpdateIncidentRecordOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateIncidentRecordCommandInput extends UpdateIncidentRecordInput {
6
+ }
7
+ export interface UpdateIncidentRecordCommandOutput extends UpdateIncidentRecordOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateIncidentRecordCommand extends $Command<UpdateIncidentRecordCommandInput, UpdateIncidentRecordCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateIncidentRecordCommandInput;
12
+ constructor(input: UpdateIncidentRecordCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIncidentRecordCommandInput, UpdateIncidentRecordCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateRelatedItemsInput, UpdateRelatedItemsOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateRelatedItemsCommandInput extends UpdateRelatedItemsInput {
6
+ }
7
+ export interface UpdateRelatedItemsCommandOutput extends UpdateRelatedItemsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateRelatedItemsCommand extends $Command<UpdateRelatedItemsCommandInput, UpdateRelatedItemsCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateRelatedItemsCommandInput;
12
+ constructor(input: UpdateRelatedItemsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRelatedItemsCommandInput, UpdateRelatedItemsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateReplicationSetInput, UpdateReplicationSetOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateReplicationSetCommandInput extends UpdateReplicationSetInput {
6
+ }
7
+ export interface UpdateReplicationSetCommandOutput extends UpdateReplicationSetOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateReplicationSetCommand extends $Command<UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateReplicationSetCommandInput;
12
+ constructor(input: UpdateReplicationSetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateResponsePlanInput, UpdateResponsePlanOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateResponsePlanCommandInput extends UpdateResponsePlanInput {
6
+ }
7
+ export interface UpdateResponsePlanCommandOutput extends UpdateResponsePlanOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateResponsePlanCommand extends $Command<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateResponsePlanCommandInput;
12
+ constructor(input: UpdateResponsePlanCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateTimelineEventInput, UpdateTimelineEventOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
+ export interface UpdateTimelineEventCommandInput extends UpdateTimelineEventInput {
6
+ }
7
+ export interface UpdateTimelineEventCommandOutput extends UpdateTimelineEventOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateTimelineEventCommand extends $Command<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
11
+ readonly input: UpdateTimelineEventCommandInput;
12
+ constructor(input: UpdateTimelineEventCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,29 @@
1
+ export * from "./CreateReplicationSetCommand";
2
+ export * from "./CreateResponsePlanCommand";
3
+ export * from "./CreateTimelineEventCommand";
4
+ export * from "./DeleteIncidentRecordCommand";
5
+ export * from "./DeleteReplicationSetCommand";
6
+ export * from "./DeleteResourcePolicyCommand";
7
+ export * from "./DeleteResponsePlanCommand";
8
+ export * from "./DeleteTimelineEventCommand";
9
+ export * from "./GetIncidentRecordCommand";
10
+ export * from "./GetReplicationSetCommand";
11
+ export * from "./GetResourcePoliciesCommand";
12
+ export * from "./GetResponsePlanCommand";
13
+ export * from "./GetTimelineEventCommand";
14
+ export * from "./ListIncidentRecordsCommand";
15
+ export * from "./ListRelatedItemsCommand";
16
+ export * from "./ListReplicationSetsCommand";
17
+ export * from "./ListResponsePlansCommand";
18
+ export * from "./ListTagsForResourceCommand";
19
+ export * from "./ListTimelineEventsCommand";
20
+ export * from "./PutResourcePolicyCommand";
21
+ export * from "./StartIncidentCommand";
22
+ export * from "./TagResourceCommand";
23
+ export * from "./UntagResourceCommand";
24
+ export * from "./UpdateDeletionProtectionCommand";
25
+ export * from "./UpdateIncidentRecordCommand";
26
+ export * from "./UpdateRelatedItemsCommand";
27
+ export * from "./UpdateReplicationSetCommand";
28
+ export * from "./UpdateResponsePlanCommand";
29
+ export * from "./UpdateTimelineEventCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./SSMIncidents";
2
+ export * from "./SSMIncidentsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
@@ -0,0 +1 @@
1
+ export * from "./models_0";