@aws-sdk/client-ssm-contacts 3.477.0 → 3.478.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/pagination/ListContactChannelsPaginator.js +2 -24
- package/dist-cjs/pagination/ListContactsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEngagementsPaginator.js +2 -24
- package/dist-cjs/pagination/ListPageReceiptsPaginator.js +2 -24
- package/dist-cjs/pagination/ListPageResolutionsPaginator.js +2 -23
- package/dist-cjs/pagination/ListPagesByContactPaginator.js +2 -24
- package/dist-cjs/pagination/ListPagesByEngagementPaginator.js +2 -24
- package/dist-cjs/pagination/ListPreviewRotationShiftsPaginator.js +2 -24
- package/dist-cjs/pagination/ListRotationOverridesPaginator.js +2 -24
- package/dist-cjs/pagination/ListRotationShiftsPaginator.js +2 -24
- package/dist-cjs/pagination/ListRotationsPaginator.js +2 -24
- package/dist-es/pagination/ListContactChannelsPaginator.js +2 -23
- package/dist-es/pagination/ListContactsPaginator.js +2 -23
- package/dist-es/pagination/ListEngagementsPaginator.js +2 -23
- package/dist-es/pagination/ListPageReceiptsPaginator.js +2 -23
- package/dist-es/pagination/ListPageResolutionsPaginator.js +2 -22
- package/dist-es/pagination/ListPagesByContactPaginator.js +2 -23
- package/dist-es/pagination/ListPagesByEngagementPaginator.js +2 -23
- package/dist-es/pagination/ListPreviewRotationShiftsPaginator.js +2 -23
- package/dist-es/pagination/ListRotationOverridesPaginator.js +2 -23
- package/dist-es/pagination/ListRotationShiftsPaginator.js +2 -23
- package/dist-es/pagination/ListRotationsPaginator.js +2 -23
- package/dist-types/pagination/ListContactChannelsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContactsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPageReceiptsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPageResolutionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPagesByContactPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPagesByEngagementPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPreviewRotationShiftsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRotationOverridesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRotationShiftsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRotationsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListContactChannelsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPageReceiptsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPageResolutionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPagesByContactPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPagesByEngagementPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPreviewRotationShiftsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRotationOverridesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRotationShiftsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRotationsPaginator.d.ts +3 -3
- package/package.json +6 -5
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListContactChannels = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListContactChannelsCommand_1 = require("../commands/ListContactChannelsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListContactChannelsCommand_1.ListContactChannelsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListContactChannels(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListContactChannels = paginateListContactChannels;
|
|
7
|
+
exports.paginateListContactChannels = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListContactChannelsCommand_1.ListContactChannelsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListContacts = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListContactsCommand_1 = require("../commands/ListContactsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListContactsCommand_1.ListContactsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListContacts(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListContacts = paginateListContacts;
|
|
7
|
+
exports.paginateListContacts = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListContactsCommand_1.ListContactsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEngagements = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListEngagementsCommand_1 = require("../commands/ListEngagementsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListEngagementsCommand_1.ListEngagementsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListEngagements(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListEngagements = paginateListEngagements;
|
|
7
|
+
exports.paginateListEngagements = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListEngagementsCommand_1.ListEngagementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPageReceipts = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPageReceiptsCommand_1 = require("../commands/ListPageReceiptsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPageReceiptsCommand_1.ListPageReceiptsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPageReceipts(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListPageReceipts = paginateListPageReceipts;
|
|
7
|
+
exports.paginateListPageReceipts = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListPageReceiptsCommand_1.ListPageReceiptsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPageResolutions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPageResolutionsCommand_1 = require("../commands/ListPageResolutionsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPageResolutionsCommand_1.ListPageResolutionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPageResolutions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
20
|
-
}
|
|
21
|
-
yield page;
|
|
22
|
-
const prevToken = token;
|
|
23
|
-
token = page.NextToken;
|
|
24
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
25
|
-
}
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
exports.paginateListPageResolutions = paginateListPageResolutions;
|
|
7
|
+
exports.paginateListPageResolutions = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListPageResolutionsCommand_1.ListPageResolutionsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPagesByContact = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPagesByContactCommand_1 = require("../commands/ListPagesByContactCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPagesByContactCommand_1.ListPagesByContactCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPagesByContact(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListPagesByContact = paginateListPagesByContact;
|
|
7
|
+
exports.paginateListPagesByContact = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListPagesByContactCommand_1.ListPagesByContactCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPagesByEngagement = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPagesByEngagementCommand_1 = require("../commands/ListPagesByEngagementCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPagesByEngagementCommand_1.ListPagesByEngagementCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPagesByEngagement(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListPagesByEngagement = paginateListPagesByEngagement;
|
|
7
|
+
exports.paginateListPagesByEngagement = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListPagesByEngagementCommand_1.ListPagesByEngagementCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPreviewRotationShifts = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPreviewRotationShiftsCommand_1 = require("../commands/ListPreviewRotationShiftsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPreviewRotationShiftsCommand_1.ListPreviewRotationShiftsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPreviewRotationShifts(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListPreviewRotationShifts = paginateListPreviewRotationShifts;
|
|
7
|
+
exports.paginateListPreviewRotationShifts = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListPreviewRotationShiftsCommand_1.ListPreviewRotationShiftsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRotationOverrides = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListRotationOverridesCommand_1 = require("../commands/ListRotationOverridesCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListRotationOverridesCommand_1.ListRotationOverridesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListRotationOverrides(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListRotationOverrides = paginateListRotationOverrides;
|
|
7
|
+
exports.paginateListRotationOverrides = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListRotationOverridesCommand_1.ListRotationOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRotationShifts = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListRotationShiftsCommand_1 = require("../commands/ListRotationShiftsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListRotationShiftsCommand_1.ListRotationShiftsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListRotationShifts(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListRotationShifts = paginateListRotationShifts;
|
|
7
|
+
exports.paginateListRotationShifts = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListRotationShiftsCommand_1.ListRotationShiftsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRotations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListRotationsCommand_1 = require("../commands/ListRotationsCommand");
|
|
5
6
|
const SSMContactsClient_1 = require("../SSMContactsClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListRotationsCommand_1.ListRotationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListRotations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof SSMContactsClient_1.SSMContactsClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListRotations = paginateListRotations;
|
|
7
|
+
exports.paginateListRotations = (0, core_1.createPaginator)(SSMContactsClient_1.SSMContactsClient, ListRotationsCommand_1.ListRotationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListContactChannelsCommand, } from "../commands/ListContactChannelsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListContactChannelsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListContactChannels(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListContactChannels = createPaginator(SSMContactsClient, ListContactChannelsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListContactsCommand, } from "../commands/ListContactsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListContactsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListContacts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListContacts = createPaginator(SSMContactsClient, ListContactsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListEngagementsCommand, } from "../commands/ListEngagementsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListEngagementsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListEngagements(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListEngagements = createPaginator(SSMContactsClient, ListEngagementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPageReceiptsCommand, } from "../commands/ListPageReceiptsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPageReceiptsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPageReceipts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPageReceipts = createPaginator(SSMContactsClient, ListPageReceiptsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPageResolutionsCommand, } from "../commands/ListPageResolutionsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPageResolutionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPageResolutions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
if (config.client instanceof SSMContactsClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.NextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListPageResolutions = createPaginator(SSMContactsClient, ListPageResolutionsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPagesByContactCommand, } from "../commands/ListPagesByContactCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPagesByContactCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPagesByContact(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPagesByContact = createPaginator(SSMContactsClient, ListPagesByContactCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPagesByEngagementCommand, } from "../commands/ListPagesByEngagementCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPagesByEngagementCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPagesByEngagement(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPagesByEngagement = createPaginator(SSMContactsClient, ListPagesByEngagementCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPreviewRotationShiftsCommand, } from "../commands/ListPreviewRotationShiftsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPreviewRotationShiftsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPreviewRotationShifts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPreviewRotationShifts = createPaginator(SSMContactsClient, ListPreviewRotationShiftsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListRotationOverridesCommand, } from "../commands/ListRotationOverridesCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRotationOverridesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRotationOverrides(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListRotationOverrides = createPaginator(SSMContactsClient, ListRotationOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListRotationShiftsCommand, } from "../commands/ListRotationShiftsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRotationShiftsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRotationShifts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListRotationShifts = createPaginator(SSMContactsClient, ListRotationShiftsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListRotationsCommand, } from "../commands/ListRotationsCommand";
|
|
2
3
|
import { SSMContactsClient } from "../SSMContactsClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRotationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRotations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof SSMContactsClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected SSMContacts | SSMContactsClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListRotations = createPaginator(SSMContactsClient, ListRotationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListContactChannels: (config: SSMContactsPaginationConfiguration, input: ListContactChannelsCommandInput, ...rest: any[]) => Paginator<ListContactChannelsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListContacts: (config: SSMContactsPaginationConfiguration, input: ListContactsCommandInput, ...rest: any[]) => Paginator<ListContactsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEngagements: (config: SSMContactsPaginationConfiguration, input: ListEngagementsCommandInput, ...rest: any[]) => Paginator<ListEngagementsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPageReceipts: (config: SSMContactsPaginationConfiguration, input: ListPageReceiptsCommandInput, ...rest: any[]) => Paginator<ListPageReceiptsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPageResolutions: (config: SSMContactsPaginationConfiguration, input: ListPageResolutionsCommandInput, ...rest: any[]) => Paginator<ListPageResolutionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPagesByContact: (config: SSMContactsPaginationConfiguration, input: ListPagesByContactCommandInput, ...rest: any[]) => Paginator<ListPagesByContactCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPagesByEngagement: (config: SSMContactsPaginationConfiguration, input: ListPagesByEngagementCommandInput, ...rest: any[]) => Paginator<ListPagesByEngagementCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPreviewRotationShifts: (config: SSMContactsPaginationConfiguration, input: ListPreviewRotationShiftsCommandInput, ...rest: any[]) => Paginator<ListPreviewRotationShiftsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotationOverrides: (config: SSMContactsPaginationConfiguration, input: ListRotationOverridesCommandInput, ...rest: any[]) => Paginator<ListRotationOverridesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotationShifts: (config: SSMContactsPaginationConfiguration, input: ListRotationShiftsCommandInput, ...rest: any[]) => Paginator<ListRotationShiftsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotations: (config: SSMContactsPaginationConfiguration, input: ListRotationsCommandInput, ...rest: any[]) => Paginator<ListRotationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListContactChannelsCommandOutput,
|
|
5
5
|
} from "../commands/ListContactChannelsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListContactChannels: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListContactChannelsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListContactChannelsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListContactsCommandOutput,
|
|
5
5
|
} from "../commands/ListContactsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListContacts: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListContactsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListContactsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListEngagementsCommandOutput,
|
|
5
5
|
} from "../commands/ListEngagementsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEngagements: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListEngagementsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPageReceiptsCommandOutput,
|
|
5
5
|
} from "../commands/ListPageReceiptsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPageReceipts: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListPageReceiptsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPageReceiptsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPageResolutionsCommandOutput,
|
|
5
5
|
} from "../commands/ListPageResolutionsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPageResolutions: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListPageResolutionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPageResolutionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPagesByContactCommandOutput,
|
|
5
5
|
} from "../commands/ListPagesByContactCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPagesByContact: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListPagesByContactCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPagesByContactCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPagesByEngagementCommandOutput,
|
|
5
5
|
} from "../commands/ListPagesByEngagementCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPagesByEngagement: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListPagesByEngagementCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPagesByEngagementCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPreviewRotationShiftsCommandOutput,
|
|
5
5
|
} from "../commands/ListPreviewRotationShiftsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPreviewRotationShifts: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListPreviewRotationShiftsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPreviewRotationShiftsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRotationOverridesCommandOutput,
|
|
5
5
|
} from "../commands/ListRotationOverridesCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotationOverrides: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListRotationOverridesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRotationOverridesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRotationShiftsCommandOutput,
|
|
5
5
|
} from "../commands/ListRotationShiftsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotationShifts: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListRotationShiftsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRotationShiftsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRotationsCommandOutput,
|
|
5
5
|
} from "../commands/ListRotationsCommand";
|
|
6
6
|
import { SSMContactsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRotations: (
|
|
8
8
|
config: SSMContactsPaginationConfiguration,
|
|
9
9
|
input: ListRotationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRotationsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-contacts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Contacts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|