@aws-sdk/client-ssm-incidents 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SSMIncidents.d.ts +497 -150
- package/dist-types/ts3.4/SSMIncidentsClient.d.ts +279 -102
- package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/SSMIncidentsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +954 -1173
- package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListIncidentRecordsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRelatedItemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListReplicationSetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResponsePlansPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTimelineEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteReplicationSetCommand extends $Command<
|
|
23
|
+
DeleteReplicationSetCommandInput,
|
|
24
|
+
DeleteReplicationSetCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteReplicationSetCommandInput;
|
|
28
|
+
constructor(input: DeleteReplicationSetCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteReplicationSetCommandInput,
|
|
35
|
+
DeleteReplicationSetCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
23
|
+
DeleteResourcePolicyCommandInput,
|
|
24
|
+
DeleteResourcePolicyCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
28
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteResourcePolicyCommandInput,
|
|
35
|
+
DeleteResourcePolicyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteResponsePlanCommand extends $Command<
|
|
23
|
+
DeleteResponsePlanCommandInput,
|
|
24
|
+
DeleteResponsePlanCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteResponsePlanCommandInput;
|
|
28
|
+
constructor(input: DeleteResponsePlanCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteTimelineEventCommand extends $Command<
|
|
23
|
+
DeleteTimelineEventCommandInput,
|
|
24
|
+
DeleteTimelineEventCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteTimelineEventCommandInput;
|
|
28
|
+
constructor(input: DeleteTimelineEventCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetIncidentRecordCommand extends $Command<
|
|
22
|
+
GetIncidentRecordCommandInput,
|
|
23
|
+
GetIncidentRecordCommandOutput,
|
|
24
|
+
SSMIncidentsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetIncidentRecordCommandInput;
|
|
27
|
+
constructor(input: GetIncidentRecordCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetReplicationSetCommand extends $Command<
|
|
22
|
+
GetReplicationSetCommandInput,
|
|
23
|
+
GetReplicationSetCommandOutput,
|
|
24
|
+
SSMIncidentsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetReplicationSetCommandInput;
|
|
27
|
+
constructor(input: GetReplicationSetCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetReplicationSetCommandInput, GetReplicationSetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetResourcePoliciesCommand extends $Command<
|
|
23
|
+
GetResourcePoliciesCommandInput,
|
|
24
|
+
GetResourcePoliciesCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourcePoliciesCommandInput;
|
|
28
|
+
constructor(input: GetResourcePoliciesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetResponsePlanCommand extends $Command<
|
|
22
|
+
GetResponsePlanCommandInput,
|
|
23
|
+
GetResponsePlanCommandOutput,
|
|
24
|
+
SSMIncidentsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetResponsePlanCommandInput;
|
|
27
|
+
constructor(input: GetResponsePlanCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetResponsePlanCommandInput, GetResponsePlanCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetTimelineEventCommand extends $Command<
|
|
22
|
+
GetTimelineEventCommandInput,
|
|
23
|
+
GetTimelineEventCommandOutput,
|
|
24
|
+
SSMIncidentsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetTimelineEventCommandInput;
|
|
27
|
+
constructor(input: GetTimelineEventCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetTimelineEventCommandInput, GetTimelineEventCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListIncidentRecordsCommand extends $Command<
|
|
23
|
+
ListIncidentRecordsCommandInput,
|
|
24
|
+
ListIncidentRecordsCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListIncidentRecordsCommandInput;
|
|
28
|
+
constructor(input: ListIncidentRecordsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListRelatedItemsCommand extends $Command<
|
|
22
|
+
ListRelatedItemsCommandInput,
|
|
23
|
+
ListRelatedItemsCommandOutput,
|
|
24
|
+
SSMIncidentsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListRelatedItemsCommandInput;
|
|
27
|
+
constructor(input: ListRelatedItemsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|