@aws-sdk/client-service-quotas 3.168.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 +16 -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 { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
- export interface GetRequestedServiceQuotaChangeCommandInput extends GetRequestedServiceQuotaChangeRequest {
6
- }
7
- export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequestedServiceQuotaChangeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRequestedServiceQuotaChangeCommand extends $Command<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput, ServiceQuotasClientResolvedConfig> {
11
- readonly input: GetRequestedServiceQuotaChangeCommandInput;
12
- constructor(input: GetRequestedServiceQuotaChangeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput>;
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
+ GetRequestedServiceQuotaChangeRequest,
10
+ GetRequestedServiceQuotaChangeResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface GetRequestedServiceQuotaChangeCommandInput
18
+ extends GetRequestedServiceQuotaChangeRequest {}
19
+ export interface GetRequestedServiceQuotaChangeCommandOutput
20
+ extends GetRequestedServiceQuotaChangeResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetRequestedServiceQuotaChangeCommand extends $Command<
24
+ GetRequestedServiceQuotaChangeCommandInput,
25
+ GetRequestedServiceQuotaChangeCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: GetRequestedServiceQuotaChangeCommandInput;
29
+ constructor(input: GetRequestedServiceQuotaChangeCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetRequestedServiceQuotaChangeCommandInput,
37
+ GetRequestedServiceQuotaChangeCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
5
- export interface GetServiceQuotaCommandInput extends GetServiceQuotaRequest {
6
- }
7
- export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetServiceQuotaCommand extends $Command<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
11
- readonly input: GetServiceQuotaCommandInput;
12
- constructor(input: GetServiceQuotaCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput>;
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
+ GetServiceQuotaRequest,
10
+ GetServiceQuotaResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface GetServiceQuotaCommandInput extends GetServiceQuotaRequest {}
18
+ export interface GetServiceQuotaCommandOutput
19
+ extends GetServiceQuotaResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetServiceQuotaCommand extends $Command<
23
+ GetServiceQuotaCommandInput,
24
+ GetServiceQuotaCommandOutput,
25
+ ServiceQuotasClientResolvedConfig
26
+ > {
27
+ readonly input: GetServiceQuotaCommandInput;
28
+ constructor(input: GetServiceQuotaCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceQuotasClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { 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
- }
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
+ GetServiceQuotaIncreaseRequestFromTemplateRequest,
10
+ GetServiceQuotaIncreaseRequestFromTemplateResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandInput
18
+ extends GetServiceQuotaIncreaseRequestFromTemplateRequest {}
19
+ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
20
+ extends GetServiceQuotaIncreaseRequestFromTemplateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command<
24
+ GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
25
+ GetServiceQuotaIncreaseRequestFromTemplateCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput;
29
+ constructor(input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
37
+ GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
- }
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
+ ListAWSDefaultServiceQuotasRequest,
10
+ ListAWSDefaultServiceQuotasResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListAWSDefaultServiceQuotasCommandInput
18
+ extends ListAWSDefaultServiceQuotasRequest {}
19
+ export interface ListAWSDefaultServiceQuotasCommandOutput
20
+ extends ListAWSDefaultServiceQuotasResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAWSDefaultServiceQuotasCommand extends $Command<
24
+ ListAWSDefaultServiceQuotasCommandInput,
25
+ ListAWSDefaultServiceQuotasCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListAWSDefaultServiceQuotasCommandInput;
29
+ constructor(input: ListAWSDefaultServiceQuotasCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAWSDefaultServiceQuotasCommandInput,
37
+ ListAWSDefaultServiceQuotasCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
- }
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
+ ListRequestedServiceQuotaChangeHistoryByQuotaRequest,
10
+ ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput
18
+ extends ListRequestedServiceQuotaChangeHistoryByQuotaRequest {}
19
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput
20
+ extends ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Command<
24
+ ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
25
+ ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput;
29
+ constructor(input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
37
+ ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
- }
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
+ ListRequestedServiceQuotaChangeHistoryRequest,
10
+ ListRequestedServiceQuotaChangeHistoryResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListRequestedServiceQuotaChangeHistoryCommandInput
18
+ extends ListRequestedServiceQuotaChangeHistoryRequest {}
19
+ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput
20
+ extends ListRequestedServiceQuotaChangeHistoryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListRequestedServiceQuotaChangeHistoryCommand extends $Command<
24
+ ListRequestedServiceQuotaChangeHistoryCommandInput,
25
+ ListRequestedServiceQuotaChangeHistoryCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListRequestedServiceQuotaChangeHistoryCommandInput;
29
+ constructor(input: ListRequestedServiceQuotaChangeHistoryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListRequestedServiceQuotaChangeHistoryCommandInput,
37
+ ListRequestedServiceQuotaChangeHistoryCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
- }
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
+ ListServiceQuotaIncreaseRequestsInTemplateRequest,
10
+ ListServiceQuotaIncreaseRequestsInTemplateResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandInput
18
+ extends ListServiceQuotaIncreaseRequestsInTemplateRequest {}
19
+ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput
20
+ extends ListServiceQuotaIncreaseRequestsInTemplateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command<
24
+ ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
25
+ ListServiceQuotaIncreaseRequestsInTemplateCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput;
29
+ constructor(input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
37
+ ListServiceQuotaIncreaseRequestsInTemplateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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
- }
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
+ ListServiceQuotasRequest,
10
+ ListServiceQuotasResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListServiceQuotasCommandInput
18
+ extends ListServiceQuotasRequest {}
19
+ export interface ListServiceQuotasCommandOutput
20
+ extends ListServiceQuotasResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListServiceQuotasCommand extends $Command<
24
+ ListServiceQuotasCommandInput,
25
+ ListServiceQuotasCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListServiceQuotasCommandInput;
29
+ constructor(input: ListServiceQuotasCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { 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
- }
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 { ListServicesRequest, ListServicesResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ ServiceQuotasClientResolvedConfig,
13
+ } from "../ServiceQuotasClient";
14
+ export interface ListServicesCommandInput extends ListServicesRequest {}
15
+ export interface ListServicesCommandOutput
16
+ extends ListServicesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListServicesCommand extends $Command<
20
+ ListServicesCommandInput,
21
+ ListServicesCommandOutput,
22
+ ServiceQuotasClientResolvedConfig
23
+ > {
24
+ readonly input: ListServicesCommandInput;
25
+ constructor(input: ListServicesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceQuotasClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
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
- }
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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { 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
- }
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
+ PutServiceQuotaIncreaseRequestIntoTemplateRequest,
10
+ PutServiceQuotaIncreaseRequestIntoTemplateResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ ServiceQuotasClientResolvedConfig,
16
+ } from "../ServiceQuotasClient";
17
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandInput
18
+ extends PutServiceQuotaIncreaseRequestIntoTemplateRequest {}
19
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
20
+ extends PutServiceQuotaIncreaseRequestIntoTemplateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command<
24
+ PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
25
+ PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput,
26
+ ServiceQuotasClientResolvedConfig
27
+ > {
28
+ readonly input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput;
29
+ constructor(input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceQuotasClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
37
+ PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }