@aws-sdk/client-ssm-contacts 3.299.0 → 3.301.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/README.md +101 -5
- package/dist-cjs/SSMContacts.js +180 -0
- package/dist-cjs/commands/CreateRotationCommand.js +45 -0
- package/dist-cjs/commands/CreateRotationOverrideCommand.js +45 -0
- package/dist-cjs/commands/DeleteRotationCommand.js +45 -0
- package/dist-cjs/commands/DeleteRotationOverrideCommand.js +45 -0
- package/dist-cjs/commands/GetRotationCommand.js +45 -0
- package/dist-cjs/commands/GetRotationOverrideCommand.js +45 -0
- package/dist-cjs/commands/ListPageResolutionsCommand.js +45 -0
- package/dist-cjs/commands/ListPreviewRotationShiftsCommand.js +45 -0
- package/dist-cjs/commands/ListRotationOverridesCommand.js +45 -0
- package/dist-cjs/commands/ListRotationShiftsCommand.js +45 -0
- package/dist-cjs/commands/ListRotationsCommand.js +45 -0
- package/dist-cjs/commands/UpdateRotationCommand.js +45 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +18 -1
- package/dist-cjs/pagination/ListPageResolutionsPaginator.js +28 -0
- package/dist-cjs/pagination/ListPreviewRotationShiftsPaginator.js +29 -0
- package/dist-cjs/pagination/ListRotationOverridesPaginator.js +29 -0
- package/dist-cjs/pagination/ListRotationShiftsPaginator.js +29 -0
- package/dist-cjs/pagination/ListRotationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1327 -107
- package/dist-es/SSMContacts.js +180 -0
- package/dist-es/commands/CreateRotationCommand.js +41 -0
- package/dist-es/commands/CreateRotationOverrideCommand.js +41 -0
- package/dist-es/commands/DeleteRotationCommand.js +41 -0
- package/dist-es/commands/DeleteRotationOverrideCommand.js +41 -0
- package/dist-es/commands/GetRotationCommand.js +41 -0
- package/dist-es/commands/GetRotationOverrideCommand.js +41 -0
- package/dist-es/commands/ListPageResolutionsCommand.js +41 -0
- package/dist-es/commands/ListPreviewRotationShiftsCommand.js +41 -0
- package/dist-es/commands/ListRotationOverridesCommand.js +41 -0
- package/dist-es/commands/ListRotationShiftsCommand.js +41 -0
- package/dist-es/commands/ListRotationsCommand.js +41 -0
- package/dist-es/commands/UpdateRotationCommand.js +41 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +17 -0
- package/dist-es/pagination/ListPageResolutionsPaginator.js +24 -0
- package/dist-es/pagination/ListPreviewRotationShiftsPaginator.js +25 -0
- package/dist-es/pagination/ListRotationOverridesPaginator.js +25 -0
- package/dist-es/pagination/ListRotationShiftsPaginator.js +25 -0
- package/dist-es/pagination/ListRotationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +1306 -110
- package/dist-types/SSMContacts.d.ts +114 -10
- package/dist-types/SSMContactsClient.d.ts +19 -7
- package/dist-types/commands/AcceptPageCommand.d.ts +9 -2
- package/dist-types/commands/ActivateContactChannelCommand.d.ts +5 -2
- package/dist-types/commands/CreateContactChannelCommand.d.ts +11 -2
- package/dist-types/commands/CreateContactCommand.d.ts +36 -3
- package/dist-types/commands/CreateRotationCommand.d.ts +130 -0
- package/dist-types/commands/CreateRotationOverrideCommand.d.ts +88 -0
- package/dist-types/commands/DeactivateContactChannelCommand.d.ts +4 -2
- package/dist-types/commands/DeleteContactChannelCommand.d.ts +4 -2
- package/dist-types/commands/DeleteContactCommand.d.ts +7 -2
- package/dist-types/commands/DeleteRotationCommand.d.ts +83 -0
- package/dist-types/commands/DeleteRotationOverrideCommand.d.ts +80 -0
- package/dist-types/commands/DescribeEngagementCommand.d.ts +4 -2
- package/dist-types/commands/DescribePageCommand.d.ts +4 -2
- package/dist-types/commands/GetContactChannelCommand.d.ts +4 -2
- package/dist-types/commands/GetContactCommand.d.ts +4 -2
- package/dist-types/commands/GetContactPolicyCommand.d.ts +4 -2
- package/dist-types/commands/GetRotationCommand.d.ts +79 -0
- package/dist-types/commands/GetRotationOverrideCommand.d.ts +80 -0
- package/dist-types/commands/ListContactChannelsCommand.d.ts +6 -2
- package/dist-types/commands/ListContactsCommand.d.ts +7 -2
- package/dist-types/commands/ListEngagementsCommand.d.ts +10 -2
- package/dist-types/commands/ListPageReceiptsCommand.d.ts +7 -3
- package/dist-types/commands/ListPageResolutionsCommand.d.ts +84 -0
- package/dist-types/commands/ListPagesByContactCommand.d.ts +6 -2
- package/dist-types/commands/ListPagesByEngagementCommand.d.ts +6 -2
- package/dist-types/commands/ListPreviewRotationShiftsCommand.d.ts +132 -0
- package/dist-types/commands/ListRotationOverridesCommand.d.ts +83 -0
- package/dist-types/commands/ListRotationShiftsCommand.d.ts +86 -0
- package/dist-types/commands/ListRotationsCommand.d.ts +81 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -2
- package/dist-types/commands/PutContactPolicyCommand.d.ts +5 -2
- package/dist-types/commands/SendActivationCodeCommand.d.ts +4 -2
- package/dist-types/commands/StartEngagementCommand.d.ts +11 -2
- package/dist-types/commands/StopEngagementCommand.d.ts +5 -2
- package/dist-types/commands/TagResourceCommand.d.ts +11 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -3
- package/dist-types/commands/UpdateContactChannelCommand.d.ts +8 -2
- package/dist-types/commands/UpdateContactCommand.d.ts +28 -3
- package/dist-types/commands/UpdateRotationCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +757 -25
- package/dist-types/pagination/ListPageResolutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPreviewRotationShiftsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRotationOverridesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRotationShiftsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRotationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/SSMContacts.d.ts +204 -0
- package/dist-types/ts3.4/SSMContactsClient.d.ts +74 -2
- package/dist-types/ts3.4/commands/CreateRotationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateRotationOverrideCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteRotationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteRotationOverrideCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetRotationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetRotationOverrideCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPageResolutionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPreviewRotationShiftsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListRotationOverridesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListRotationShiftsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListRotationsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateRotationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +196 -1
- package/dist-types/ts3.4/pagination/ListPageResolutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPreviewRotationShiftsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRotationOverridesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRotationShiftsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRotationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +144 -0
- package/package.json +8 -8
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateRotationOverrideRequest,
|
|
11
|
+
CreateRotationOverrideResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface CreateRotationOverrideCommandInput
|
|
19
|
+
extends CreateRotationOverrideRequest {}
|
|
20
|
+
export interface CreateRotationOverrideCommandOutput
|
|
21
|
+
extends CreateRotationOverrideResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateRotationOverrideCommand extends $Command<
|
|
24
|
+
CreateRotationOverrideCommandInput,
|
|
25
|
+
CreateRotationOverrideCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateRotationOverrideCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateRotationOverrideCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateRotationOverrideCommandInput,
|
|
37
|
+
CreateRotationOverrideCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteRotationRequest,
|
|
11
|
+
DeleteRotationResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface DeleteRotationCommandInput extends DeleteRotationRequest {}
|
|
19
|
+
export interface DeleteRotationCommandOutput
|
|
20
|
+
extends DeleteRotationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteRotationCommand extends $Command<
|
|
23
|
+
DeleteRotationCommandInput,
|
|
24
|
+
DeleteRotationCommandOutput,
|
|
25
|
+
SSMContactsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteRotationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: DeleteRotationCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteRotationCommandInput, DeleteRotationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteRotationOverrideRequest,
|
|
11
|
+
DeleteRotationOverrideResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface DeleteRotationOverrideCommandInput
|
|
19
|
+
extends DeleteRotationOverrideRequest {}
|
|
20
|
+
export interface DeleteRotationOverrideCommandOutput
|
|
21
|
+
extends DeleteRotationOverrideResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteRotationOverrideCommand extends $Command<
|
|
24
|
+
DeleteRotationOverrideCommandInput,
|
|
25
|
+
DeleteRotationOverrideCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteRotationOverrideCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteRotationOverrideCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteRotationOverrideCommandInput,
|
|
37
|
+
DeleteRotationOverrideCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetRotationRequest, GetRotationResult } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SSMContactsClientResolvedConfig,
|
|
14
|
+
} from "../SSMContactsClient";
|
|
15
|
+
export interface GetRotationCommandInput extends GetRotationRequest {}
|
|
16
|
+
export interface GetRotationCommandOutput
|
|
17
|
+
extends GetRotationResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetRotationCommand extends $Command<
|
|
20
|
+
GetRotationCommandInput,
|
|
21
|
+
GetRotationCommandOutput,
|
|
22
|
+
SSMContactsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetRotationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetRotationCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetRotationCommandInput, GetRotationCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
GetRotationOverrideRequest,
|
|
11
|
+
GetRotationOverrideResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface GetRotationOverrideCommandInput
|
|
19
|
+
extends GetRotationOverrideRequest {}
|
|
20
|
+
export interface GetRotationOverrideCommandOutput
|
|
21
|
+
extends GetRotationOverrideResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetRotationOverrideCommand extends $Command<
|
|
24
|
+
GetRotationOverrideCommandInput,
|
|
25
|
+
GetRotationOverrideCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRotationOverrideCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetRotationOverrideCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetRotationOverrideCommandInput, GetRotationOverrideCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListPageResolutionsRequest,
|
|
11
|
+
ListPageResolutionsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface ListPageResolutionsCommandInput
|
|
19
|
+
extends ListPageResolutionsRequest {}
|
|
20
|
+
export interface ListPageResolutionsCommandOutput
|
|
21
|
+
extends ListPageResolutionsResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListPageResolutionsCommand extends $Command<
|
|
24
|
+
ListPageResolutionsCommandInput,
|
|
25
|
+
ListPageResolutionsCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPageResolutionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListPageResolutionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListPageResolutionsCommandInput, ListPageResolutionsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListPreviewRotationShiftsRequest,
|
|
11
|
+
ListPreviewRotationShiftsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface ListPreviewRotationShiftsCommandInput
|
|
19
|
+
extends ListPreviewRotationShiftsRequest {}
|
|
20
|
+
export interface ListPreviewRotationShiftsCommandOutput
|
|
21
|
+
extends ListPreviewRotationShiftsResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListPreviewRotationShiftsCommand extends $Command<
|
|
24
|
+
ListPreviewRotationShiftsCommandInput,
|
|
25
|
+
ListPreviewRotationShiftsCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPreviewRotationShiftsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListPreviewRotationShiftsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPreviewRotationShiftsCommandInput,
|
|
37
|
+
ListPreviewRotationShiftsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListRotationOverridesRequest,
|
|
11
|
+
ListRotationOverridesResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface ListRotationOverridesCommandInput
|
|
19
|
+
extends ListRotationOverridesRequest {}
|
|
20
|
+
export interface ListRotationOverridesCommandOutput
|
|
21
|
+
extends ListRotationOverridesResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListRotationOverridesCommand extends $Command<
|
|
24
|
+
ListRotationOverridesCommandInput,
|
|
25
|
+
ListRotationOverridesCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListRotationOverridesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListRotationOverridesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListRotationOverridesCommandInput,
|
|
37
|
+
ListRotationOverridesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListRotationShiftsRequest,
|
|
11
|
+
ListRotationShiftsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface ListRotationShiftsCommandInput
|
|
19
|
+
extends ListRotationShiftsRequest {}
|
|
20
|
+
export interface ListRotationShiftsCommandOutput
|
|
21
|
+
extends ListRotationShiftsResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListRotationShiftsCommand extends $Command<
|
|
24
|
+
ListRotationShiftsCommandInput,
|
|
25
|
+
ListRotationShiftsCommandOutput,
|
|
26
|
+
SSMContactsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListRotationShiftsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListRotationShiftsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListRotationShiftsCommandInput, ListRotationShiftsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { ListRotationsRequest, ListRotationsResult } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SSMContactsClientResolvedConfig,
|
|
14
|
+
} from "../SSMContactsClient";
|
|
15
|
+
export interface ListRotationsCommandInput extends ListRotationsRequest {}
|
|
16
|
+
export interface ListRotationsCommandOutput
|
|
17
|
+
extends ListRotationsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListRotationsCommand extends $Command<
|
|
20
|
+
ListRotationsCommandInput,
|
|
21
|
+
ListRotationsCommandOutput,
|
|
22
|
+
SSMContactsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListRotationsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListRotationsCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListRotationsCommandInput, ListRotationsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateRotationRequest,
|
|
11
|
+
UpdateRotationResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface UpdateRotationCommandInput extends UpdateRotationRequest {}
|
|
19
|
+
export interface UpdateRotationCommandOutput
|
|
20
|
+
extends UpdateRotationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateRotationCommand extends $Command<
|
|
23
|
+
UpdateRotationCommandInput,
|
|
24
|
+
UpdateRotationCommandOutput,
|
|
25
|
+
SSMContactsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateRotationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: UpdateRotationCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateRotationCommandInput, UpdateRotationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -2,20 +2,31 @@ export * from "./AcceptPageCommand";
|
|
|
2
2
|
export * from "./ActivateContactChannelCommand";
|
|
3
3
|
export * from "./CreateContactChannelCommand";
|
|
4
4
|
export * from "./CreateContactCommand";
|
|
5
|
+
export * from "./CreateRotationCommand";
|
|
6
|
+
export * from "./CreateRotationOverrideCommand";
|
|
5
7
|
export * from "./DeactivateContactChannelCommand";
|
|
6
8
|
export * from "./DeleteContactChannelCommand";
|
|
7
9
|
export * from "./DeleteContactCommand";
|
|
10
|
+
export * from "./DeleteRotationCommand";
|
|
11
|
+
export * from "./DeleteRotationOverrideCommand";
|
|
8
12
|
export * from "./DescribeEngagementCommand";
|
|
9
13
|
export * from "./DescribePageCommand";
|
|
10
14
|
export * from "./GetContactChannelCommand";
|
|
11
15
|
export * from "./GetContactCommand";
|
|
12
16
|
export * from "./GetContactPolicyCommand";
|
|
17
|
+
export * from "./GetRotationCommand";
|
|
18
|
+
export * from "./GetRotationOverrideCommand";
|
|
13
19
|
export * from "./ListContactChannelsCommand";
|
|
14
20
|
export * from "./ListContactsCommand";
|
|
15
21
|
export * from "./ListEngagementsCommand";
|
|
16
22
|
export * from "./ListPageReceiptsCommand";
|
|
23
|
+
export * from "./ListPageResolutionsCommand";
|
|
17
24
|
export * from "./ListPagesByContactCommand";
|
|
18
25
|
export * from "./ListPagesByEngagementCommand";
|
|
26
|
+
export * from "./ListPreviewRotationShiftsCommand";
|
|
27
|
+
export * from "./ListRotationOverridesCommand";
|
|
28
|
+
export * from "./ListRotationShiftsCommand";
|
|
29
|
+
export * from "./ListRotationsCommand";
|
|
19
30
|
export * from "./ListTagsForResourceCommand";
|
|
20
31
|
export * from "./PutContactPolicyCommand";
|
|
21
32
|
export * from "./SendActivationCodeCommand";
|
|
@@ -25,3 +36,4 @@ export * from "./TagResourceCommand";
|
|
|
25
36
|
export * from "./UntagResourceCommand";
|
|
26
37
|
export * from "./UpdateContactChannelCommand";
|
|
27
38
|
export * from "./UpdateContactCommand";
|
|
39
|
+
export * from "./UpdateRotationCommand";
|