@aws-sdk/client-ssm-incidents 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/SSMIncidents.d.ts +104 -109
- package/dist-types/ts3.4/SSMIncidentsClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchGetIncidentFindingsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListIncidentFindingsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +3 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListReplicationSetsInput,
|
|
4
|
-
ListReplicationSetsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListReplicationSetsInput, ListReplicationSetsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListReplicationSetsCommandInput
|
|
8
|
-
extends ListReplicationSetsInput {}
|
|
4
|
+
export interface ListReplicationSetsCommandInput extends ListReplicationSetsInput {}
|
|
9
5
|
export interface ListReplicationSetsCommandOutput
|
|
10
|
-
extends ListReplicationSetsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListReplicationSetsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListReplicationSetsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListReplicationSetsCommandInput
|
|
9
|
+
input: ListReplicationSetsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListReplicationSetsCommandInput,
|
|
17
12
|
ListReplicationSetsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListResponsePlansInput,
|
|
4
|
-
ListResponsePlansOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListResponsePlansInput, ListResponsePlansOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListResponsePlansCommandInput extends ListResponsePlansInput {}
|
|
8
|
-
export interface ListResponsePlansCommandOutput
|
|
9
|
-
extends ListResponsePlansOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListResponsePlansCommandOutput extends ListResponsePlansOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListResponsePlansCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListResponsePlansCommandInput
|
|
8
|
+
input: ListResponsePlansCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListResponsePlansCommandInput,
|
|
16
11
|
ListResponsePlansCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTimelineEventsInput,
|
|
4
|
-
ListTimelineEventsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTimelineEventsInput, ListTimelineEventsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTimelineEventsCommandInput
|
|
8
|
-
extends ListTimelineEventsInput {}
|
|
4
|
+
export interface ListTimelineEventsCommandInput extends ListTimelineEventsInput {}
|
|
9
5
|
export interface ListTimelineEventsCommandOutput
|
|
10
|
-
extends ListTimelineEventsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTimelineEventsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTimelineEventsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTimelineEventsCommandInput
|
|
9
|
+
input: ListTimelineEventsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTimelineEventsCommandInput,
|
|
17
12
|
ListTimelineEventsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTimelineEventsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTimelineEventsCommandInput
|
|
18
|
+
input: ListTimelineEventsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTimelineEventsCommandInput,
|
|
26
21
|
ListTimelineEventsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutResourcePolicyInput,
|
|
4
|
-
PutResourcePolicyOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface PutResourcePolicyCommandInput extends PutResourcePolicyInput {}
|
|
8
|
-
export interface PutResourcePolicyCommandOutput
|
|
9
|
-
extends PutResourcePolicyOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, __MetadataBearer {}
|
|
11
6
|
declare const PutResourcePolicyCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: PutResourcePolicyCommandInput
|
|
8
|
+
input: PutResourcePolicyCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
PutResourcePolicyCommandInput,
|
|
16
11
|
PutResourcePolicyCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: PutResourcePolicyCommandInput
|
|
17
|
+
input: PutResourcePolicyCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
PutResourcePolicyCommandInput,
|
|
25
20
|
PutResourcePolicyCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartIncidentInput, StartIncidentOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartIncidentCommandInput extends StartIncidentInput {}
|
|
5
|
-
export interface StartIncidentCommandOutput
|
|
6
|
-
extends StartIncidentOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartIncidentCommandOutput extends StartIncidentOutput, __MetadataBearer {}
|
|
8
6
|
declare const StartIncidentCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartIncidentCommandInput
|
|
8
|
+
input: StartIncidentCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartIncidentCommandInput,
|
|
13
11
|
StartIncidentCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartIncidentCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartIncidentCommandInput
|
|
17
|
+
input: StartIncidentCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartIncidentCommandInput,
|
|
22
20
|
StartIncidentCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDeletionProtectionInput,
|
|
4
|
-
UpdateDeletionProtectionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDeletionProtectionInput, UpdateDeletionProtectionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDeletionProtectionCommandInput
|
|
8
|
-
extends UpdateDeletionProtectionInput {}
|
|
4
|
+
export interface UpdateDeletionProtectionCommandInput extends UpdateDeletionProtectionInput {}
|
|
9
5
|
export interface UpdateDeletionProtectionCommandOutput
|
|
10
|
-
extends UpdateDeletionProtectionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateDeletionProtectionOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateDeletionProtectionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateDeletionProtectionCommandInput
|
|
9
|
+
input: UpdateDeletionProtectionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateDeletionProtectionCommandInput,
|
|
17
12
|
UpdateDeletionProtectionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateDeletionProtectionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateDeletionProtectionCommandInput
|
|
18
|
+
input: UpdateDeletionProtectionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateDeletionProtectionCommandInput,
|
|
26
21
|
UpdateDeletionProtectionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateIncidentRecordInput,
|
|
4
|
-
UpdateIncidentRecordOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateIncidentRecordInput, UpdateIncidentRecordOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateIncidentRecordCommandInput
|
|
8
|
-
extends UpdateIncidentRecordInput {}
|
|
4
|
+
export interface UpdateIncidentRecordCommandInput extends UpdateIncidentRecordInput {}
|
|
9
5
|
export interface UpdateIncidentRecordCommandOutput
|
|
10
|
-
extends UpdateIncidentRecordOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateIncidentRecordOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateIncidentRecordCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateIncidentRecordCommandInput
|
|
9
|
+
input: UpdateIncidentRecordCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateIncidentRecordCommandInput,
|
|
17
12
|
UpdateIncidentRecordCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateIncidentRecordCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateIncidentRecordCommandInput
|
|
18
|
+
input: UpdateIncidentRecordCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateIncidentRecordCommandInput,
|
|
26
21
|
UpdateIncidentRecordCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateRelatedItemsInput,
|
|
4
|
-
UpdateRelatedItemsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateRelatedItemsInput, UpdateRelatedItemsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateRelatedItemsCommandInput
|
|
8
|
-
extends UpdateRelatedItemsInput {}
|
|
4
|
+
export interface UpdateRelatedItemsCommandInput extends UpdateRelatedItemsInput {}
|
|
9
5
|
export interface UpdateRelatedItemsCommandOutput
|
|
10
|
-
extends UpdateRelatedItemsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateRelatedItemsOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateRelatedItemsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateRelatedItemsCommandInput
|
|
9
|
+
input: UpdateRelatedItemsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateRelatedItemsCommandInput,
|
|
17
12
|
UpdateRelatedItemsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateRelatedItemsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateRelatedItemsCommandInput
|
|
18
|
+
input: UpdateRelatedItemsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateRelatedItemsCommandInput,
|
|
26
21
|
UpdateRelatedItemsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateReplicationSetInput,
|
|
4
|
-
UpdateReplicationSetOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateReplicationSetInput, UpdateReplicationSetOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateReplicationSetCommandInput
|
|
8
|
-
extends UpdateReplicationSetInput {}
|
|
4
|
+
export interface UpdateReplicationSetCommandInput extends UpdateReplicationSetInput {}
|
|
9
5
|
export interface UpdateReplicationSetCommandOutput
|
|
10
|
-
extends UpdateReplicationSetOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateReplicationSetOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateReplicationSetCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateReplicationSetCommandInput
|
|
9
|
+
input: UpdateReplicationSetCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateReplicationSetCommandInput,
|
|
17
12
|
UpdateReplicationSetCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateReplicationSetCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateReplicationSetCommandInput
|
|
18
|
+
input: UpdateReplicationSetCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateReplicationSetCommandInput,
|
|
26
21
|
UpdateReplicationSetCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateResponsePlanInput,
|
|
4
|
-
UpdateResponsePlanOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateResponsePlanInput, UpdateResponsePlanOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateResponsePlanCommandInput
|
|
8
|
-
extends UpdateResponsePlanInput {}
|
|
4
|
+
export interface UpdateResponsePlanCommandInput extends UpdateResponsePlanInput {}
|
|
9
5
|
export interface UpdateResponsePlanCommandOutput
|
|
10
|
-
extends UpdateResponsePlanOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateResponsePlanOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateResponsePlanCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateResponsePlanCommandInput
|
|
9
|
+
input: UpdateResponsePlanCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateResponsePlanCommandInput,
|
|
17
12
|
UpdateResponsePlanCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateResponsePlanCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateResponsePlanCommandInput
|
|
18
|
+
input: UpdateResponsePlanCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateResponsePlanCommandInput,
|
|
26
21
|
UpdateResponsePlanCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateTimelineEventInput,
|
|
4
|
-
UpdateTimelineEventOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateTimelineEventInput, UpdateTimelineEventOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateTimelineEventCommandInput
|
|
8
|
-
extends UpdateTimelineEventInput {}
|
|
4
|
+
export interface UpdateTimelineEventCommandInput extends UpdateTimelineEventInput {}
|
|
9
5
|
export interface UpdateTimelineEventCommandOutput
|
|
10
|
-
extends UpdateTimelineEventOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateTimelineEventOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateTimelineEventCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateTimelineEventCommandInput
|
|
9
|
+
input: UpdateTimelineEventCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateTimelineEventCommandInput,
|
|
17
12
|
UpdateTimelineEventCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateTimelineEventCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateTimelineEventCommandInput
|
|
18
|
+
input: UpdateTimelineEventCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateTimelineEventCommandInput,
|
|
26
21
|
UpdateTimelineEventCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface SSMIncidentsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -7,8 +7,7 @@ export declare const SsmTargetAccount: {
|
|
|
7
7
|
readonly IMPACTED_ACCOUNT: "IMPACTED_ACCOUNT";
|
|
8
8
|
readonly RESPONSE_PLAN_OWNER_ACCOUNT: "RESPONSE_PLAN_OWNER_ACCOUNT";
|
|
9
9
|
};
|
|
10
|
-
export type SsmTargetAccount =
|
|
11
|
-
(typeof SsmTargetAccount)[keyof typeof SsmTargetAccount];
|
|
10
|
+
export type SsmTargetAccount = (typeof SsmTargetAccount)[keyof typeof SsmTargetAccount];
|
|
12
11
|
export declare const ResourceType: {
|
|
13
12
|
readonly INCIDENT_RECORD: "INCIDENT_RECORD";
|
|
14
13
|
readonly REPLICATION_SET: "REPLICATION_SET";
|
|
@@ -25,8 +24,7 @@ export declare const IncidentRecordStatus: {
|
|
|
25
24
|
readonly OPEN: "OPEN";
|
|
26
25
|
readonly RESOLVED: "RESOLVED";
|
|
27
26
|
};
|
|
28
|
-
export type IncidentRecordStatus =
|
|
29
|
-
(typeof IncidentRecordStatus)[keyof typeof IncidentRecordStatus];
|
|
27
|
+
export type IncidentRecordStatus = (typeof IncidentRecordStatus)[keyof typeof IncidentRecordStatus];
|
|
30
28
|
export declare const RegionStatus: {
|
|
31
29
|
readonly ACTIVE: "ACTIVE";
|
|
32
30
|
readonly CREATING: "CREATING";
|
|
@@ -41,8 +39,7 @@ export declare const ReplicationSetStatus: {
|
|
|
41
39
|
readonly FAILED: "FAILED";
|
|
42
40
|
readonly UPDATING: "UPDATING";
|
|
43
41
|
};
|
|
44
|
-
export type ReplicationSetStatus =
|
|
45
|
-
(typeof ReplicationSetStatus)[keyof typeof ReplicationSetStatus];
|
|
42
|
+
export type ReplicationSetStatus = (typeof ReplicationSetStatus)[keyof typeof ReplicationSetStatus];
|
|
46
43
|
export declare const ItemType: {
|
|
47
44
|
readonly ANALYSIS: "ANALYSIS";
|
|
48
45
|
readonly ATTACHMENT: "ATTACHMENT";
|
|
@@ -58,8 +55,7 @@ export type ItemType = (typeof ItemType)[keyof typeof ItemType];
|
|
|
58
55
|
export declare const TimelineEventSort: {
|
|
59
56
|
readonly EVENT_TIME: "EVENT_TIME";
|
|
60
57
|
};
|
|
61
|
-
export type TimelineEventSort =
|
|
62
|
-
(typeof TimelineEventSort)[keyof typeof TimelineEventSort];
|
|
58
|
+
export type TimelineEventSort = (typeof TimelineEventSort)[keyof typeof TimelineEventSort];
|
|
63
59
|
export declare const SortOrder: {
|
|
64
60
|
readonly ASCENDING: "ASCENDING";
|
|
65
61
|
readonly DESCENDING: "DESCENDING";
|
|
@@ -4,41 +4,31 @@ import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsS
|
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServerException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServerException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
15
|
readonly name: "ResourceNotFoundException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
17
|
resourceIdentifier?: string | undefined;
|
|
22
18
|
resourceType?: ResourceType | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
26
20
|
}
|
|
27
21
|
export declare class ThrottlingException extends __BaseException {
|
|
28
22
|
readonly name: "ThrottlingException";
|
|
29
23
|
readonly $fault: "client";
|
|
30
24
|
serviceCode: ServiceCode | undefined;
|
|
31
25
|
quotaCode: string | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
34
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
35
27
|
}
|
|
36
28
|
export declare class ValidationException extends __BaseException {
|
|
37
29
|
readonly name: "ValidationException";
|
|
38
30
|
readonly $fault: "client";
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
41
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
42
32
|
}
|
|
43
33
|
export declare class ConflictException extends __BaseException {
|
|
44
34
|
readonly name: "ConflictException";
|
|
@@ -55,7 +45,5 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
55
45
|
resourceType?: ResourceType | undefined;
|
|
56
46
|
serviceCode: ServiceCode | undefined;
|
|
57
47
|
quotaCode: string | undefined;
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
60
|
-
);
|
|
48
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
61
49
|
}
|
|
@@ -259,9 +259,7 @@ export interface PagerDutyConfiguration {
|
|
|
259
259
|
secretId: string | undefined;
|
|
260
260
|
pagerDutyIncidentConfiguration: PagerDutyIncidentConfiguration | undefined;
|
|
261
261
|
}
|
|
262
|
-
export type Integration =
|
|
263
|
-
| Integration.PagerDutyConfigurationMember
|
|
264
|
-
| Integration.$UnknownMember;
|
|
262
|
+
export type Integration = Integration.PagerDutyConfigurationMember | Integration.$UnknownMember;
|
|
265
263
|
export declare namespace Integration {
|
|
266
264
|
interface PagerDutyConfigurationMember {
|
|
267
265
|
pagerDutyConfiguration: PagerDutyConfiguration;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { SSMIncidentsClient } from "../SSMIncidentsClient";
|
|
3
|
-
export interface SSMIncidentsPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface SSMIncidentsPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: SSMIncidentsClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|