@aws-sdk/client-billingconductor 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/GetBillingGroupCostReportPaginator.js +2 -24
- package/dist-cjs/pagination/ListAccountAssociationsPaginator.js +2 -23
- package/dist-cjs/pagination/ListBillingGroupCostReportsPaginator.js +2 -24
- package/dist-cjs/pagination/ListBillingGroupsPaginator.js +2 -24
- package/dist-cjs/pagination/ListCustomLineItemVersionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListCustomLineItemsPaginator.js +2 -24
- package/dist-cjs/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +2 -24
- package/dist-cjs/pagination/ListPricingPlansPaginator.js +2 -24
- package/dist-cjs/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +2 -24
- package/dist-cjs/pagination/ListPricingRulesPaginator.js +2 -24
- package/dist-cjs/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +2 -24
- package/dist-es/pagination/GetBillingGroupCostReportPaginator.js +2 -23
- package/dist-es/pagination/ListAccountAssociationsPaginator.js +2 -22
- package/dist-es/pagination/ListBillingGroupCostReportsPaginator.js +2 -23
- package/dist-es/pagination/ListBillingGroupsPaginator.js +2 -23
- package/dist-es/pagination/ListCustomLineItemVersionsPaginator.js +2 -23
- package/dist-es/pagination/ListCustomLineItemsPaginator.js +2 -23
- package/dist-es/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +2 -23
- package/dist-es/pagination/ListPricingPlansPaginator.js +2 -23
- package/dist-es/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +2 -23
- package/dist-es/pagination/ListPricingRulesPaginator.js +2 -23
- package/dist-es/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +2 -23
- package/dist-types/pagination/GetBillingGroupCostReportPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccountAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBillingGroupCostReportsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBillingGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCustomLineItemVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCustomLineItemsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.d.ts +1 -1
- package/dist-types/pagination/ListPricingPlansPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPricingRulesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResourcesAssociatedToCustomLineItemPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/GetBillingGroupCostReportPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAccountAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListBillingGroupCostReportsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListBillingGroupsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCustomLineItemVersionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCustomLineItemsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPricingPlansPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPricingRulesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListResourcesAssociatedToCustomLineItemPaginator.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.paginateGetBillingGroupCostReport = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const GetBillingGroupCostReportCommand_1 = require("../commands/GetBillingGroupCostReportCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new GetBillingGroupCostReportCommand_1.GetBillingGroupCostReportCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateGetBillingGroupCostReport(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateGetBillingGroupCostReport = paginateGetBillingGroupCostReport;
|
|
7
|
+
exports.paginateGetBillingGroupCostReport = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, GetBillingGroupCostReportCommand_1.GetBillingGroupCostReportCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccountAssociations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListAccountAssociationsCommand_1 = require("../commands/ListAccountAssociationsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccountAssociationsCommand_1.ListAccountAssociationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccountAssociations(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 BillingconductorClient_1.BillingconductorClient) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListAccountAssociations = paginateListAccountAssociations;
|
|
7
|
+
exports.paginateListAccountAssociations = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListAccountAssociationsCommand_1.ListAccountAssociationsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListBillingGroupCostReports = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListBillingGroupCostReportsCommand_1 = require("../commands/ListBillingGroupCostReportsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListBillingGroupCostReportsCommand_1.ListBillingGroupCostReportsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListBillingGroupCostReports(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListBillingGroupCostReports = paginateListBillingGroupCostReports;
|
|
7
|
+
exports.paginateListBillingGroupCostReports = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListBillingGroupCostReportsCommand_1.ListBillingGroupCostReportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListBillingGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListBillingGroupsCommand_1 = require("../commands/ListBillingGroupsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListBillingGroupsCommand_1.ListBillingGroupsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListBillingGroups(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListBillingGroups = paginateListBillingGroups;
|
|
7
|
+
exports.paginateListBillingGroups = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListBillingGroupsCommand_1.ListBillingGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListCustomLineItemVersions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListCustomLineItemVersionsCommand_1 = require("../commands/ListCustomLineItemVersionsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListCustomLineItemVersionsCommand_1.ListCustomLineItemVersionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListCustomLineItemVersions(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListCustomLineItemVersions = paginateListCustomLineItemVersions;
|
|
7
|
+
exports.paginateListCustomLineItemVersions = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListCustomLineItemVersionsCommand_1.ListCustomLineItemVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListCustomLineItems = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListCustomLineItemsCommand_1 = require("../commands/ListCustomLineItemsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListCustomLineItemsCommand_1.ListCustomLineItemsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListCustomLineItems(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListCustomLineItems = paginateListCustomLineItems;
|
|
7
|
+
exports.paginateListCustomLineItems = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListCustomLineItemsCommand_1.ListCustomLineItemsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPricingPlansAssociatedWithPricingRule = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListPricingPlansAssociatedWithPricingRuleCommand_1 = require("../commands/ListPricingPlansAssociatedWithPricingRuleCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPricingPlansAssociatedWithPricingRuleCommand_1.ListPricingPlansAssociatedWithPricingRuleCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPricingPlansAssociatedWithPricingRule(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListPricingPlansAssociatedWithPricingRule = paginateListPricingPlansAssociatedWithPricingRule;
|
|
7
|
+
exports.paginateListPricingPlansAssociatedWithPricingRule = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListPricingPlansAssociatedWithPricingRuleCommand_1.ListPricingPlansAssociatedWithPricingRuleCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPricingPlans = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListPricingPlansCommand_1 = require("../commands/ListPricingPlansCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPricingPlansCommand_1.ListPricingPlansCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPricingPlans(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListPricingPlans = paginateListPricingPlans;
|
|
7
|
+
exports.paginateListPricingPlans = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListPricingPlansCommand_1.ListPricingPlansCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPricingRulesAssociatedToPricingPlan = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListPricingRulesAssociatedToPricingPlanCommand_1 = require("../commands/ListPricingRulesAssociatedToPricingPlanCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPricingRulesAssociatedToPricingPlanCommand_1.ListPricingRulesAssociatedToPricingPlanCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPricingRulesAssociatedToPricingPlan(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListPricingRulesAssociatedToPricingPlan = paginateListPricingRulesAssociatedToPricingPlan;
|
|
7
|
+
exports.paginateListPricingRulesAssociatedToPricingPlan = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListPricingRulesAssociatedToPricingPlanCommand_1.ListPricingRulesAssociatedToPricingPlanCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPricingRules = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListPricingRulesCommand_1 = require("../commands/ListPricingRulesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPricingRulesCommand_1.ListPricingRulesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPricingRules(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListPricingRules = paginateListPricingRules;
|
|
7
|
+
exports.paginateListPricingRules = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListPricingRulesCommand_1.ListPricingRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListResourcesAssociatedToCustomLineItem = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const BillingconductorClient_1 = require("../BillingconductorClient");
|
|
5
6
|
const ListResourcesAssociatedToCustomLineItemCommand_1 = require("../commands/ListResourcesAssociatedToCustomLineItemCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListResourcesAssociatedToCustomLineItemCommand_1.ListResourcesAssociatedToCustomLineItemCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListResourcesAssociatedToCustomLineItem(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 BillingconductorClient_1.BillingconductorClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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.paginateListResourcesAssociatedToCustomLineItem = paginateListResourcesAssociatedToCustomLineItem;
|
|
7
|
+
exports.paginateListResourcesAssociatedToCustomLineItem = (0, core_1.createPaginator)(BillingconductorClient_1.BillingconductorClient, ListResourcesAssociatedToCustomLineItemCommand_1.ListResourcesAssociatedToCustomLineItemCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { GetBillingGroupCostReportCommand, } from "../commands/GetBillingGroupCostReportCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetBillingGroupCostReportCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetBillingGroupCostReport(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateGetBillingGroupCostReport = createPaginator(BillingconductorClient, GetBillingGroupCostReportCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListAccountAssociationsCommand, } from "../commands/ListAccountAssociationsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccountAssociationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccountAssociations(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 BillingconductorClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListAccountAssociations = createPaginator(BillingconductorClient, ListAccountAssociationsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListBillingGroupCostReportsCommand, } from "../commands/ListBillingGroupCostReportsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListBillingGroupCostReportsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListBillingGroupCostReports(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListBillingGroupCostReports = createPaginator(BillingconductorClient, ListBillingGroupCostReportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListBillingGroupsCommand, } from "../commands/ListBillingGroupsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListBillingGroupsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListBillingGroups(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListBillingGroups = createPaginator(BillingconductorClient, ListBillingGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListCustomLineItemVersionsCommand, } from "../commands/ListCustomLineItemVersionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListCustomLineItemVersionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListCustomLineItemVersions(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListCustomLineItemVersions = createPaginator(BillingconductorClient, ListCustomLineItemVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListCustomLineItemsCommand, } from "../commands/ListCustomLineItemsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListCustomLineItemsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListCustomLineItems(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListCustomLineItems = createPaginator(BillingconductorClient, ListCustomLineItemsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListPricingPlansAssociatedWithPricingRuleCommand, } from "../commands/ListPricingPlansAssociatedWithPricingRuleCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPricingPlansAssociatedWithPricingRuleCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPricingPlansAssociatedWithPricingRule(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListPricingPlansAssociatedWithPricingRule = createPaginator(BillingconductorClient, ListPricingPlansAssociatedWithPricingRuleCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListPricingPlansCommand, } from "../commands/ListPricingPlansCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPricingPlansCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPricingPlans(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListPricingPlans = createPaginator(BillingconductorClient, ListPricingPlansCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListPricingRulesAssociatedToPricingPlanCommand, } from "../commands/ListPricingRulesAssociatedToPricingPlanCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPricingRulesAssociatedToPricingPlanCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPricingRulesAssociatedToPricingPlan(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListPricingRulesAssociatedToPricingPlan = createPaginator(BillingconductorClient, ListPricingRulesAssociatedToPricingPlanCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListPricingRulesCommand, } from "../commands/ListPricingRulesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPricingRulesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPricingRules(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListPricingRules = createPaginator(BillingconductorClient, ListPricingRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { BillingconductorClient } from "../BillingconductorClient";
|
|
2
3
|
import { ListResourcesAssociatedToCustomLineItemCommand, } from "../commands/ListResourcesAssociatedToCustomLineItemCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListResourcesAssociatedToCustomLineItemCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListResourcesAssociatedToCustomLineItem(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 BillingconductorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Billingconductor | BillingconductorClient");
|
|
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 paginateListResourcesAssociatedToCustomLineItem = createPaginator(BillingconductorClient, ListResourcesAssociatedToCustomLineItemCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetBillingGroupCostReport: (config: BillingconductorPaginationConfiguration, input: GetBillingGroupCostReportCommandInput, ...rest: any[]) => Paginator<GetBillingGroupCostReportCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccountAssociations: (config: BillingconductorPaginationConfiguration, input: ListAccountAssociationsCommandInput, ...rest: any[]) => Paginator<ListAccountAssociationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBillingGroupCostReports: (config: BillingconductorPaginationConfiguration, input: ListBillingGroupCostReportsCommandInput, ...rest: any[]) => Paginator<ListBillingGroupCostReportsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBillingGroups: (config: BillingconductorPaginationConfiguration, input: ListBillingGroupsCommandInput, ...rest: any[]) => Paginator<ListBillingGroupsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCustomLineItemVersions: (config: BillingconductorPaginationConfiguration, input: ListCustomLineItemVersionsCommandInput, ...rest: any[]) => Paginator<ListCustomLineItemVersionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCustomLineItems: (config: BillingconductorPaginationConfiguration, input: ListCustomLineItemsCommandInput, ...rest: any[]) => Paginator<ListCustomLineItemsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingPlansAssociatedWithPricingRule: (config: BillingconductorPaginationConfiguration, input: ListPricingPlansAssociatedWithPricingRuleCommandInput, ...rest: any[]) => Paginator<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingPlans: (config: BillingconductorPaginationConfiguration, input: ListPricingPlansCommandInput, ...rest: any[]) => Paginator<ListPricingPlansCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingRulesAssociatedToPricingPlan: (config: BillingconductorPaginationConfiguration, input: ListPricingRulesAssociatedToPricingPlanCommandInput, ...rest: any[]) => Paginator<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingRules: (config: BillingconductorPaginationConfiguration, input: ListPricingRulesCommandInput, ...rest: any[]) => Paginator<ListPricingRulesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResourcesAssociatedToCustomLineItem: (config: BillingconductorPaginationConfiguration, input: ListResourcesAssociatedToCustomLineItemCommandInput, ...rest: any[]) => Paginator<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetBillingGroupCostReportCommandOutput,
|
|
5
5
|
} from "../commands/GetBillingGroupCostReportCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetBillingGroupCostReport: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: GetBillingGroupCostReportCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetBillingGroupCostReportCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccountAssociationsCommandOutput,
|
|
5
5
|
} from "../commands/ListAccountAssociationsCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccountAssociations: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListAccountAssociationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccountAssociationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListBillingGroupCostReportsCommandOutput,
|
|
5
5
|
} from "../commands/ListBillingGroupCostReportsCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBillingGroupCostReports: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListBillingGroupCostReportsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBillingGroupCostReportsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListBillingGroupsCommandOutput,
|
|
5
5
|
} from "../commands/ListBillingGroupsCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBillingGroups: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListBillingGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBillingGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCustomLineItemVersionsCommandOutput,
|
|
5
5
|
} from "../commands/ListCustomLineItemVersionsCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCustomLineItemVersions: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListCustomLineItemVersionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCustomLineItemVersionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCustomLineItemsCommandOutput,
|
|
5
5
|
} from "../commands/ListCustomLineItemsCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCustomLineItems: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListCustomLineItemsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCustomLineItemsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPricingPlansAssociatedWithPricingRuleCommandOutput,
|
|
5
5
|
} from "../commands/ListPricingPlansAssociatedWithPricingRuleCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingPlansAssociatedWithPricingRule: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPricingPlansCommandOutput,
|
|
5
5
|
} from "../commands/ListPricingPlansCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingPlans: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListPricingPlansCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPricingPlansCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPricingRulesAssociatedToPricingPlanCommandOutput,
|
|
5
5
|
} from "../commands/ListPricingRulesAssociatedToPricingPlanCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingRulesAssociatedToPricingPlan: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPricingRulesCommandOutput,
|
|
5
5
|
} from "../commands/ListPricingRulesCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPricingRules: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListPricingRulesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPricingRulesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListResourcesAssociatedToCustomLineItemCommandOutput,
|
|
5
5
|
} from "../commands/ListResourcesAssociatedToCustomLineItemCommand";
|
|
6
6
|
import { BillingconductorPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResourcesAssociatedToCustomLineItem: (
|
|
8
8
|
config: BillingconductorPaginationConfiguration,
|
|
9
9
|
input: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-billingconductor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Billingconductor 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",
|