@aws-sdk/client-ssm-incidents 3.169.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 +8 -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,17 +1,41 @@
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 { DeleteReplicationSetInput, DeleteReplicationSetOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface DeleteReplicationSetCommandInput extends DeleteReplicationSetInput {
6
- }
7
- export interface DeleteReplicationSetCommandOutput extends DeleteReplicationSetOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteReplicationSetCommand extends $Command<DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: DeleteReplicationSetCommandInput;
12
- constructor(input: DeleteReplicationSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteReplicationSetInput,
10
+ DeleteReplicationSetOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface DeleteReplicationSetCommandInput
18
+ extends DeleteReplicationSetInput {}
19
+ export interface DeleteReplicationSetCommandOutput
20
+ extends DeleteReplicationSetOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteReplicationSetCommand extends $Command<
24
+ DeleteReplicationSetCommandInput,
25
+ DeleteReplicationSetCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteReplicationSetCommandInput;
29
+ constructor(input: DeleteReplicationSetCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteReplicationSetCommandInput,
37
+ DeleteReplicationSetCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyInput {
6
- }
7
- export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: DeleteResourcePolicyCommandInput;
12
- constructor(input: DeleteResourcePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteResourcePolicyInput,
10
+ DeleteResourcePolicyOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface DeleteResourcePolicyCommandInput
18
+ extends DeleteResourcePolicyInput {}
19
+ export interface DeleteResourcePolicyCommandOutput
20
+ extends DeleteResourcePolicyOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteResourcePolicyCommand extends $Command<
24
+ DeleteResourcePolicyCommandInput,
25
+ DeleteResourcePolicyCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteResourcePolicyCommandInput;
29
+ constructor(input: DeleteResourcePolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteResourcePolicyCommandInput,
37
+ DeleteResourcePolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { DeleteResponsePlanInput, DeleteResponsePlanOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface DeleteResponsePlanCommandInput extends DeleteResponsePlanInput {
6
- }
7
- export interface DeleteResponsePlanCommandOutput extends DeleteResponsePlanOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteResponsePlanCommand extends $Command<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: DeleteResponsePlanCommandInput;
12
- constructor(input: DeleteResponsePlanCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteResponsePlanInput,
10
+ DeleteResponsePlanOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface DeleteResponsePlanCommandInput
18
+ extends DeleteResponsePlanInput {}
19
+ export interface DeleteResponsePlanCommandOutput
20
+ extends DeleteResponsePlanOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteResponsePlanCommand extends $Command<
24
+ DeleteResponsePlanCommandInput,
25
+ DeleteResponsePlanCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteResponsePlanCommandInput;
29
+ constructor(input: DeleteResponsePlanCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface DeleteTimelineEventCommandInput extends DeleteTimelineEventInput {
6
- }
7
- export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteTimelineEventCommand extends $Command<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: DeleteTimelineEventCommandInput;
12
- constructor(input: DeleteTimelineEventCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteTimelineEventInput,
10
+ DeleteTimelineEventOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface DeleteTimelineEventCommandInput
18
+ extends DeleteTimelineEventInput {}
19
+ export interface DeleteTimelineEventCommandOutput
20
+ extends DeleteTimelineEventOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteTimelineEventCommand extends $Command<
24
+ DeleteTimelineEventCommandInput,
25
+ DeleteTimelineEventCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteTimelineEventCommandInput;
29
+ constructor(input: DeleteTimelineEventCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface GetIncidentRecordCommandInput extends GetIncidentRecordInput {
6
- }
7
- export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetIncidentRecordCommand extends $Command<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: GetIncidentRecordCommandInput;
12
- constructor(input: GetIncidentRecordCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetIncidentRecordInput,
10
+ GetIncidentRecordOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface GetIncidentRecordCommandInput extends GetIncidentRecordInput {}
18
+ export interface GetIncidentRecordCommandOutput
19
+ extends GetIncidentRecordOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetIncidentRecordCommand extends $Command<
23
+ GetIncidentRecordCommandInput,
24
+ GetIncidentRecordCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: GetIncidentRecordCommandInput;
28
+ constructor(input: GetIncidentRecordCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMIncidentsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface GetReplicationSetCommandInput extends GetReplicationSetInput {
6
- }
7
- export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetReplicationSetCommand extends $Command<GetReplicationSetCommandInput, GetReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: GetReplicationSetCommandInput;
12
- constructor(input: GetReplicationSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReplicationSetCommandInput, GetReplicationSetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetReplicationSetInput,
10
+ GetReplicationSetOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface GetReplicationSetCommandInput extends GetReplicationSetInput {}
18
+ export interface GetReplicationSetCommandOutput
19
+ extends GetReplicationSetOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetReplicationSetCommand extends $Command<
23
+ GetReplicationSetCommandInput,
24
+ GetReplicationSetCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: GetReplicationSetCommandInput;
28
+ constructor(input: GetReplicationSetCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMIncidentsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetReplicationSetCommandInput, GetReplicationSetCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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 { GetResourcePoliciesInput, GetResourcePoliciesOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface GetResourcePoliciesCommandInput extends GetResourcePoliciesInput {
6
- }
7
- export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetResourcePoliciesCommand extends $Command<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: GetResourcePoliciesCommandInput;
12
- constructor(input: GetResourcePoliciesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetResourcePoliciesInput,
10
+ GetResourcePoliciesOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface GetResourcePoliciesCommandInput
18
+ extends GetResourcePoliciesInput {}
19
+ export interface GetResourcePoliciesCommandOutput
20
+ extends GetResourcePoliciesOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetResourcePoliciesCommand extends $Command<
24
+ GetResourcePoliciesCommandInput,
25
+ GetResourcePoliciesCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: GetResourcePoliciesCommandInput;
29
+ constructor(input: GetResourcePoliciesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { GetResponsePlanInput, GetResponsePlanOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface GetResponsePlanCommandInput extends GetResponsePlanInput {
6
- }
7
- export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetResponsePlanCommand extends $Command<GetResponsePlanCommandInput, GetResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: GetResponsePlanCommandInput;
12
- constructor(input: GetResponsePlanCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResponsePlanCommandInput, GetResponsePlanCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetResponsePlanInput,
10
+ GetResponsePlanOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface GetResponsePlanCommandInput extends GetResponsePlanInput {}
18
+ export interface GetResponsePlanCommandOutput
19
+ extends GetResponsePlanOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetResponsePlanCommand extends $Command<
23
+ GetResponsePlanCommandInput,
24
+ GetResponsePlanCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: GetResponsePlanCommandInput;
28
+ constructor(input: GetResponsePlanCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMIncidentsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetResponsePlanCommandInput, GetResponsePlanCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { GetTimelineEventInput, GetTimelineEventOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface GetTimelineEventCommandInput extends GetTimelineEventInput {
6
- }
7
- export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetTimelineEventCommand extends $Command<GetTimelineEventCommandInput, GetTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: GetTimelineEventCommandInput;
12
- constructor(input: GetTimelineEventCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTimelineEventCommandInput, GetTimelineEventCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetTimelineEventInput,
10
+ GetTimelineEventOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface GetTimelineEventCommandInput extends GetTimelineEventInput {}
18
+ export interface GetTimelineEventCommandOutput
19
+ extends GetTimelineEventOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetTimelineEventCommand extends $Command<
23
+ GetTimelineEventCommandInput,
24
+ GetTimelineEventCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: GetTimelineEventCommandInput;
28
+ constructor(input: GetTimelineEventCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMIncidentsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetTimelineEventCommandInput, GetTimelineEventCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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 { ListIncidentRecordsInput, ListIncidentRecordsOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface ListIncidentRecordsCommandInput extends ListIncidentRecordsInput {
6
- }
7
- export interface ListIncidentRecordsCommandOutput extends ListIncidentRecordsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListIncidentRecordsCommand extends $Command<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: ListIncidentRecordsCommandInput;
12
- constructor(input: ListIncidentRecordsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListIncidentRecordsInput,
10
+ ListIncidentRecordsOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface ListIncidentRecordsCommandInput
18
+ extends ListIncidentRecordsInput {}
19
+ export interface ListIncidentRecordsCommandOutput
20
+ extends ListIncidentRecordsOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListIncidentRecordsCommand extends $Command<
24
+ ListIncidentRecordsCommandInput,
25
+ ListIncidentRecordsCommandOutput,
26
+ SSMIncidentsClientResolvedConfig
27
+ > {
28
+ readonly input: ListIncidentRecordsCommandInput;
29
+ constructor(input: ListIncidentRecordsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMIncidentsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { ListRelatedItemsInput, ListRelatedItemsOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface ListRelatedItemsCommandInput extends ListRelatedItemsInput {
6
- }
7
- export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListRelatedItemsCommand extends $Command<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: ListRelatedItemsCommandInput;
12
- constructor(input: ListRelatedItemsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListRelatedItemsInput,
10
+ ListRelatedItemsOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface ListRelatedItemsCommandInput extends ListRelatedItemsInput {}
18
+ export interface ListRelatedItemsCommandOutput
19
+ extends ListRelatedItemsOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListRelatedItemsCommand extends $Command<
23
+ ListRelatedItemsCommandInput,
24
+ ListRelatedItemsCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: ListRelatedItemsCommandInput;
28
+ constructor(input: ListRelatedItemsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMIncidentsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }