include node_modules so release .zip is deployable
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListAccountRoles = void 0;
|
||||
const ListAccountRolesCommand_1 = require("../commands/ListAccountRolesCommand");
|
||||
const SSOClient_1 = require("../SSOClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListAccountRolesCommand_1.ListAccountRolesCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListAccountRoles(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.nextToken = token;
|
||||
input["maxResults"] = config.pageSize;
|
||||
if (config.client instanceof SSOClient_1.SSOClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected SSO | SSOClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.nextToken;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListAccountRoles = paginateListAccountRoles;
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.paginateListAccounts = void 0;
|
||||
const ListAccountsCommand_1 = require("../commands/ListAccountsCommand");
|
||||
const SSOClient_1 = require("../SSOClient");
|
||||
const makePagedClientRequest = async (client, input, ...args) => {
|
||||
return await client.send(new ListAccountsCommand_1.ListAccountsCommand(input), ...args);
|
||||
};
|
||||
async function* paginateListAccounts(config, input, ...additionalArguments) {
|
||||
let token = config.startingToken || undefined;
|
||||
let hasNext = true;
|
||||
let page;
|
||||
while (hasNext) {
|
||||
input.nextToken = token;
|
||||
input["maxResults"] = config.pageSize;
|
||||
if (config.client instanceof SSOClient_1.SSOClient) {
|
||||
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
||||
}
|
||||
else {
|
||||
throw new Error("Invalid client, expected SSO | SSOClient");
|
||||
}
|
||||
yield page;
|
||||
const prevToken = token;
|
||||
token = page.nextToken;
|
||||
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
exports.paginateListAccounts = paginateListAccounts;
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./Interfaces"), exports);
|
||||
tslib_1.__exportStar(require("./ListAccountRolesPaginator"), exports);
|
||||
tslib_1.__exportStar(require("./ListAccountsPaginator"), exports);
|
||||
Reference in New Issue
Block a user