@aws-sdk/client-service-quotas 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ServiceQuotas.d.ts +86 -133
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSupportCaseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAutoManagementConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetQuotaUtilizationReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartAutoManagementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartQuotaUtilizationReportCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StopAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +16 -67
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
15
|
-
export interface ServiceQuotasHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ServiceQuotasHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ServiceQuotasHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ServiceQuotasHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ServiceQuotasClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ServiceQuotasHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultServiceQuotasHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ServiceQuotasClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ServiceQuotasHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ServiceQuotasHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ServiceQuotasHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ServiceQuotasHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ServiceQuotasHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultServiceQuotasHttpAuthSchemeProvider: ServiceQuotasHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ServiceQuotasHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ServiceQuotasHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
ServiceQuotasClientResolvedConfig,
|
|
6
6
|
} from "./ServiceQuotasClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ServiceQuotasClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
AssociateServiceQuotaTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateServiceQuotaTemplateCommandInput
|
|
8
|
-
extends AssociateServiceQuotaTemplateRequest {}
|
|
7
|
+
export interface AssociateServiceQuotaTemplateCommandInput extends AssociateServiceQuotaTemplateRequest {}
|
|
9
8
|
export interface AssociateServiceQuotaTemplateCommandOutput
|
|
10
|
-
extends AssociateServiceQuotaTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AssociateServiceQuotaTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const AssociateServiceQuotaTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AssociateServiceQuotaTemplateCommandInput
|
|
12
|
+
input: AssociateServiceQuotaTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AssociateServiceQuotaTemplateCommandInput,
|
|
17
15
|
AssociateServiceQuotaTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSupportCaseRequest,
|
|
4
|
-
CreateSupportCaseResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSupportCaseRequest, CreateSupportCaseResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSupportCaseCommandInput
|
|
8
|
-
extends CreateSupportCaseRequest {}
|
|
4
|
+
export interface CreateSupportCaseCommandInput extends CreateSupportCaseRequest {}
|
|
9
5
|
export interface CreateSupportCaseCommandOutput
|
|
10
|
-
extends CreateSupportCaseResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateSupportCaseResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateSupportCaseCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateSupportCaseCommandInput
|
|
9
|
+
input: CreateSupportCaseCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateSupportCaseCommandInput,
|
|
17
12
|
CreateSupportCaseCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateSupportCaseCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateSupportCaseCommandInput
|
|
18
|
+
input: CreateSupportCaseCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateSupportCaseCommandInput,
|
|
26
21
|
CreateSupportCaseCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
8
|
-
extends DeleteServiceQuotaIncreaseRequestFromTemplateRequest {}
|
|
7
|
+
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput extends DeleteServiceQuotaIncreaseRequestFromTemplateRequest {}
|
|
9
8
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
10
|
-
extends DeleteServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteServiceQuotaIncreaseRequestFromTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
12
|
+
input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
17
15
|
DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteServiceQuotaIncreaseRequestFromTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
21
|
+
input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
26
24
|
DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DisassociateServiceQuotaTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateServiceQuotaTemplateCommandInput
|
|
8
|
-
extends DisassociateServiceQuotaTemplateRequest {}
|
|
7
|
+
export interface DisassociateServiceQuotaTemplateCommandInput extends DisassociateServiceQuotaTemplateRequest {}
|
|
9
8
|
export interface DisassociateServiceQuotaTemplateCommandOutput
|
|
10
|
-
extends DisassociateServiceQuotaTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DisassociateServiceQuotaTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const DisassociateServiceQuotaTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DisassociateServiceQuotaTemplateCommandInput
|
|
12
|
+
input: DisassociateServiceQuotaTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DisassociateServiceQuotaTemplateCommandInput,
|
|
17
15
|
DisassociateServiceQuotaTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAWSDefaultServiceQuotaResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAWSDefaultServiceQuotaCommandInput
|
|
8
|
-
extends GetAWSDefaultServiceQuotaRequest {}
|
|
7
|
+
export interface GetAWSDefaultServiceQuotaCommandInput extends GetAWSDefaultServiceQuotaRequest {}
|
|
9
8
|
export interface GetAWSDefaultServiceQuotaCommandOutput
|
|
10
|
-
extends GetAWSDefaultServiceQuotaResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAWSDefaultServiceQuotaResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAWSDefaultServiceQuotaCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAWSDefaultServiceQuotaCommandInput
|
|
12
|
+
input: GetAWSDefaultServiceQuotaCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAWSDefaultServiceQuotaCommandInput,
|
|
17
15
|
GetAWSDefaultServiceQuotaCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetAWSDefaultServiceQuotaCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetAWSDefaultServiceQuotaCommandInput
|
|
21
|
+
input: GetAWSDefaultServiceQuotaCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetAWSDefaultServiceQuotaCommandInput,
|
|
26
24
|
GetAWSDefaultServiceQuotaCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAssociationForServiceQuotaTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAssociationForServiceQuotaTemplateCommandInput
|
|
8
|
-
extends GetAssociationForServiceQuotaTemplateRequest {}
|
|
7
|
+
export interface GetAssociationForServiceQuotaTemplateCommandInput extends GetAssociationForServiceQuotaTemplateRequest {}
|
|
9
8
|
export interface GetAssociationForServiceQuotaTemplateCommandOutput
|
|
10
|
-
extends GetAssociationForServiceQuotaTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAssociationForServiceQuotaTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAssociationForServiceQuotaTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAssociationForServiceQuotaTemplateCommandInput
|
|
12
|
+
input: GetAssociationForServiceQuotaTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAssociationForServiceQuotaTemplateCommandInput,
|
|
17
15
|
GetAssociationForServiceQuotaTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAutoManagementConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAutoManagementConfigurationCommandInput
|
|
8
|
-
extends GetAutoManagementConfigurationRequest {}
|
|
7
|
+
export interface GetAutoManagementConfigurationCommandInput extends GetAutoManagementConfigurationRequest {}
|
|
9
8
|
export interface GetAutoManagementConfigurationCommandOutput
|
|
10
|
-
extends GetAutoManagementConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAutoManagementConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAutoManagementConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAutoManagementConfigurationCommandInput
|
|
12
|
+
input: GetAutoManagementConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAutoManagementConfigurationCommandInput,
|
|
17
15
|
GetAutoManagementConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetQuotaUtilizationReportResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetQuotaUtilizationReportCommandInput
|
|
8
|
-
extends GetQuotaUtilizationReportRequest {}
|
|
7
|
+
export interface GetQuotaUtilizationReportCommandInput extends GetQuotaUtilizationReportRequest {}
|
|
9
8
|
export interface GetQuotaUtilizationReportCommandOutput
|
|
10
|
-
extends GetQuotaUtilizationReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetQuotaUtilizationReportResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetQuotaUtilizationReportCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetQuotaUtilizationReportCommandInput
|
|
12
|
+
input: GetQuotaUtilizationReportCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetQuotaUtilizationReportCommandInput,
|
|
17
15
|
GetQuotaUtilizationReportCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetQuotaUtilizationReportCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetQuotaUtilizationReportCommandInput
|
|
21
|
+
input: GetQuotaUtilizationReportCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetQuotaUtilizationReportCommandInput,
|
|
26
24
|
GetQuotaUtilizationReportCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetRequestedServiceQuotaChangeResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetRequestedServiceQuotaChangeCommandInput
|
|
8
|
-
extends GetRequestedServiceQuotaChangeRequest {}
|
|
7
|
+
export interface GetRequestedServiceQuotaChangeCommandInput extends GetRequestedServiceQuotaChangeRequest {}
|
|
9
8
|
export interface GetRequestedServiceQuotaChangeCommandOutput
|
|
10
|
-
extends GetRequestedServiceQuotaChangeResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetRequestedServiceQuotaChangeResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetRequestedServiceQuotaChangeCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetRequestedServiceQuotaChangeCommandInput
|
|
12
|
+
input: GetRequestedServiceQuotaChangeCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetRequestedServiceQuotaChangeCommandInput,
|
|
17
15
|
GetRequestedServiceQuotaChangeCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetRequestedServiceQuotaChangeCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetRequestedServiceQuotaChangeCommandInput
|
|
21
|
+
input: GetRequestedServiceQuotaChangeCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetRequestedServiceQuotaChangeCommandInput,
|
|
26
24
|
GetRequestedServiceQuotaChangeCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetServiceQuotaRequest,
|
|
4
|
-
GetServiceQuotaResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetServiceQuotaCommandInput extends GetServiceQuotaRequest {}
|
|
8
|
-
export interface GetServiceQuotaCommandOutput
|
|
9
|
-
extends GetServiceQuotaResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetServiceQuotaCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetServiceQuotaCommandInput
|
|
8
|
+
input: GetServiceQuotaCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetServiceQuotaCommandInput,
|
|
16
11
|
GetServiceQuotaCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetServiceQuotaCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetServiceQuotaCommandInput
|
|
17
|
+
input: GetServiceQuotaCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetServiceQuotaCommandInput,
|
|
25
20
|
GetServiceQuotaCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
8
|
-
extends GetServiceQuotaIncreaseRequestFromTemplateRequest {}
|
|
7
|
+
export interface GetServiceQuotaIncreaseRequestFromTemplateCommandInput extends GetServiceQuotaIncreaseRequestFromTemplateRequest {}
|
|
9
8
|
export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
10
|
-
extends GetServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetServiceQuotaIncreaseRequestFromTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
12
|
+
input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
17
15
|
GetServiceQuotaIncreaseRequestFromTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetServiceQuotaIncreaseRequestFromTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput
|
|
21
|
+
input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
26
24
|
GetServiceQuotaIncreaseRequestFromTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAWSDefaultServiceQuotasResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAWSDefaultServiceQuotasCommandInput
|
|
8
|
-
extends ListAWSDefaultServiceQuotasRequest {}
|
|
7
|
+
export interface ListAWSDefaultServiceQuotasCommandInput extends ListAWSDefaultServiceQuotasRequest {}
|
|
9
8
|
export interface ListAWSDefaultServiceQuotasCommandOutput
|
|
10
|
-
extends ListAWSDefaultServiceQuotasResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAWSDefaultServiceQuotasResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAWSDefaultServiceQuotasCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAWSDefaultServiceQuotasCommandInput
|
|
12
|
+
input: ListAWSDefaultServiceQuotasCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAWSDefaultServiceQuotasCommandInput,
|
|
17
15
|
ListAWSDefaultServiceQuotasCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAWSDefaultServiceQuotasCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAWSDefaultServiceQuotasCommandInput
|
|
21
|
+
input: ListAWSDefaultServiceQuotasCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAWSDefaultServiceQuotasCommandInput,
|
|
26
24
|
ListAWSDefaultServiceQuotasCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput
|
|
8
|
-
extends ListRequestedServiceQuotaChangeHistoryByQuotaRequest {}
|
|
7
|
+
export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput extends ListRequestedServiceQuotaChangeHistoryByQuotaRequest {}
|
|
9
8
|
export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput
|
|
10
|
-
extends ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRequestedServiceQuotaChangeHistoryByQuotaResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput
|
|
12
|
+
input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
17
15
|
ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput
|
|
21
|
+
input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
26
24
|
ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRequestedServiceQuotaChangeHistoryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRequestedServiceQuotaChangeHistoryCommandInput
|
|
8
|
-
extends ListRequestedServiceQuotaChangeHistoryRequest {}
|
|
7
|
+
export interface ListRequestedServiceQuotaChangeHistoryCommandInput extends ListRequestedServiceQuotaChangeHistoryRequest {}
|
|
9
8
|
export interface ListRequestedServiceQuotaChangeHistoryCommandOutput
|
|
10
|
-
extends ListRequestedServiceQuotaChangeHistoryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRequestedServiceQuotaChangeHistoryResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRequestedServiceQuotaChangeHistoryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRequestedServiceQuotaChangeHistoryCommandInput
|
|
12
|
+
input: ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
17
15
|
ListRequestedServiceQuotaChangeHistoryCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListServiceQuotaIncreaseRequestsInTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceQuotaIncreaseRequestsInTemplateCommandInput
|
|
8
|
-
extends ListServiceQuotaIncreaseRequestsInTemplateRequest {}
|
|
7
|
+
export interface ListServiceQuotaIncreaseRequestsInTemplateCommandInput extends ListServiceQuotaIncreaseRequestsInTemplateRequest {}
|
|
9
8
|
export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput
|
|
10
|
-
extends ListServiceQuotaIncreaseRequestsInTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListServiceQuotaIncreaseRequestsInTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListServiceQuotaIncreaseRequestsInTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput
|
|
12
|
+
input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
17
15
|
ListServiceQuotaIncreaseRequestsInTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServiceQuotasRequest,
|
|
4
|
-
ListServiceQuotasResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServiceQuotasRequest, ListServiceQuotasResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceQuotasCommandInput
|
|
8
|
-
extends ListServiceQuotasRequest {}
|
|
4
|
+
export interface ListServiceQuotasCommandInput extends ListServiceQuotasRequest {}
|
|
9
5
|
export interface ListServiceQuotasCommandOutput
|
|
10
|
-
extends ListServiceQuotasResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListServiceQuotasResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListServiceQuotasCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListServiceQuotasCommandInput
|
|
9
|
+
input: ListServiceQuotasCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListServiceQuotasCommandInput,
|
|
17
12
|
ListServiceQuotasCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListServiceQuotasCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListServiceQuotasCommandInput
|
|
18
|
+
input: ListServiceQuotasCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListServiceQuotasCommandInput,
|
|
26
21
|
ListServiceQuotasCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListServicesCommandInput extends ListServicesRequest {}
|
|
5
|
-
export interface ListServicesCommandOutput
|
|
6
|
-
extends ListServicesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListServicesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListServicesCommandInput
|
|
8
|
+
input: ListServicesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListServicesCommandInput,
|
|
13
11
|
ListServicesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutServiceQuotaIncreaseRequestIntoTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandInput
|
|
8
|
-
extends PutServiceQuotaIncreaseRequestIntoTemplateRequest {}
|
|
7
|
+
export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandInput extends PutServiceQuotaIncreaseRequestIntoTemplateRequest {}
|
|
9
8
|
export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
|
|
10
|
-
extends PutServiceQuotaIncreaseRequestIntoTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutServiceQuotaIncreaseRequestIntoTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutServiceQuotaIncreaseRequestIntoTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput
|
|
12
|
+
input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
17
15
|
PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutServiceQuotaIncreaseRequestIntoTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput
|
|
21
|
+
input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
26
24
|
PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RequestServiceQuotaIncreaseResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RequestServiceQuotaIncreaseCommandInput
|
|
8
|
-
extends RequestServiceQuotaIncreaseRequest {}
|
|
7
|
+
export interface RequestServiceQuotaIncreaseCommandInput extends RequestServiceQuotaIncreaseRequest {}
|
|
9
8
|
export interface RequestServiceQuotaIncreaseCommandOutput
|
|
10
|
-
extends RequestServiceQuotaIncreaseResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RequestServiceQuotaIncreaseResponse, __MetadataBearer {}
|
|
12
10
|
declare const RequestServiceQuotaIncreaseCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RequestServiceQuotaIncreaseCommandInput
|
|
12
|
+
input: RequestServiceQuotaIncreaseCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RequestServiceQuotaIncreaseCommandInput,
|
|
17
15
|
RequestServiceQuotaIncreaseCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RequestServiceQuotaIncreaseCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RequestServiceQuotaIncreaseCommandInput
|
|
21
|
+
input: RequestServiceQuotaIncreaseCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RequestServiceQuotaIncreaseCommandInput,
|
|
26
24
|
RequestServiceQuotaIncreaseCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartAutoManagementRequest,
|
|
4
|
-
StartAutoManagementResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartAutoManagementRequest, StartAutoManagementResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartAutoManagementCommandInput
|
|
8
|
-
extends StartAutoManagementRequest {}
|
|
4
|
+
export interface StartAutoManagementCommandInput extends StartAutoManagementRequest {}
|
|
9
5
|
export interface StartAutoManagementCommandOutput
|
|
10
|
-
extends StartAutoManagementResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartAutoManagementResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartAutoManagementCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartAutoManagementCommandInput
|
|
9
|
+
input: StartAutoManagementCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartAutoManagementCommandInput,
|
|
17
12
|
StartAutoManagementCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartAutoManagementCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartAutoManagementCommandInput
|
|
18
|
+
input: StartAutoManagementCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartAutoManagementCommandInput,
|
|
26
21
|
StartAutoManagementCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartQuotaUtilizationReportResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartQuotaUtilizationReportCommandInput
|
|
8
|
-
extends StartQuotaUtilizationReportRequest {}
|
|
7
|
+
export interface StartQuotaUtilizationReportCommandInput extends StartQuotaUtilizationReportRequest {}
|
|
9
8
|
export interface StartQuotaUtilizationReportCommandOutput
|
|
10
|
-
extends StartQuotaUtilizationReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartQuotaUtilizationReportResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartQuotaUtilizationReportCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartQuotaUtilizationReportCommandInput
|
|
12
|
+
input: StartQuotaUtilizationReportCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartQuotaUtilizationReportCommandInput,
|
|
17
15
|
StartQuotaUtilizationReportCommandOutput,
|