@aws-sdk/client-service-quotas 3.169.0 → 3.170.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 (42) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ServiceQuotas.d.ts +388 -100
  3. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +244 -92
  4. package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +8 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +665 -576
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  37. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  42. package/package.json +34 -34
@@ -1,17 +1,41 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ RequestServiceQuotaIncreaseRequest,
10
+ RequestServiceQuotaIncreaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface RequestServiceQuotaIncreaseCommandInput
18
+ extends RequestServiceQuotaIncreaseRequest {}
19
+ export interface RequestServiceQuotaIncreaseCommandOutput
20
+ extends RequestServiceQuotaIncreaseResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RequestServiceQuotaIncreaseCommand extends $Command<
24
+ RequestServiceQuotaIncreaseCommandInput,
25
+ RequestServiceQuotaIncreaseCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: RequestServiceQuotaIncreaseCommandInput;
29
+ constructor(input: RequestServiceQuotaIncreaseCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RequestServiceQuotaIncreaseCommandInput,
37
+ RequestServiceQuotaIncreaseCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ ServiceQuotasClientResolvedConfig,
13
+ } from "../ServiceQuotasClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ ServiceQuotasClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceQuotasClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ ServiceQuotasClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceQuotasClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,19 +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";
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";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +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";
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";
@@ -1,6 +1,8 @@
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
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ServiceQuotasServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";