@aws-sdk/client-service-quotas 3.476.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.
Files changed (25) hide show
  1. package/dist-cjs/pagination/ListAWSDefaultServiceQuotasPaginator.js +2 -24
  2. package/dist-cjs/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +2 -24
  3. package/dist-cjs/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +2 -24
  4. package/dist-cjs/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +2 -24
  5. package/dist-cjs/pagination/ListServiceQuotasPaginator.js +2 -24
  6. package/dist-cjs/pagination/ListServicesPaginator.js +2 -24
  7. package/dist-es/pagination/ListAWSDefaultServiceQuotasPaginator.js +2 -23
  8. package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +2 -23
  9. package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +2 -23
  10. package/dist-es/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +2 -23
  11. package/dist-es/pagination/ListServiceQuotasPaginator.js +2 -23
  12. package/dist-es/pagination/ListServicesPaginator.js +2 -23
  13. package/dist-types/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +1 -1
  14. package/dist-types/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +1 -1
  15. package/dist-types/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +1 -1
  16. package/dist-types/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +1 -1
  17. package/dist-types/pagination/ListServiceQuotasPaginator.d.ts +1 -1
  18. package/dist-types/pagination/ListServicesPaginator.d.ts +1 -1
  19. package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +3 -3
  20. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +3 -3
  21. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +3 -3
  22. package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +3 -3
  23. package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +3 -3
  24. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +3 -3
  25. package/package.json +7 -6
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListAWSDefaultServiceQuotas = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListAWSDefaultServiceQuotasCommand_1 = require("../commands/ListAWSDefaultServiceQuotasCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListAWSDefaultServiceQuotasCommand_1.ListAWSDefaultServiceQuotasCommand(input), ...args);
8
- };
9
- async function* paginateListAWSDefaultServiceQuotas(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListAWSDefaultServiceQuotas = paginateListAWSDefaultServiceQuotas;
7
+ exports.paginateListAWSDefaultServiceQuotas = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListAWSDefaultServiceQuotasCommand_1.ListAWSDefaultServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1 = require("../commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1.ListRequestedServiceQuotaChangeHistoryByQuotaCommand(input), ...args);
8
- };
9
- async function* paginateListRequestedServiceQuotaChangeHistoryByQuota(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListRequestedServiceQuotaChangeHistoryByQuota = paginateListRequestedServiceQuotaChangeHistoryByQuota;
7
+ exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1.ListRequestedServiceQuotaChangeHistoryByQuotaCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListRequestedServiceQuotaChangeHistory = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListRequestedServiceQuotaChangeHistoryCommand_1 = require("../commands/ListRequestedServiceQuotaChangeHistoryCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListRequestedServiceQuotaChangeHistoryCommand_1.ListRequestedServiceQuotaChangeHistoryCommand(input), ...args);
8
- };
9
- async function* paginateListRequestedServiceQuotaChangeHistory(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListRequestedServiceQuotaChangeHistory = paginateListRequestedServiceQuotaChangeHistory;
7
+ exports.paginateListRequestedServiceQuotaChangeHistory = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryCommand_1.ListRequestedServiceQuotaChangeHistoryCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListServiceQuotaIncreaseRequestsInTemplate = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListServiceQuotaIncreaseRequestsInTemplateCommand_1 = require("../commands/ListServiceQuotaIncreaseRequestsInTemplateCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListServiceQuotaIncreaseRequestsInTemplateCommand_1.ListServiceQuotaIncreaseRequestsInTemplateCommand(input), ...args);
8
- };
9
- async function* paginateListServiceQuotaIncreaseRequestsInTemplate(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListServiceQuotaIncreaseRequestsInTemplate = paginateListServiceQuotaIncreaseRequestsInTemplate;
7
+ exports.paginateListServiceQuotaIncreaseRequestsInTemplate = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServiceQuotaIncreaseRequestsInTemplateCommand_1.ListServiceQuotaIncreaseRequestsInTemplateCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListServiceQuotas = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListServiceQuotasCommand_1 = require("../commands/ListServiceQuotasCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListServiceQuotasCommand_1.ListServiceQuotasCommand(input), ...args);
8
- };
9
- async function* paginateListServiceQuotas(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListServiceQuotas = paginateListServiceQuotas;
7
+ exports.paginateListServiceQuotas = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServiceQuotasCommand_1.ListServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListServices = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListServicesCommand_1 = require("../commands/ListServicesCommand");
5
6
  const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListServicesCommand_1.ListServicesCommand(input), ...args);
8
- };
9
- async function* paginateListServices(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 ServiceQuotasClient_1.ServiceQuotasClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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.paginateListServices = paginateListServices;
7
+ exports.paginateListServices = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServicesCommand_1.ListServicesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListAWSDefaultServiceQuotasCommand, } from "../commands/ListAWSDefaultServiceQuotasCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListAWSDefaultServiceQuotasCommand(input), ...args);
5
- };
6
- export async function* paginateListAWSDefaultServiceQuotas(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListAWSDefaultServiceQuotas = createPaginator(ServiceQuotasClient, ListAWSDefaultServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListRequestedServiceQuotaChangeHistoryByQuotaCommand, } from "../commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListRequestedServiceQuotaChangeHistoryByQuotaCommand(input), ...args);
5
- };
6
- export async function* paginateListRequestedServiceQuotaChangeHistoryByQuota(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListRequestedServiceQuotaChangeHistoryByQuota = createPaginator(ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryByQuotaCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListRequestedServiceQuotaChangeHistoryCommand, } from "../commands/ListRequestedServiceQuotaChangeHistoryCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListRequestedServiceQuotaChangeHistoryCommand(input), ...args);
5
- };
6
- export async function* paginateListRequestedServiceQuotaChangeHistory(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListRequestedServiceQuotaChangeHistory = createPaginator(ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListServiceQuotaIncreaseRequestsInTemplateCommand, } from "../commands/ListServiceQuotaIncreaseRequestsInTemplateCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListServiceQuotaIncreaseRequestsInTemplateCommand(input), ...args);
5
- };
6
- export async function* paginateListServiceQuotaIncreaseRequestsInTemplate(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListServiceQuotaIncreaseRequestsInTemplate = createPaginator(ServiceQuotasClient, ListServiceQuotaIncreaseRequestsInTemplateCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListServiceQuotasCommand, } from "../commands/ListServiceQuotasCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListServiceQuotasCommand(input), ...args);
5
- };
6
- export async function* paginateListServiceQuotas(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListServiceQuotas = createPaginator(ServiceQuotasClient, ListServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListServicesCommand, } from "../commands/ListServicesCommand";
2
3
  import { ServiceQuotasClient } from "../ServiceQuotasClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListServicesCommand(input), ...args);
5
- };
6
- export async function* paginateListServices(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 ServiceQuotasClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ServiceQuotas | ServiceQuotasClient");
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 paginateListServices = createPaginator(ServiceQuotasClient, ListServicesCommand, "NextToken", "NextToken", "MaxResults");
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListAWSDefaultServiceQuotas(config: ServiceQuotasPaginationConfiguration, input: ListAWSDefaultServiceQuotasCommandInput, ...additionalArguments: any): Paginator<ListAWSDefaultServiceQuotasCommandOutput>;
7
+ export declare const paginateListAWSDefaultServiceQuotas: (config: ServiceQuotasPaginationConfiguration, input: ListAWSDefaultServiceQuotasCommandInput, ...rest: any[]) => Paginator<ListAWSDefaultServiceQuotasCommandOutput>;
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListRequestedServiceQuotaChangeHistoryByQuota(config: ServiceQuotasPaginationConfiguration, input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ...additionalArguments: any): Paginator<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
7
+ export declare const paginateListRequestedServiceQuotaChangeHistoryByQuota: (config: ServiceQuotasPaginationConfiguration, input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ...rest: any[]) => Paginator<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListRequestedServiceQuotaChangeHistory(config: ServiceQuotasPaginationConfiguration, input: ListRequestedServiceQuotaChangeHistoryCommandInput, ...additionalArguments: any): Paginator<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
7
+ export declare const paginateListRequestedServiceQuotaChangeHistory: (config: ServiceQuotasPaginationConfiguration, input: ListRequestedServiceQuotaChangeHistoryCommandInput, ...rest: any[]) => Paginator<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListServiceQuotaIncreaseRequestsInTemplate(config: ServiceQuotasPaginationConfiguration, input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ...additionalArguments: any): Paginator<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
7
+ export declare const paginateListServiceQuotaIncreaseRequestsInTemplate: (config: ServiceQuotasPaginationConfiguration, input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ...rest: any[]) => Paginator<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListServiceQuotas(config: ServiceQuotasPaginationConfiguration, input: ListServiceQuotasCommandInput, ...additionalArguments: any): Paginator<ListServiceQuotasCommandOutput>;
7
+ export declare const paginateListServiceQuotas: (config: ServiceQuotasPaginationConfiguration, input: ListServiceQuotasCommandInput, ...rest: any[]) => Paginator<ListServiceQuotasCommandOutput>;
@@ -4,4 +4,4 @@ import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListServices(config: ServiceQuotasPaginationConfiguration, input: ListServicesCommandInput, ...additionalArguments: any): Paginator<ListServicesCommandOutput>;
7
+ export declare const paginateListServices: (config: ServiceQuotasPaginationConfiguration, input: ListServicesCommandInput, ...rest: any[]) => Paginator<ListServicesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListAWSDefaultServiceQuotasCommandOutput,
5
5
  } from "../commands/ListAWSDefaultServiceQuotasCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListAWSDefaultServiceQuotas(
7
+ export declare const paginateListAWSDefaultServiceQuotas: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListAWSDefaultServiceQuotasCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListAWSDefaultServiceQuotasCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListAWSDefaultServiceQuotasCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput,
5
5
  } from "../commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListRequestedServiceQuotaChangeHistoryByQuota(
7
+ export declare const paginateListRequestedServiceQuotaChangeHistoryByQuota: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListRequestedServiceQuotaChangeHistoryCommandOutput,
5
5
  } from "../commands/ListRequestedServiceQuotaChangeHistoryCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListRequestedServiceQuotaChangeHistory(
