@aws-sdk/client-ssm-contacts 3.300.0 → 3.303.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 +50 -42
- 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 +49 -41
- 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 +4 -18
- package/dist-types/commands/ActivateContactChannelCommand.d.ts +2 -15
- package/dist-types/commands/CreateContactChannelCommand.d.ts +4 -26
- package/dist-types/commands/CreateContactCommand.d.ts +16 -35
- 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 +2 -14
- package/dist-types/commands/DeleteContactChannelCommand.d.ts +2 -14
- package/dist-types/commands/DeleteContactCommand.d.ts +5 -14
- 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 +2 -26
- package/dist-types/commands/DescribePageCommand.d.ts +2 -29
- package/dist-types/commands/GetContactChannelCommand.d.ts +2 -26
- package/dist-types/commands/GetContactCommand.d.ts +2 -115
- package/dist-types/commands/GetContactPolicyCommand.d.ts +2 -20
- 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 +2 -30
- package/dist-types/commands/ListContactsCommand.d.ts +3 -43
- package/dist-types/commands/ListEngagementsCommand.d.ts +3 -43
- package/dist-types/commands/ListPageReceiptsCommand.d.ts +3 -39
- package/dist-types/commands/ListPageResolutionsCommand.d.ts +84 -0
- package/dist-types/commands/ListPagesByContactCommand.d.ts +2 -29
- package/dist-types/commands/ListPagesByEngagementCommand.d.ts +2 -27
- 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 +2 -24
- package/dist-types/commands/PutContactPolicyCommand.d.ts +2 -15
- package/dist-types/commands/SendActivationCodeCommand.d.ts +2 -14
- package/dist-types/commands/StartEngagementCommand.d.ts +2 -45
- package/dist-types/commands/StopEngagementCommand.d.ts +2 -14
- package/dist-types/commands/TagResourceCommand.d.ts +5 -23
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -19
- package/dist-types/commands/UpdateContactChannelCommand.d.ts +3 -19
- package/dist-types/commands/UpdateContactCommand.d.ts +13 -59
- 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 +835 -58
- 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 +241 -34
- 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 +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPageResolutionsCommandInput, ListPageResolutionsCommandOutput } from "../commands/ListPageResolutionsCommand";
|
|
3
|
+
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPageResolutions(config: SSMContactsPaginationConfiguration, input: ListPageResolutionsCommandInput, ...additionalArguments: any): Paginator<ListPageResolutionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPreviewRotationShiftsCommandInput, ListPreviewRotationShiftsCommandOutput } from "../commands/ListPreviewRotationShiftsCommand";
|
|
3
|
+
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPreviewRotationShifts(config: SSMContactsPaginationConfiguration, input: ListPreviewRotationShiftsCommandInput, ...additionalArguments: any): Paginator<ListPreviewRotationShiftsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListRotationOverridesCommandInput, ListRotationOverridesCommandOutput } from "../commands/ListRotationOverridesCommand";
|
|
3
|
+
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListRotationOverrides(config: SSMContactsPaginationConfiguration, input: ListRotationOverridesCommandInput, ...additionalArguments: any): Paginator<ListRotationOverridesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListRotationShiftsCommandInput, ListRotationShiftsCommandOutput } from "../commands/ListRotationShiftsCommand";
|
|
3
|
+
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListRotationShifts(config: SSMContactsPaginationConfiguration, input: ListRotationShiftsCommandInput, ...additionalArguments: any): Paginator<ListRotationShiftsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListRotationsCommandInput, ListRotationsCommandOutput } from "../commands/ListRotationsCommand";
|
|
3
|
+
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListRotations(config: SSMContactsPaginationConfiguration, input: ListRotationsCommandInput, ...additionalArguments: any): Paginator<ListRotationsCommandOutput>;
|
|
@@ -3,5 +3,10 @@ export * from "./ListContactChannelsPaginator";
|
|
|
3
3
|
export * from "./ListContactsPaginator";
|
|
4
4
|
export * from "./ListEngagementsPaginator";
|
|
5
5
|
export * from "./ListPageReceiptsPaginator";
|
|
6
|
+
export * from "./ListPageResolutionsPaginator";
|
|
6
7
|
export * from "./ListPagesByContactPaginator";
|
|
7
8
|
export * from "./ListPagesByEngagementPaginator";
|
|
9
|
+
export * from "./ListPreviewRotationShiftsPaginator";
|
|
10
|
+
export * from "./ListRotationOverridesPaginator";
|
|
11
|
+
export * from "./ListRotationShiftsPaginator";
|
|
12
|
+
export * from "./ListRotationsPaginator";
|
|
@@ -4,20 +4,31 @@ import { AcceptPageCommandInput, AcceptPageCommandOutput } from "../commands/Acc
|
|
|
4
4
|
import { ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput } from "../commands/ActivateContactChannelCommand";
|
|
5
5
|
import { CreateContactChannelCommandInput, CreateContactChannelCommandOutput } from "../commands/CreateContactChannelCommand";
|
|
6
6
|
import { CreateContactCommandInput, CreateContactCommandOutput } from "../commands/CreateContactCommand";
|
|
7
|
+
import { CreateRotationCommandInput, CreateRotationCommandOutput } from "../commands/CreateRotationCommand";
|
|
8
|
+
import { CreateRotationOverrideCommandInput, CreateRotationOverrideCommandOutput } from "../commands/CreateRotationOverrideCommand";
|
|
7
9
|
import { DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput } from "../commands/DeactivateContactChannelCommand";
|
|
8
10
|
import { DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput } from "../commands/DeleteContactChannelCommand";
|
|
9
11
|
import { DeleteContactCommandInput, DeleteContactCommandOutput } from "../commands/DeleteContactCommand";
|
|
12
|
+
import { DeleteRotationCommandInput, DeleteRotationCommandOutput } from "../commands/DeleteRotationCommand";
|
|
13
|
+
import { DeleteRotationOverrideCommandInput, DeleteRotationOverrideCommandOutput } from "../commands/DeleteRotationOverrideCommand";
|
|
10
14
|
import { DescribeEngagementCommandInput, DescribeEngagementCommandOutput } from "../commands/DescribeEngagementCommand";
|
|
11
15
|
import { DescribePageCommandInput, DescribePageCommandOutput } from "../commands/DescribePageCommand";
|
|
12
16
|
import { GetContactChannelCommandInput, GetContactChannelCommandOutput } from "../commands/GetContactChannelCommand";
|
|
13
17
|
import { GetContactCommandInput, GetContactCommandOutput } from "../commands/GetContactCommand";
|
|
14
18
|
import { GetContactPolicyCommandInput, GetContactPolicyCommandOutput } from "../commands/GetContactPolicyCommand";
|
|
19
|
+
import { GetRotationCommandInput, GetRotationCommandOutput } from "../commands/GetRotationCommand";
|
|
20
|
+
import { GetRotationOverrideCommandInput, GetRotationOverrideCommandOutput } from "../commands/GetRotationOverrideCommand";
|
|
15
21
|
import { ListContactChannelsCommandInput, ListContactChannelsCommandOutput } from "../commands/ListContactChannelsCommand";
|
|
16
22
|
import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
|
|
17
23
|
import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "../commands/ListEngagementsCommand";
|
|
18
24
|
import { ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput } from "../commands/ListPageReceiptsCommand";
|
|
25
|
+
import { ListPageResolutionsCommandInput, ListPageResolutionsCommandOutput } from "../commands/ListPageResolutionsCommand";
|
|
19
26
|
import { ListPagesByContactCommandInput, ListPagesByContactCommandOutput } from "../commands/ListPagesByContactCommand";
|
|
20
27
|
import { ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput } from "../commands/ListPagesByEngagementCommand";
|
|
28
|
+
import { ListPreviewRotationShiftsCommandInput, ListPreviewRotationShiftsCommandOutput } from "../commands/ListPreviewRotationShiftsCommand";
|
|
29
|
+
import { ListRotationOverridesCommandInput, ListRotationOverridesCommandOutput } from "../commands/ListRotationOverridesCommand";
|
|
30
|
+
import { ListRotationsCommandInput, ListRotationsCommandOutput } from "../commands/ListRotationsCommand";
|
|
31
|
+
import { ListRotationShiftsCommandInput, ListRotationShiftsCommandOutput } from "../commands/ListRotationShiftsCommand";
|
|
21
32
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
33
|
import { PutContactPolicyCommandInput, PutContactPolicyCommandOutput } from "../commands/PutContactPolicyCommand";
|
|
23
34
|
import { SendActivationCodeCommandInput, SendActivationCodeCommandOutput } from "../commands/SendActivationCodeCommand";
|
|
@@ -27,24 +38,36 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
|
|
|
27
38
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
28
39
|
import { UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput } from "../commands/UpdateContactChannelCommand";
|
|
29
40
|
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "../commands/UpdateContactCommand";
|
|
41
|
+
import { UpdateRotationCommandInput, UpdateRotationCommandOutput } from "../commands/UpdateRotationCommand";
|
|
30
42
|
export declare const serializeAws_json1_1AcceptPageCommand: (input: AcceptPageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
43
|
export declare const serializeAws_json1_1ActivateContactChannelCommand: (input: ActivateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
44
|
export declare const serializeAws_json1_1CreateContactCommand: (input: CreateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
45
|
export declare const serializeAws_json1_1CreateContactChannelCommand: (input: CreateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_json1_1CreateRotationCommand: (input: CreateRotationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
export declare const serializeAws_json1_1CreateRotationOverrideCommand: (input: CreateRotationOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
48
|
export declare const serializeAws_json1_1DeactivateContactChannelCommand: (input: DeactivateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
49
|
export declare const serializeAws_json1_1DeleteContactCommand: (input: DeleteContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
50
|
export declare const serializeAws_json1_1DeleteContactChannelCommand: (input: DeleteContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
export declare const serializeAws_json1_1DeleteRotationCommand: (input: DeleteRotationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
export declare const serializeAws_json1_1DeleteRotationOverrideCommand: (input: DeleteRotationOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
53
|
export declare const serializeAws_json1_1DescribeEngagementCommand: (input: DescribeEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
54
|
export declare const serializeAws_json1_1DescribePageCommand: (input: DescribePageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
55
|
export declare const serializeAws_json1_1GetContactCommand: (input: GetContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
56
|
export declare const serializeAws_json1_1GetContactChannelCommand: (input: GetContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
57
|
export declare const serializeAws_json1_1GetContactPolicyCommand: (input: GetContactPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_json1_1GetRotationCommand: (input: GetRotationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
export declare const serializeAws_json1_1GetRotationOverrideCommand: (input: GetRotationOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
60
|
export declare const serializeAws_json1_1ListContactChannelsCommand: (input: ListContactChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
61
|
export declare const serializeAws_json1_1ListContactsCommand: (input: ListContactsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
62
|
export declare const serializeAws_json1_1ListEngagementsCommand: (input: ListEngagementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
63
|
export declare const serializeAws_json1_1ListPageReceiptsCommand: (input: ListPageReceiptsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
export declare const serializeAws_json1_1ListPageResolutionsCommand: (input: ListPageResolutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
65
|
export declare const serializeAws_json1_1ListPagesByContactCommand: (input: ListPagesByContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
66
|
export declare const serializeAws_json1_1ListPagesByEngagementCommand: (input: ListPagesByEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
export declare const serializeAws_json1_1ListPreviewRotationShiftsCommand: (input: ListPreviewRotationShiftsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_1ListRotationOverridesCommand: (input: ListRotationOverridesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_json1_1ListRotationsCommand: (input: ListRotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_json1_1ListRotationShiftsCommand: (input: ListRotationShiftsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
71
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
72
|
export declare const serializeAws_json1_1PutContactPolicyCommand: (input: PutContactPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
73
|
export declare const serializeAws_json1_1SendActivationCodeCommand: (input: SendActivationCodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -54,24 +77,36 @@ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResource
|
|
|
54
77
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
78
|
export declare const serializeAws_json1_1UpdateContactCommand: (input: UpdateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
79
|
export declare const serializeAws_json1_1UpdateContactChannelCommand: (input: UpdateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
export declare const serializeAws_json1_1UpdateRotationCommand: (input: UpdateRotationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
81
|
export declare const deserializeAws_json1_1AcceptPageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptPageCommandOutput>;
|
|
58
82
|
export declare const deserializeAws_json1_1ActivateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ActivateContactChannelCommandOutput>;
|
|
59
83
|
export declare const deserializeAws_json1_1CreateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateContactCommandOutput>;
|
|
60
84
|
export declare const deserializeAws_json1_1CreateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateContactChannelCommandOutput>;
|
|
85
|
+
export declare const deserializeAws_json1_1CreateRotationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRotationCommandOutput>;
|
|
86
|
+
export declare const deserializeAws_json1_1CreateRotationOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRotationOverrideCommandOutput>;
|
|
61
87
|
export declare const deserializeAws_json1_1DeactivateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeactivateContactChannelCommandOutput>;
|
|
62
88
|
export declare const deserializeAws_json1_1DeleteContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactCommandOutput>;
|
|
63
89
|
export declare const deserializeAws_json1_1DeleteContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactChannelCommandOutput>;
|
|
90
|
+
export declare const deserializeAws_json1_1DeleteRotationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRotationCommandOutput>;
|
|
91
|
+
export declare const deserializeAws_json1_1DeleteRotationOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRotationOverrideCommandOutput>;
|
|
64
92
|
export declare const deserializeAws_json1_1DescribeEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEngagementCommandOutput>;
|
|
65
93
|
export declare const deserializeAws_json1_1DescribePageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePageCommandOutput>;
|
|
66
94
|
export declare const deserializeAws_json1_1GetContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactCommandOutput>;
|
|
67
95
|
export declare const deserializeAws_json1_1GetContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactChannelCommandOutput>;
|
|
68
96
|
export declare const deserializeAws_json1_1GetContactPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactPolicyCommandOutput>;
|
|
97
|
+
export declare const deserializeAws_json1_1GetRotationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRotationCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_json1_1GetRotationOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRotationOverrideCommandOutput>;
|
|
69
99
|
export declare const deserializeAws_json1_1ListContactChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactChannelsCommandOutput>;
|
|
70
100
|
export declare const deserializeAws_json1_1ListContactsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactsCommandOutput>;
|
|
71
101
|
export declare const deserializeAws_json1_1ListEngagementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementsCommandOutput>;
|
|
72
102
|
export declare const deserializeAws_json1_1ListPageReceiptsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPageReceiptsCommandOutput>;
|
|
103
|
+
export declare const deserializeAws_json1_1ListPageResolutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPageResolutionsCommandOutput>;
|
|
73
104
|
export declare const deserializeAws_json1_1ListPagesByContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPagesByContactCommandOutput>;
|
|
74
105
|
export declare const deserializeAws_json1_1ListPagesByEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPagesByEngagementCommandOutput>;
|
|
106
|
+
export declare const deserializeAws_json1_1ListPreviewRotationShiftsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPreviewRotationShiftsCommandOutput>;
|
|
107
|
+
export declare const deserializeAws_json1_1ListRotationOverridesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRotationOverridesCommandOutput>;
|
|
108
|
+
export declare const deserializeAws_json1_1ListRotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRotationsCommandOutput>;
|
|
109
|
+
export declare const deserializeAws_json1_1ListRotationShiftsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRotationShiftsCommandOutput>;
|
|
75
110
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
76
111
|
export declare const deserializeAws_json1_1PutContactPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutContactPolicyCommandOutput>;
|
|
77
112
|
export declare const deserializeAws_json1_1SendActivationCodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendActivationCodeCommandOutput>;
|
|
@@ -81,3 +116,4 @@ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpRe
|
|
|
81
116
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
82
117
|
export declare const deserializeAws_json1_1UpdateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactCommandOutput>;
|
|
83
118
|
export declare const deserializeAws_json1_1UpdateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactChannelCommandOutput>;
|
|
119
|
+
export declare const deserializeAws_json1_1UpdateRotationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRotationCommandOutput>;
|
|
@@ -15,6 +15,14 @@ import {
|
|
|
15
15
|
CreateContactCommandInput,
|
|
16
16
|
CreateContactCommandOutput,
|
|
17
17
|
} from "./commands/CreateContactCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateRotationCommandInput,
|
|
20
|
+
CreateRotationCommandOutput,
|
|
21
|
+
} from "./commands/CreateRotationCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateRotationOverrideCommandInput,
|
|
24
|
+
CreateRotationOverrideCommandOutput,
|
|
25
|
+
} from "./commands/CreateRotationOverrideCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeactivateContactChannelCommandInput,
|
|
20
28
|
DeactivateContactChannelCommandOutput,
|
|
@@ -27,6 +35,14 @@ import {
|
|
|
27
35
|
DeleteContactCommandInput,
|
|
28
36
|
DeleteContactCommandOutput,
|
|
29
37
|
} from "./commands/DeleteContactCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteRotationCommandInput,
|
|
40
|
+
DeleteRotationCommandOutput,
|
|
41
|
+
} from "./commands/DeleteRotationCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteRotationOverrideCommandInput,
|
|
44
|
+
DeleteRotationOverrideCommandOutput,
|
|
45
|
+
} from "./commands/DeleteRotationOverrideCommand";
|
|
30
46
|
import {
|
|
31
47
|
DescribeEngagementCommandInput,
|
|
32
48
|
DescribeEngagementCommandOutput,
|
|
@@ -47,6 +63,14 @@ import {
|
|
|
47
63
|
GetContactPolicyCommandInput,
|
|
48
64
|
GetContactPolicyCommandOutput,
|
|
49
65
|
} from "./commands/GetContactPolicyCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetRotationCommandInput,
|
|
68
|
+
GetRotationCommandOutput,
|
|
69
|
+
} from "./commands/GetRotationCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetRotationOverrideCommandInput,
|
|
72
|
+
GetRotationOverrideCommandOutput,
|
|
73
|
+
} from "./commands/GetRotationOverrideCommand";
|
|
50
74
|
import {
|
|
51
75
|
ListContactChannelsCommandInput,
|
|
52
76
|
ListContactChannelsCommandOutput,
|
|
@@ -63,6 +87,10 @@ import {
|
|
|
63
87
|
ListPageReceiptsCommandInput,
|
|
64
88
|
ListPageReceiptsCommandOutput,
|
|
65
89
|
} from "./commands/ListPageReceiptsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListPageResolutionsCommandInput,
|
|
92
|
+
ListPageResolutionsCommandOutput,
|
|
93
|
+
} from "./commands/ListPageResolutionsCommand";
|
|
66
94
|
import {
|
|
67
95
|
ListPagesByContactCommandInput,
|
|
68
96
|
ListPagesByContactCommandOutput,
|
|
@@ -71,6 +99,22 @@ import {
|
|
|
71
99
|
ListPagesByEngagementCommandInput,
|
|
72
100
|
ListPagesByEngagementCommandOutput,
|
|
73
101
|
} from "./commands/ListPagesByEngagementCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListPreviewRotationShiftsCommandInput,
|
|
104
|
+
ListPreviewRotationShiftsCommandOutput,
|
|
105
|
+
} from "./commands/ListPreviewRotationShiftsCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListRotationOverridesCommandInput,
|
|
108
|
+
ListRotationOverridesCommandOutput,
|
|
109
|
+
} from "./commands/ListRotationOverridesCommand";
|
|
110
|
+
import {
|
|
111
|
+
ListRotationsCommandInput,
|
|
112
|
+
ListRotationsCommandOutput,
|
|
113
|
+
} from "./commands/ListRotationsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListRotationShiftsCommandInput,
|
|
116
|
+
ListRotationShiftsCommandOutput,
|
|
117
|
+
} from "./commands/ListRotationShiftsCommand";
|
|
74
118
|
import {
|
|
75
119
|
ListTagsForResourceCommandInput,
|
|
76
120
|
ListTagsForResourceCommandOutput,
|
|
@@ -107,6 +151,10 @@ import {
|
|
|
107
151
|
UpdateContactCommandInput,
|
|
108
152
|
UpdateContactCommandOutput,
|
|
109
153
|
} from "./commands/UpdateContactCommand";
|
|
154
|
+
import {
|
|
155
|
+
UpdateRotationCommandInput,
|
|
156
|
+
UpdateRotationCommandOutput,
|
|
157
|
+
} from "./commands/UpdateRotationCommand";
|
|
110
158
|
import { SSMContactsClient } from "./SSMContactsClient";
|
|
111
159
|
export declare class SSMContacts extends SSMContactsClient {
|
|
112
160
|
acceptPage(
|
|
@@ -161,6 +209,32 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
161
209
|
options: __HttpHandlerOptions,
|
|
162
210
|
cb: (err: any, data?: CreateContactChannelCommandOutput) => void
|
|
163
211
|
): void;
|
|
212
|
+
createRotation(
|
|
213
|
+
args: CreateRotationCommandInput,
|
|
214
|
+
options?: __HttpHandlerOptions
|
|
215
|
+
): Promise<CreateRotationCommandOutput>;
|
|
216
|
+
createRotation(
|
|
217
|
+
args: CreateRotationCommandInput,
|
|
218
|
+
cb: (err: any, data?: CreateRotationCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
createRotation(
|
|
221
|
+
args: CreateRotationCommandInput,
|
|
222
|
+
options: __HttpHandlerOptions,
|
|
223
|
+
cb: (err: any, data?: CreateRotationCommandOutput) => void
|
|
224
|
+
): void;
|
|
225
|
+
createRotationOverride(
|
|
226
|
+
args: CreateRotationOverrideCommandInput,
|
|
227
|
+
options?: __HttpHandlerOptions
|
|
228
|
+
): Promise<CreateRotationOverrideCommandOutput>;
|
|
229
|
+
createRotationOverride(
|
|
230
|
+
args: CreateRotationOverrideCommandInput,
|
|
231
|
+
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void
|
|
232
|
+
): void;
|
|
233
|
+
createRotationOverride(
|
|
234
|
+
args: CreateRotationOverrideCommandInput,
|
|
235
|
+
options: __HttpHandlerOptions,
|
|
236
|
+
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void
|
|
237
|
+
): void;
|
|
164
238
|
deactivateContactChannel(
|
|
165
239
|
args: DeactivateContactChannelCommandInput,
|
|
166
240
|
options?: __HttpHandlerOptions
|
|
@@ -200,6 +274,32 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
200
274
|
options: __HttpHandlerOptions,
|
|
201
275
|
cb: (err: any, data?: DeleteContactChannelCommandOutput) => void
|
|
202
276
|
): void;
|
|
277
|
+
deleteRotation(
|
|
278
|
+
args: DeleteRotationCommandInput,
|
|
279
|
+
options?: __HttpHandlerOptions
|
|
280
|
+
): Promise<DeleteRotationCommandOutput>;
|
|
281
|
+
deleteRotation(
|
|
282
|
+
args: DeleteRotationCommandInput,
|
|
283
|
+
cb: (err: any, data?: DeleteRotationCommandOutput) => void
|
|
284
|
+
): void;
|
|
285
|
+
deleteRotation(
|
|
286
|
+
args: DeleteRotationCommandInput,
|
|
287
|
+
options: __HttpHandlerOptions,
|
|
288
|
+
cb: (err: any, data?: DeleteRotationCommandOutput) => void
|
|
289
|
+
): void;
|
|
290
|
+
deleteRotationOverride(
|
|
291
|
+
args: DeleteRotationOverrideCommandInput,
|
|
292
|
+
options?: __HttpHandlerOptions
|
|
293
|
+
): Promise<DeleteRotationOverrideCommandOutput>;
|
|
294
|
+
deleteRotationOverride(
|
|
295
|
+
args: DeleteRotationOverrideCommandInput,
|
|
296
|
+
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void
|
|
297
|
+
): void;
|
|
298
|
+
deleteRotationOverride(
|
|
299
|
+
args: DeleteRotationOverrideCommandInput,
|
|
300
|
+
options: __HttpHandlerOptions,
|
|
301
|
+
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void
|
|
302
|
+
): void;
|
|
203
303
|
describeEngagement(
|
|
204
304
|
args: DescribeEngagementCommandInput,
|
|
205
305
|
options?: __HttpHandlerOptions
|
|
@@ -265,6 +365,32 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
265
365
|
options: __HttpHandlerOptions,
|
|
266
366
|
cb: (err: any, data?: GetContactPolicyCommandOutput) => void
|
|
267
367
|
): void;
|
|
368
|
+
getRotation(
|
|
369
|
+
args: GetRotationCommandInput,
|
|
370
|
+
options?: __HttpHandlerOptions
|
|
371
|
+
): Promise<GetRotationCommandOutput>;
|
|
372
|
+
getRotation(
|
|
373
|
+
args: GetRotationCommandInput,
|
|
374
|
+
cb: (err: any, data?: GetRotationCommandOutput) => void
|
|
375
|
+
): void;
|
|
376
|
+
getRotation(
|
|
377
|
+
args: GetRotationCommandInput,
|
|
378
|
+
options: __HttpHandlerOptions,
|
|
379
|
+
cb: (err: any, data?: GetRotationCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
getRotationOverride(
|
|
382
|
+
args: GetRotationOverrideCommandInput,
|
|
383
|
+
options?: __HttpHandlerOptions
|
|
384
|
+
): Promise<GetRotationOverrideCommandOutput>;
|
|
385
|
+
getRotationOverride(
|
|
386
|
+
args: GetRotationOverrideCommandInput,
|
|
387
|
+
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void
|
|
388
|
+
): void;
|
|
389
|
+
getRotationOverride(
|
|
390
|
+
args: GetRotationOverrideCommandInput,
|
|
391
|
+
options: __HttpHandlerOptions,
|
|
392
|
+
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void
|
|
393
|
+
): void;
|
|
268
394
|
listContactChannels(
|
|
269
395
|
args: ListContactChannelsCommandInput,
|
|
270
396
|
options?: __HttpHandlerOptions
|
|
@@ -317,6 +443,19 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
317
443
|
options: __HttpHandlerOptions,
|
|
318
444
|
cb: (err: any, data?: ListPageReceiptsCommandOutput) => void
|
|
319
445
|
): void;
|
|
446
|
+
listPageResolutions(
|
|
447
|
+
args: ListPageResolutionsCommandInput,
|
|
448
|
+
options?: __HttpHandlerOptions
|
|
449
|
+
): Promise<ListPageResolutionsCommandOutput>;
|
|
450
|
+
listPageResolutions(
|
|
451
|
+
args: ListPageResolutionsCommandInput,
|
|
452
|
+
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void
|
|
453
|
+
): void;
|
|
454
|
+
listPageResolutions(
|
|
455
|
+
args: ListPageResolutionsCommandInput,
|
|
456
|
+
options: __HttpHandlerOptions,
|
|
457
|
+
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void
|
|
458
|
+
): void;
|
|
320
459
|
listPagesByContact(
|
|
321
460
|
args: ListPagesByContactCommandInput,
|
|
322
461
|
options?: __HttpHandlerOptions
|
|
@@ -343,6 +482,58 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
343
482
|
options: __HttpHandlerOptions,
|
|
344
483
|
cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void
|
|
345
484
|
): void;
|
|
485
|
+
listPreviewRotationShifts(
|
|
486
|
+
args: ListPreviewRotationShiftsCommandInput,
|
|
487
|
+
options?: __HttpHandlerOptions
|
|
488
|
+
): Promise<ListPreviewRotationShiftsCommandOutput>;
|
|
489
|
+
listPreviewRotationShifts(
|
|
490
|
+
args: ListPreviewRotationShiftsCommandInput,
|
|
491
|
+
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void
|
|
492
|
+
): void;
|
|
493
|
+
listPreviewRotationShifts(
|
|
494
|
+
args: ListPreviewRotationShiftsCommandInput,
|
|
495
|
+
options: __HttpHandlerOptions,
|
|
496
|
+
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void
|
|
497
|
+
): void;
|
|
498
|
+
listRotationOverrides(
|
|
499
|
+
args: ListRotationOverridesCommandInput,
|
|
500
|
+
options?: __HttpHandlerOptions
|
|
501
|
+
): Promise<ListRotationOverridesCommandOutput>;
|
|
502
|
+
listRotationOverrides(
|
|
503
|
+
args: ListRotationOverridesCommandInput,
|
|
504
|
+
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void
|
|
505
|
+
): void;
|
|
506
|
+
listRotationOverrides(
|
|
507
|
+
args: ListRotationOverridesCommandInput,
|
|
508
|
+
options: __HttpHandlerOptions,
|
|
509
|
+
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void
|
|
510
|
+
): void;
|
|
511
|
+
listRotations(
|
|
512
|
+
args: ListRotationsCommandInput,
|
|
513
|
+
options?: __HttpHandlerOptions
|
|
514
|
+
): Promise<ListRotationsCommandOutput>;
|
|
515
|
+
listRotations(
|
|
516
|
+
args: ListRotationsCommandInput,
|
|
517
|
+
cb: (err: any, data?: ListRotationsCommandOutput) => void
|
|
518
|
+
): void;
|
|
519
|
+
listRotations(
|
|
520
|
+
args: ListRotationsCommandInput,
|
|
521
|
+
options: __HttpHandlerOptions,
|
|
522
|
+
cb: (err: any, data?: ListRotationsCommandOutput) => void
|
|
523
|
+
): void;
|
|
524
|
+
listRotationShifts(
|
|
525
|
+
args: ListRotationShiftsCommandInput,
|
|
526
|
+
options?: __HttpHandlerOptions
|
|
527
|
+
): Promise<ListRotationShiftsCommandOutput>;
|
|
528
|
+
listRotationShifts(
|
|
529
|
+
args: ListRotationShiftsCommandInput,
|
|
530
|
+
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void
|
|
531
|
+
): void;
|
|
532
|
+
listRotationShifts(
|
|
533
|
+
args: ListRotationShiftsCommandInput,
|
|
534
|
+
options: __HttpHandlerOptions,
|
|
535
|
+
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void
|
|
536
|
+
): void;
|
|
346
537
|
listTagsForResource(
|
|
347
538
|
args: ListTagsForResourceCommandInput,
|
|
348
539
|
options?: __HttpHandlerOptions
|
|
@@ -460,4 +651,17 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
460
651
|
options: __HttpHandlerOptions,
|
|
461
652
|
cb: (err: any, data?: UpdateContactChannelCommandOutput) => void
|
|
462
653
|
): void;
|
|
654
|
+
updateRotation(
|
|
655
|
+
args: UpdateRotationCommandInput,
|
|
656
|
+
options?: __HttpHandlerOptions
|
|
657
|
+
): Promise<UpdateRotationCommandOutput>;
|
|
658
|
+
updateRotation(
|
|
659
|
+
args: UpdateRotationCommandInput,
|
|
660
|
+
cb: (err: any, data?: UpdateRotationCommandOutput) => void
|
|
661
|
+
): void;
|
|
662
|
+
updateRotation(
|
|
663
|
+
args: UpdateRotationCommandInput,
|
|
664
|
+
options: __HttpHandlerOptions,
|
|
665
|
+
cb: (err: any, data?: UpdateRotationCommandOutput) => void
|
|
666
|
+
): void;
|
|
463
667
|
}
|
|
@@ -60,6 +60,14 @@ import {
|
|
|
60
60
|
CreateContactCommandInput,
|
|
61
61
|
CreateContactCommandOutput,
|
|
62
62
|
} from "./commands/CreateContactCommand";
|
|
63
|
+
import {
|
|
64
|
+
CreateRotationCommandInput,
|
|
65
|
+
CreateRotationCommandOutput,
|
|
66
|
+
} from "./commands/CreateRotationCommand";
|
|
67
|
+
import {
|
|
68
|
+
CreateRotationOverrideCommandInput,
|
|
69
|
+
CreateRotationOverrideCommandOutput,
|
|
70
|
+
} from "./commands/CreateRotationOverrideCommand";
|
|
63
71
|
import {
|
|
64
72
|
DeactivateContactChannelCommandInput,
|
|
65
73
|
DeactivateContactChannelCommandOutput,
|
|
@@ -72,6 +80,14 @@ import {
|
|
|
72
80
|
DeleteContactCommandInput,
|
|
73
81
|
DeleteContactCommandOutput,
|
|
74
82
|
} from "./commands/DeleteContactCommand";
|
|
83
|
+
import {
|
|
84
|
+
DeleteRotationCommandInput,
|
|
85
|
+
DeleteRotationCommandOutput,
|
|
86
|
+
} from "./commands/DeleteRotationCommand";
|
|
87
|
+
import {
|
|
88
|
+
DeleteRotationOverrideCommandInput,
|
|
89
|
+
DeleteRotationOverrideCommandOutput,
|
|
90
|
+
} from "./commands/DeleteRotationOverrideCommand";
|
|
75
91
|
import {
|
|
76
92
|
DescribeEngagementCommandInput,
|
|
77
93
|
DescribeEngagementCommandOutput,
|
|
@@ -92,6 +108,14 @@ import {
|
|
|
92
108
|
GetContactPolicyCommandInput,
|
|
93
109
|
GetContactPolicyCommandOutput,
|
|
94
110
|
} from "./commands/GetContactPolicyCommand";
|
|
111
|
+
import {
|
|
112
|
+
GetRotationCommandInput,
|
|
113
|
+
GetRotationCommandOutput,
|
|
114
|
+
} from "./commands/GetRotationCommand";
|
|
115
|
+
import {
|
|
116
|
+
GetRotationOverrideCommandInput,
|
|
117
|
+
GetRotationOverrideCommandOutput,
|
|
118
|
+
} from "./commands/GetRotationOverrideCommand";
|
|
95
119
|
import {
|
|
96
120
|
ListContactChannelsCommandInput,
|
|
97
121
|
ListContactChannelsCommandOutput,
|
|
@@ -108,6 +132,10 @@ import {
|
|
|
108
132
|
ListPageReceiptsCommandInput,
|
|
109
133
|
ListPageReceiptsCommandOutput,
|
|
110
134
|
} from "./commands/ListPageReceiptsCommand";
|
|
135
|
+
import {
|
|
136
|
+
ListPageResolutionsCommandInput,
|
|
137
|
+
ListPageResolutionsCommandOutput,
|
|
138
|
+
} from "./commands/ListPageResolutionsCommand";
|
|
111
139
|
import {
|
|
112
140
|
ListPagesByContactCommandInput,
|
|
113
141
|
ListPagesByContactCommandOutput,
|
|
@@ -116,6 +144,22 @@ import {
|
|
|
116
144
|
ListPagesByEngagementCommandInput,
|
|
117
145
|
ListPagesByEngagementCommandOutput,
|
|
118
146
|
} from "./commands/ListPagesByEngagementCommand";
|
|
147
|
+
import {
|
|
148
|
+
ListPreviewRotationShiftsCommandInput,
|
|
149
|
+
ListPreviewRotationShiftsCommandOutput,
|
|
150
|
+
} from "./commands/ListPreviewRotationShiftsCommand";
|
|
151
|
+
import {
|
|
152
|
+
ListRotationOverridesCommandInput,
|
|
153
|
+
ListRotationOverridesCommandOutput,
|
|
154
|
+
} from "./commands/ListRotationOverridesCommand";
|
|
155
|
+
import {
|
|
156
|
+
ListRotationsCommandInput,
|
|
157
|
+
ListRotationsCommandOutput,
|
|
158
|
+
} from "./commands/ListRotationsCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListRotationShiftsCommandInput,
|
|
161
|
+
ListRotationShiftsCommandOutput,
|
|
162
|
+
} from "./commands/ListRotationShiftsCommand";
|
|
119
163
|
import {
|
|
120
164
|
ListTagsForResourceCommandInput,
|
|
121
165
|
ListTagsForResourceCommandOutput,
|
|
@@ -152,6 +196,10 @@ import {
|
|
|
152
196
|
UpdateContactCommandInput,
|
|
153
197
|
UpdateContactCommandOutput,
|
|
154
198
|
} from "./commands/UpdateContactCommand";
|
|
199
|
+
import {
|
|
200
|
+
UpdateRotationCommandInput,
|
|
201
|
+
UpdateRotationCommandOutput,
|
|
202
|
+
} from "./commands/UpdateRotationCommand";
|
|
155
203
|
import {
|
|
156
204
|
ClientInputEndpointParameters,
|
|
157
205
|
ClientResolvedEndpointParameters,
|
|
@@ -162,20 +210,31 @@ export type ServiceInputTypes =
|
|
|
162
210
|
| ActivateContactChannelCommandInput
|
|
163
211
|
| CreateContactChannelCommandInput
|
|
164
212
|
| CreateContactCommandInput
|
|
213
|
+
| CreateRotationCommandInput
|
|
214
|
+
| CreateRotationOverrideCommandInput
|
|
165
215
|
| DeactivateContactChannelCommandInput
|
|
166
216
|
| DeleteContactChannelCommandInput
|
|
167
217
|
| DeleteContactCommandInput
|
|
218
|
+
| DeleteRotationCommandInput
|
|
219
|
+
| DeleteRotationOverrideCommandInput
|
|
168
220
|
| DescribeEngagementCommandInput
|
|
169
221
|
| DescribePageCommandInput
|
|
170
222
|
| GetContactChannelCommandInput
|
|
171
223
|
| GetContactCommandInput
|
|
172
224
|
| GetContactPolicyCommandInput
|
|
225
|
+
| GetRotationCommandInput
|
|
226
|
+
| GetRotationOverrideCommandInput
|
|
173
227
|
| ListContactChannelsCommandInput
|
|
174
228
|
| ListContactsCommandInput
|
|
175
229
|
| ListEngagementsCommandInput
|
|
176
230
|
| ListPageReceiptsCommandInput
|
|
231
|
+
| ListPageResolutionsCommandInput
|
|
177
232
|
| ListPagesByContactCommandInput
|
|
178
233
|
| ListPagesByEngagementCommandInput
|
|
234
|
+
| ListPreviewRotationShiftsCommandInput
|
|
235
|
+
| ListRotationOverridesCommandInput
|
|
236
|
+
| ListRotationShiftsCommandInput
|
|
237
|
+
| ListRotationsCommandInput
|
|
179
238
|
| ListTagsForResourceCommandInput
|
|
180
239
|
| PutContactPolicyCommandInput
|
|
181
240
|
| SendActivationCodeCommandInput
|
|
@@ -184,26 +243,38 @@ export type ServiceInputTypes =
|
|
|
184
243
|
| TagResourceCommandInput
|
|
185
244
|
| UntagResourceCommandInput
|
|
186
245
|
| UpdateContactChannelCommandInput
|
|
187
|
-
| UpdateContactCommandInput
|
|
246
|
+
| UpdateContactCommandInput
|
|
247
|
+
| UpdateRotationCommandInput;
|
|
188
248
|
export type ServiceOutputTypes =
|
|
189
249
|
| AcceptPageCommandOutput
|
|
190
250
|
| ActivateContactChannelCommandOutput
|
|
191
251
|
| CreateContactChannelCommandOutput
|
|
192
252
|
| CreateContactCommandOutput
|
|
253
|
+
| CreateRotationCommandOutput
|
|
254
|
+
| CreateRotationOverrideCommandOutput
|
|
193
255
|
| DeactivateContactChannelCommandOutput
|
|
194
256
|
| DeleteContactChannelCommandOutput
|
|
195
257
|
| DeleteContactCommandOutput
|
|
258
|
+
| DeleteRotationCommandOutput
|
|
259
|
+
| DeleteRotationOverrideCommandOutput
|
|
196
260
|
| DescribeEngagementCommandOutput
|
|
197
261
|
| DescribePageCommandOutput
|
|
198
262
|
| GetContactChannelCommandOutput
|
|
199
263
|
| GetContactCommandOutput
|
|
200
264
|
| GetContactPolicyCommandOutput
|
|
265
|
+
| GetRotationCommandOutput
|
|
266
|
+
| GetRotationOverrideCommandOutput
|
|
201
267
|
| ListContactChannelsCommandOutput
|
|
202
268
|
| ListContactsCommandOutput
|
|
203
269
|
| ListEngagementsCommandOutput
|
|
204
270
|
| ListPageReceiptsCommandOutput
|
|
271
|
+
| ListPageResolutionsCommandOutput
|
|
205
272
|
| ListPagesByContactCommandOutput
|
|
206
273
|
| ListPagesByEngagementCommandOutput
|
|
274
|
+
| ListPreviewRotationShiftsCommandOutput
|
|
275
|
+
| ListRotationOverridesCommandOutput
|
|
276
|
+
| ListRotationShiftsCommandOutput
|
|
277
|
+
| ListRotationsCommandOutput
|
|
207
278
|
| ListTagsForResourceCommandOutput
|
|
208
279
|
| PutContactPolicyCommandOutput
|
|
209
280
|
| SendActivationCodeCommandOutput
|
|
@@ -212,7 +283,8 @@ export type ServiceOutputTypes =
|
|
|
212
283
|
| TagResourceCommandOutput
|
|
213
284
|
| UntagResourceCommandOutput
|
|
214
285
|
| UpdateContactChannelCommandOutput
|
|
215
|
-
| UpdateContactCommandOutput
|
|
286
|
+
| UpdateContactCommandOutput
|
|
287
|
+
| UpdateRotationCommandOutput;
|
|
216
288
|
export interface ClientDefaults
|
|
217
289
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
218
290
|
requestHandler?: __HttpHandler;
|
|
@@ -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
|
+
CreateRotationRequest,
|
|
11
|
+
CreateRotationResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SSMContactsClientResolvedConfig,
|
|
17
|
+
} from "../SSMContactsClient";
|
|
18
|
+
export interface CreateRotationCommandInput extends CreateRotationRequest {}
|
|
19
|
+
export interface CreateRotationCommandOutput
|
|
20
|
+
extends CreateRotationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateRotationCommand extends $Command<
|
|
23
|
+
CreateRotationCommandInput,
|
|
24
|
+
CreateRotationCommandOutput,
|
|
25
|
+
SSMContactsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateRotationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: CreateRotationCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SSMContactsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateRotationCommandInput, CreateRotationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|