@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
|
+
UpdateReplicationSetInput,
|
|
10
|
+
UpdateReplicationSetOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSMIncidentsClientResolvedConfig,
|
|
16
|
+
} from "../SSMIncidentsClient";
|
|
17
|
+
export interface UpdateReplicationSetCommandInput
|
|
18
|
+
extends UpdateReplicationSetInput {}
|
|
19
|
+
export interface UpdateReplicationSetCommandOutput
|
|
20
|
+
extends UpdateReplicationSetOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateReplicationSetCommand extends $Command<
|
|
23
|
+
UpdateReplicationSetCommandInput,
|
|
24
|
+
UpdateReplicationSetCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateReplicationSetCommandInput;
|
|
28
|
+
constructor(input: UpdateReplicationSetCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateReplicationSetCommandInput,
|
|
35
|
+
UpdateReplicationSetCommandOutput
|
|
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
|
+
UpdateResponsePlanInput,
|
|
10
|
+
UpdateResponsePlanOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSMIncidentsClientResolvedConfig,
|
|
16
|
+
} from "../SSMIncidentsClient";
|
|
17
|
+
export interface UpdateResponsePlanCommandInput
|
|
18
|
+
extends UpdateResponsePlanInput {}
|
|
19
|
+
export interface UpdateResponsePlanCommandOutput
|
|
20
|
+
extends UpdateResponsePlanOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateResponsePlanCommand extends $Command<
|
|
23
|
+
UpdateResponsePlanCommandInput,
|
|
24
|
+
UpdateResponsePlanCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateResponsePlanCommandInput;
|
|
28
|
+
constructor(input: UpdateResponsePlanCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput>;
|
|
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
|
+
UpdateTimelineEventInput,
|
|
10
|
+
UpdateTimelineEventOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSMIncidentsClientResolvedConfig,
|
|
16
|
+
} from "../SSMIncidentsClient";
|
|
17
|
+
export interface UpdateTimelineEventCommandInput
|
|
18
|
+
extends UpdateTimelineEventInput {}
|
|
19
|
+
export interface UpdateTimelineEventCommandOutput
|
|
20
|
+
extends UpdateTimelineEventOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateTimelineEventCommand extends $Command<
|
|
23
|
+
UpdateTimelineEventCommandInput,
|
|
24
|
+
UpdateTimelineEventCommandOutput,
|
|
25
|
+
SSMIncidentsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateTimelineEventCommandInput;
|
|
28
|
+
constructor(input: UpdateTimelineEventCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSMIncidentsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,29 +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";
|
|
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";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./SSMIncidents";
|
|
2
|
-
export * from "./SSMIncidentsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export * from "./waiters";
|
|
7
|
-
export { SSMIncidentsServiceException } from "./models/SSMIncidentsServiceException";
|
|
1
|
+
export * from "./SSMIncidents";
|
|
2
|
+
export * from "./SSMIncidentsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { SSMIncidentsServiceException } from "./models/SSMIncidentsServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SSMIncidentsServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|