7
+ export declare const paginateListRequestedServiceQuotaChangeHistory: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListRequestedServiceQuotaChangeHistoryCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListServiceQuotaIncreaseRequestsInTemplateCommandOutput,
5
5
  } from "../commands/ListServiceQuotaIncreaseRequestsInTemplateCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListServiceQuotaIncreaseRequestsInTemplate(
7
+ export declare const paginateListServiceQuotaIncreaseRequestsInTemplate: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListServiceQuotasCommandOutput,
5
5
  } from "../commands/ListServiceQuotasCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListServiceQuotas(
7
+ export declare const paginateListServiceQuotas: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListServiceQuotasCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListServiceQuotasCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListServiceQuotasCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListServicesCommandOutput,
5
5
  } from "../commands/ListServicesCommand";
6
6
  import { ServiceQuotasPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListServices(
7
+ export declare const paginateListServices: (
8
8
  config: ServiceQuotasPaginationConfiguration,
9
9
  input: ListServicesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListServicesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListServicesCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-quotas",
3
3
  "description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
4
- "version": "3.476.0",
4
+ "version": "3.478.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,20 +20,21 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.476.0",
24
- "@aws-sdk/core": "3.476.0",
25
- "@aws-sdk/credential-provider-node": "3.476.0",
23
+ "@aws-sdk/client-sts": "3.478.0",
24
+ "@aws-sdk/core": "3.477.0",
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.470.0",
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.470.0",
33
+ "@aws-sdk/util-endpoints": "3.478.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
36
  "@smithy/config-resolver": "^2.0.21",
37
+ "@smithy/core": "^1.2.0",
37
38
  "@smithy/fetch-http-handler": "^2.3.1",
38
39
  "@smithy/hash-node": "^2.0.17",
39
40
  "@smithy/invalid-dependency": "^2.0.15",