@aws-sdk/client-lambda 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/ListAliasesPaginator.js +2 -24
- package/dist-cjs/pagination/ListCodeSigningConfigsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEventSourceMappingsPaginator.js +2 -24
- package/dist-cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +2 -24
- package/dist-cjs/pagination/ListFunctionUrlConfigsPaginator.js +2 -24
- package/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +2 -24
- package/dist-cjs/pagination/ListFunctionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListLayerVersionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListLayersPaginator.js +2 -24
- package/dist-cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +2 -24
- package/dist-cjs/pagination/ListVersionsByFunctionPaginator.js +2 -24
- package/dist-es/pagination/ListAliasesPaginator.js +2 -23
- package/dist-es/pagination/ListCodeSigningConfigsPaginator.js +2 -23
- package/dist-es/pagination/ListEventSourceMappingsPaginator.js +2 -23
- package/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +2 -23
- package/dist-es/pagination/ListFunctionUrlConfigsPaginator.js +2 -23
- package/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +2 -23
- package/dist-es/pagination/ListFunctionsPaginator.js +2 -23
- package/dist-es/pagination/ListLayerVersionsPaginator.js +2 -23
- package/dist-es/pagination/ListLayersPaginator.js +2 -23
- package/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +2 -23
- package/dist-es/pagination/ListVersionsByFunctionPaginator.js +2 -23
- package/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFunctionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLayerVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLayersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +3 -3
- package/package.json +5 -5
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAliases = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAliasesCommand_1 = require("../commands/ListAliasesCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAliasesCommand_1.ListAliasesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAliases(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAliases = paginateListAliases;
|
|
7
|
+
exports.paginateListAliases = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListAliasesCommand_1.ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListCodeSigningConfigs = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListCodeSigningConfigsCommand_1 = require("../commands/ListCodeSigningConfigsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListCodeSigningConfigsCommand_1.ListCodeSigningConfigsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListCodeSigningConfigs(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListCodeSigningConfigs = paginateListCodeSigningConfigs;
|
|
7
|
+
exports.paginateListCodeSigningConfigs = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListCodeSigningConfigsCommand_1.ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListEventSourceMappings = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListEventSourceMappingsCommand_1 = require("../commands/ListEventSourceMappingsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListEventSourceMappingsCommand_1.ListEventSourceMappingsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListEventSourceMappings(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListEventSourceMappings = paginateListEventSourceMappings;
|
|
7
|
+
exports.paginateListEventSourceMappings = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListEventSourceMappingsCommand_1.ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFunctionEventInvokeConfigs = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFunctionEventInvokeConfigsCommand_1 = require("../commands/ListFunctionEventInvokeConfigsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFunctionEventInvokeConfigsCommand_1.ListFunctionEventInvokeConfigsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFunctionEventInvokeConfigs(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFunctionEventInvokeConfigs = paginateListFunctionEventInvokeConfigs;
|
|
7
|
+
exports.paginateListFunctionEventInvokeConfigs = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListFunctionEventInvokeConfigsCommand_1.ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFunctionUrlConfigs = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFunctionUrlConfigsCommand_1 = require("../commands/ListFunctionUrlConfigsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFunctionUrlConfigsCommand_1.ListFunctionUrlConfigsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFunctionUrlConfigs(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFunctionUrlConfigs = paginateListFunctionUrlConfigs;
|
|
7
|
+
exports.paginateListFunctionUrlConfigs = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListFunctionUrlConfigsCommand_1.ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFunctionsByCodeSigningConfig = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFunctionsByCodeSigningConfigCommand_1 = require("../commands/ListFunctionsByCodeSigningConfigCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFunctionsByCodeSigningConfigCommand_1.ListFunctionsByCodeSigningConfigCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFunctionsByCodeSigningConfig(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFunctionsByCodeSigningConfig = paginateListFunctionsByCodeSigningConfig;
|
|
7
|
+
exports.paginateListFunctionsByCodeSigningConfig = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListFunctionsByCodeSigningConfigCommand_1.ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFunctions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFunctionsCommand_1 = require("../commands/ListFunctionsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFunctionsCommand_1.ListFunctionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFunctions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFunctions = paginateListFunctions;
|
|
7
|
+
exports.paginateListFunctions = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListFunctionsCommand_1.ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListLayerVersions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListLayerVersionsCommand_1 = require("../commands/ListLayerVersionsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListLayerVersionsCommand_1.ListLayerVersionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListLayerVersions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListLayerVersions = paginateListLayerVersions;
|
|
7
|
+
exports.paginateListLayerVersions = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListLayerVersionsCommand_1.ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListLayers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListLayersCommand_1 = require("../commands/ListLayersCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListLayersCommand_1.ListLayersCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListLayers(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListLayers = paginateListLayers;
|
|
7
|
+
exports.paginateListLayers = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListLayersCommand_1.ListLayersCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListProvisionedConcurrencyConfigs = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListProvisionedConcurrencyConfigsCommand_1 = require("../commands/ListProvisionedConcurrencyConfigsCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListProvisionedConcurrencyConfigsCommand_1.ListProvisionedConcurrencyConfigsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListProvisionedConcurrencyConfigs(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListProvisionedConcurrencyConfigs = paginateListProvisionedConcurrencyConfigs;
|
|
7
|
+
exports.paginateListProvisionedConcurrencyConfigs = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListProvisionedConcurrencyConfigsCommand_1.ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListVersionsByFunction = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListVersionsByFunctionCommand_1 = require("../commands/ListVersionsByFunctionCommand");
|
|
5
6
|
const LambdaClient_1 = require("../LambdaClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListVersionsByFunctionCommand_1.ListVersionsByFunctionCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListVersionsByFunction(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.Marker = token;
|
|
15
|
-
input["MaxItems"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof LambdaClient_1.LambdaClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextMarker;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListVersionsByFunction = paginateListVersionsByFunction;
|
|
7
|
+
exports.paginateListVersionsByFunction = (0, core_1.createPaginator)(LambdaClient_1.LambdaClient, ListVersionsByFunctionCommand_1.ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAliasesCommand } from "../commands/ListAliasesCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAliasesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAliases(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAliases = createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListCodeSigningConfigsCommand, } from "../commands/ListCodeSigningConfigsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListCodeSigningConfigsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListCodeSigningConfigs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListCodeSigningConfigs = createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListEventSourceMappingsCommand, } from "../commands/ListEventSourceMappingsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListEventSourceMappingsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListEventSourceMappings(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListEventSourceMappings = createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListFunctionEventInvokeConfigsCommand, } from "../commands/ListFunctionEventInvokeConfigsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListFunctionEventInvokeConfigsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListFunctionEventInvokeConfigs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListFunctionEventInvokeConfigs = createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListFunctionUrlConfigsCommand, } from "../commands/ListFunctionUrlConfigsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListFunctionUrlConfigsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListFunctionUrlConfigs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListFunctionUrlConfigs = createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListFunctionsByCodeSigningConfigCommand, } from "../commands/ListFunctionsByCodeSigningConfigCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListFunctionsByCodeSigningConfigCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListFunctionsByCodeSigningConfig(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListFunctionsByCodeSigningConfig = createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListFunctionsCommand, } from "../commands/ListFunctionsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListFunctionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListFunctions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListFunctions = createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListLayerVersionsCommand, } from "../commands/ListLayerVersionsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListLayerVersionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListLayerVersions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListLayerVersions = createPaginator(LambdaClient, ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListLayersCommand } from "../commands/ListLayersCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListLayersCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListLayers(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListLayers = createPaginator(LambdaClient, ListLayersCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListProvisionedConcurrencyConfigsCommand, } from "../commands/ListProvisionedConcurrencyConfigsCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListProvisionedConcurrencyConfigsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListProvisionedConcurrencyConfigs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListProvisionedConcurrencyConfigs = createPaginator(LambdaClient, ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListVersionsByFunctionCommand, } from "../commands/ListVersionsByFunctionCommand";
|
|
2
3
|
import { LambdaClient } from "../LambdaClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListVersionsByFunctionCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListVersionsByFunction(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.Marker = token;
|
|
12
|
-
input["MaxItems"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LambdaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Lambda | LambdaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextMarker;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListVersionsByFunction = createPaginator(LambdaClient, ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAliases: (config: LambdaPaginationConfiguration, input: ListAliasesCommandInput, ...rest: any[]) => Paginator<ListAliasesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCodeSigningConfigs: (config: LambdaPaginationConfiguration, input: ListCodeSigningConfigsCommandInput, ...rest: any[]) => Paginator<ListCodeSigningConfigsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventSourceMappings: (config: LambdaPaginationConfiguration, input: ListEventSourceMappingsCommandInput, ...rest: any[]) => Paginator<ListEventSourceMappingsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionEventInvokeConfigs: (config: LambdaPaginationConfiguration, input: ListFunctionEventInvokeConfigsCommandInput, ...rest: any[]) => Paginator<ListFunctionEventInvokeConfigsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionUrlConfigs: (config: LambdaPaginationConfiguration, input: ListFunctionUrlConfigsCommandInput, ...rest: any[]) => Paginator<ListFunctionUrlConfigsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionsByCodeSigningConfig: (config: LambdaPaginationConfiguration, input: ListFunctionsByCodeSigningConfigCommandInput, ...rest: any[]) => Paginator<ListFunctionsByCodeSigningConfigCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctions: (config: LambdaPaginationConfiguration, input: ListFunctionsCommandInput, ...rest: any[]) => Paginator<ListFunctionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLayerVersions: (config: LambdaPaginationConfiguration, input: ListLayerVersionsCommandInput, ...rest: any[]) => Paginator<ListLayerVersionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLayers: (config: LambdaPaginationConfiguration, input: ListLayersCommandInput, ...rest: any[]) => Paginator<ListLayersCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListProvisionedConcurrencyConfigs: (config: LambdaPaginationConfiguration, input: ListProvisionedConcurrencyConfigsCommandInput, ...rest: any[]) => Paginator<ListProvisionedConcurrencyConfigsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListVersionsByFunction: (config: LambdaPaginationConfiguration, input: ListVersionsByFunctionCommandInput, ...rest: any[]) => Paginator<ListVersionsByFunctionCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAliasesCommandOutput,
|
|
5
5
|
} from "../commands/ListAliasesCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAliases: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListAliasesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAliasesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCodeSigningConfigsCommandOutput,
|
|
5
5
|
} from "../commands/ListCodeSigningConfigsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCodeSigningConfigs: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListCodeSigningConfigsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCodeSigningConfigsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListEventSourceMappingsCommandOutput,
|
|
5
5
|
} from "../commands/ListEventSourceMappingsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventSourceMappings: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListEventSourceMappingsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEventSourceMappingsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListFunctionEventInvokeConfigsCommandOutput,
|
|
5
5
|
} from "../commands/ListFunctionEventInvokeConfigsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionEventInvokeConfigs: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListFunctionEventInvokeConfigsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFunctionEventInvokeConfigsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListFunctionUrlConfigsCommandOutput,
|
|
5
5
|
} from "../commands/ListFunctionUrlConfigsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionUrlConfigs: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListFunctionUrlConfigsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFunctionUrlConfigsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListFunctionsByCodeSigningConfigCommandOutput,
|
|
5
5
|
} from "../commands/ListFunctionsByCodeSigningConfigCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctionsByCodeSigningConfig: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListFunctionsByCodeSigningConfigCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFunctionsByCodeSigningConfigCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListFunctionsCommandOutput,
|
|
5
5
|
} from "../commands/ListFunctionsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFunctions: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListFunctionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFunctionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListLayerVersionsCommandOutput,
|
|
5
5
|
} from "../commands/ListLayerVersionsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLayerVersions: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListLayerVersionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListLayerVersionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListLayersCommandOutput,
|
|
5
5
|
} from "../commands/ListLayersCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLayers: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListLayersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListLayersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListProvisionedConcurrencyConfigsCommandOutput,
|
|
5
5
|
} from "../commands/ListProvisionedConcurrencyConfigsCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListProvisionedConcurrencyConfigs: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListProvisionedConcurrencyConfigsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProvisionedConcurrencyConfigsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListVersionsByFunctionCommandOutput,
|
|
5
5
|
} from "../commands/ListVersionsByFunctionCommand";
|
|
6
6
|
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListVersionsByFunction: (
|
|
8
8
|
config: LambdaPaginationConfiguration,
|
|
9
9
|
input: ListVersionsByFunctionCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListVersionsByFunctionCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda 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,17 +20,17 @@
|
|
|
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",
|