@aws-sdk/client-service-quotas 3.50.0 → 3.53.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 (53) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ServiceQuotasServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +241 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +269 -1060
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ServiceQuotasServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +223 -1
  9. package/dist-es/protocols/Aws_json1_1.js +552 -1103
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ServiceQuotasServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +121 -52
  13. package/dist-types/ts3.4/ServiceQuotas.d.ts +100 -0
  14. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +92 -0
  15. package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  36. package/dist-types/ts3.4/index.d.ts +6 -0
  37. package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +6 -0
  38. package/dist-types/ts3.4/models/index.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +670 -0
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  41. package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  48. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  53. package/package.json +33 -33
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetServiceQuotaIncreaseRequestFromTemplateRequest, GetServiceQuotaIncreaseRequestFromTemplateResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandInput extends GetServiceQuotaIncreaseRequestFromTemplateRequest {
6
+ }
7
+ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends GetServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput;
12
+ constructor(input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListAWSDefaultServiceQuotasRequest, ListAWSDefaultServiceQuotasResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListAWSDefaultServiceQuotasCommandInput extends ListAWSDefaultServiceQuotasRequest {
6
+ }
7
+ export interface ListAWSDefaultServiceQuotasCommandOutput extends ListAWSDefaultServiceQuotasResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListAWSDefaultServiceQuotasCommand extends $Command<ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListAWSDefaultServiceQuotasCommandInput;
12
+ constructor(input: ListAWSDefaultServiceQuotasCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListRequestedServiceQuotaChangeHistoryByQuotaRequest, ListRequestedServiceQuotaChangeHistoryByQuotaResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput extends ListRequestedServiceQuotaChangeHistoryByQuotaRequest {
6
+ }
7
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput extends ListRequestedServiceQuotaChangeHistoryByQuotaResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Command<ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput;
12
+ constructor(input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListRequestedServiceQuotaChangeHistoryRequest, ListRequestedServiceQuotaChangeHistoryResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListRequestedServiceQuotaChangeHistoryCommandInput extends ListRequestedServiceQuotaChangeHistoryRequest {
6
+ }
7
+ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends ListRequestedServiceQuotaChangeHistoryResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListRequestedServiceQuotaChangeHistoryCommand extends $Command<ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListRequestedServiceQuotaChangeHistoryCommandInput;
12
+ constructor(input: ListRequestedServiceQuotaChangeHistoryCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListServiceQuotaIncreaseRequestsInTemplateRequest, ListServiceQuotaIncreaseRequestsInTemplateResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandInput extends ListServiceQuotaIncreaseRequestsInTemplateRequest {
6
+ }
7
+ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput extends ListServiceQuotaIncreaseRequestsInTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command<ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput;
12
+ constructor(input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListServiceQuotasRequest, ListServiceQuotasResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListServiceQuotasCommandInput extends ListServiceQuotasRequest {
6
+ }
7
+ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListServiceQuotasCommand extends $Command<ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListServiceQuotasCommandInput;
12
+ constructor(input: ListServiceQuotasCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListServicesCommandInput extends ListServicesRequest {
6
+ }
7
+ export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListServicesCommandInput;
12
+ constructor(input: ListServicesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutServiceQuotaIncreaseRequestIntoTemplateRequest, PutServiceQuotaIncreaseRequestIntoTemplateResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandInput extends PutServiceQuotaIncreaseRequestIntoTemplateRequest {
6
+ }
7
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput extends PutServiceQuotaIncreaseRequestIntoTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command<PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput;
12
+ constructor(input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RequestServiceQuotaIncreaseRequest, RequestServiceQuotaIncreaseResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface RequestServiceQuotaIncreaseCommandInput extends RequestServiceQuotaIncreaseRequest {
6
+ }
7
+ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestServiceQuotaIncreaseResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RequestServiceQuotaIncreaseCommand extends $Command<RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: RequestServiceQuotaIncreaseCommandInput;
12
+ constructor(input: RequestServiceQuotaIncreaseCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceQuotasClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,19 @@
1
+ export * from "./AssociateServiceQuotaTemplateCommand";
2
+ export * from "./DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
3
+ export * from "./DisassociateServiceQuotaTemplateCommand";
4
+ export * from "./GetAWSDefaultServiceQuotaCommand";
5
+ export * from "./GetAssociationForServiceQuotaTemplateCommand";
6
+ export * from "./GetRequestedServiceQuotaChangeCommand";
7
+ export * from "./GetServiceQuotaCommand";
8
+ export * from "./GetServiceQuotaIncreaseRequestFromTemplateCommand";
9
+ export * from "./ListAWSDefaultServiceQuotasCommand";
10
+ export * from "./ListRequestedServiceQuotaChangeHistoryByQuotaCommand";
11
+ export * from "./ListRequestedServiceQuotaChangeHistoryCommand";
12
+ export * from "./ListServiceQuotaIncreaseRequestsInTemplateCommand";
13
+ export * from "./ListServiceQuotasCommand";
14
+ export * from "./ListServicesCommand";
15
+ export * from "./ListTagsForResourceCommand";
16
+ export * from "./PutServiceQuotaIncreaseRequestIntoTemplateCommand";
17
+ export * from "./RequestServiceQuotaIncreaseCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UntagResourceCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./ServiceQuotas";
2
+ export * from "./ServiceQuotasClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ServiceQuotasServiceException } from "./models/ServiceQuotasServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ServiceQuotasServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";