@aws-sdk/client-bcm-pricing-calculator 3.1086.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/BCMPricingCalculator.d.ts +119 -182
- package/dist-types/ts3.4/BCMPricingCalculatorClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- 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/BatchCreateBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchCreateBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchCreateWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBillEstimateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBillScenarioCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPreferencesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBillEstimateCommitmentsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateInputCommitmentModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateInputUsageModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateLineItemsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimatesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListBillScenarioCommitmentModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillScenarioUsageModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillScenariosCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListWorkloadEstimatesCommand.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/UpdateBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePreferencesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateWorkloadEstimateCommand.d.ts +5 -10
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +39 -39
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -156,10 +153,7 @@ import {
|
|
|
156
153
|
ListWorkloadEstimateUsageCommandInput,
|
|
157
154
|
ListWorkloadEstimateUsageCommandOutput,
|
|
158
155
|
} from "./commands/ListWorkloadEstimateUsageCommand";
|
|
159
|
-
import {
|
|
160
|
-
TagResourceCommandInput,
|
|
161
|
-
TagResourceCommandOutput,
|
|
162
|
-
} from "./commands/TagResourceCommand";
|
|
156
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
163
157
|
import {
|
|
164
158
|
UntagResourceCommandInput,
|
|
165
159
|
UntagResourceCommandOutput,
|
|
@@ -261,8 +255,7 @@ export type ServiceOutputTypes =
|
|
|
261
255
|
| UpdateBillScenarioCommandOutput
|
|
262
256
|
| UpdatePreferencesCommandOutput
|
|
263
257
|
| UpdateWorkloadEstimateCommandOutput;
|
|
264
|
-
export interface ClientDefaults
|
|
265
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
258
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
266
259
|
requestHandler?: __HttpHandlerUserInput;
|
|
267
260
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
268
261
|
urlParser?: __UrlParser;
|
|
@@ -298,8 +291,7 @@ export type BCMPricingCalculatorClientConfigType = Partial<
|
|
|
298
291
|
EndpointInputConfig<EndpointParameters> &
|
|
299
292
|
HttpAuthSchemeInputConfig &
|
|
300
293
|
ClientInputEndpointParameters;
|
|
301
|
-
export interface BCMPricingCalculatorClientConfig
|
|
302
|
-
extends BCMPricingCalculatorClientConfigType {}
|
|
294
|
+
export interface BCMPricingCalculatorClientConfig extends BCMPricingCalculatorClientConfigType {}
|
|
303
295
|
export type BCMPricingCalculatorClientResolvedConfigType =
|
|
304
296
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
305
297
|
Required<ClientDefaults> &
|
|
@@ -311,8 +303,7 @@ export type BCMPricingCalculatorClientResolvedConfigType =
|
|
|
311
303
|
EndpointResolvedConfig<EndpointParameters> &
|
|
312
304
|
HttpAuthSchemeResolvedConfig &
|
|
313
305
|
ClientResolvedEndpointParameters;
|
|
314
|
-
export interface BCMPricingCalculatorClientResolvedConfig
|
|
315
|
-
extends BCMPricingCalculatorClientResolvedConfigType {}
|
|
306
|
+
export interface BCMPricingCalculatorClientResolvedConfig extends BCMPricingCalculatorClientResolvedConfigType {}
|
|
316
307
|
export declare class BCMPricingCalculatorClient extends __Client<
|
|
317
308
|
__HttpHandlerOptions,
|
|
318
309
|
ServiceInputTypes,
|
|
@@ -320,10 +311,6 @@ export declare class BCMPricingCalculatorClient extends __Client<
|
|
|
320
311
|
BCMPricingCalculatorClientResolvedConfig
|
|
321
312
|
> {
|
|
322
313
|
readonly config: BCMPricingCalculatorClientResolvedConfig;
|
|
323
|
-
constructor(
|
|
324
|
-
...[
|
|
325
|
-
configuration,
|
|
326
|
-
]: __CheckOptionalClientConfig<BCMPricingCalculatorClientConfig>
|
|
327
|
-
);
|
|
314
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<BCMPricingCalculatorClientConfig>);
|
|
328
315
|
destroy(): void;
|
|
329
316
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: BCMPricingCalculatorHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: BCMPricingCalculatorHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): BCMPricingCalculatorHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { BCMPricingCalculatorClientResolvedConfig } from "../BCMPricingCalculatorClient";
|
|
15
|
-
export interface BCMPricingCalculatorHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface BCMPricingCalculatorHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface BCMPricingCalculatorHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface BCMPricingCalculatorHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
BCMPricingCalculatorClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
BCMPricingCalculatorHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultBCMPricingCalculatorHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: BCMPricingCalculatorClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<BCMPricingCalculatorHttpAuthSchemeParameters>;
|
|
31
|
-
export interface BCMPricingCalculatorHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<BCMPricingCalculatorHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface BCMPricingCalculatorHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BCMPricingCalculatorHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultBCMPricingCalculatorHttpAuthSchemeProvider: BCMPricingCalculatorHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: BCMPricingCalculatorHttpAuthSchemeProvider;
|
|
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: BCMPricingCalculatorHttpAuthSchemeProvider;
|
|
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
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./BCMPricingCalculatorClient";
|
|
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
|
BCMPricingCalculatorClientResolvedConfig,
|
|
@@ -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
|
BatchCreateBillScenarioCommitmentModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchCreateBillScenarioCommitmentModificationCommandInput
|
|
8
|
-
extends BatchCreateBillScenarioCommitmentModificationRequest {}
|
|
7
|
+
export interface BatchCreateBillScenarioCommitmentModificationCommandInput extends BatchCreateBillScenarioCommitmentModificationRequest {}
|
|
9
8
|
export interface BatchCreateBillScenarioCommitmentModificationCommandOutput
|
|
10
|
-
extends BatchCreateBillScenarioCommitmentModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchCreateBillScenarioCommitmentModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchCreateBillScenarioCommitmentModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchCreateBillScenarioCommitmentModificationCommandInput
|
|
12
|
+
input: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
17
15
|
BatchCreateBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchCreateBillScenarioCommitmentModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchCreateBillScenarioCommitmentModificationCommandInput
|
|
21
|
+
input: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
26
24
|
BatchCreateBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchCreateBillScenarioUsageModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchCreateBillScenarioUsageModificationCommandInput
|
|
8
|
-
extends BatchCreateBillScenarioUsageModificationRequest {}
|
|
7
|
+
export interface BatchCreateBillScenarioUsageModificationCommandInput extends BatchCreateBillScenarioUsageModificationRequest {}
|
|
9
8
|
export interface BatchCreateBillScenarioUsageModificationCommandOutput
|
|
10
|
-
extends BatchCreateBillScenarioUsageModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchCreateBillScenarioUsageModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchCreateBillScenarioUsageModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchCreateBillScenarioUsageModificationCommandInput
|
|
12
|
+
input: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchCreateBillScenarioUsageModificationCommandInput,
|
|
17
15
|
BatchCreateBillScenarioUsageModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchCreateBillScenarioUsageModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchCreateBillScenarioUsageModificationCommandInput
|
|
21
|
+
input: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchCreateBillScenarioUsageModificationCommandInput,
|
|
26
24
|
BatchCreateBillScenarioUsageModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchCreateWorkloadEstimateUsageResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchCreateWorkloadEstimateUsageCommandInput
|
|
8
|
-
extends BatchCreateWorkloadEstimateUsageRequest {}
|
|
7
|
+
export interface BatchCreateWorkloadEstimateUsageCommandInput extends BatchCreateWorkloadEstimateUsageRequest {}
|
|
9
8
|
export interface BatchCreateWorkloadEstimateUsageCommandOutput
|
|
10
|
-
extends BatchCreateWorkloadEstimateUsageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchCreateWorkloadEstimateUsageResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchCreateWorkloadEstimateUsageCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchCreateWorkloadEstimateUsageCommandInput
|
|
12
|
+
input: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchCreateWorkloadEstimateUsageCommandInput,
|
|
17
15
|
BatchCreateWorkloadEstimateUsageCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchCreateWorkloadEstimateUsageCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchCreateWorkloadEstimateUsageCommandInput
|
|
21
|
+
input: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchCreateWorkloadEstimateUsageCommandInput,
|
|
26
24
|
BatchCreateWorkloadEstimateUsageCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchDeleteBillScenarioCommitmentModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteBillScenarioCommitmentModificationCommandInput
|
|
8
|
-
extends BatchDeleteBillScenarioCommitmentModificationRequest {}
|
|
7
|
+
export interface BatchDeleteBillScenarioCommitmentModificationCommandInput extends BatchDeleteBillScenarioCommitmentModificationRequest {}
|
|
9
8
|
export interface BatchDeleteBillScenarioCommitmentModificationCommandOutput
|
|
10
|
-
extends BatchDeleteBillScenarioCommitmentModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchDeleteBillScenarioCommitmentModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchDeleteBillScenarioCommitmentModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchDeleteBillScenarioCommitmentModificationCommandInput
|
|
12
|
+
input: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
17
15
|
BatchDeleteBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchDeleteBillScenarioCommitmentModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchDeleteBillScenarioCommitmentModificationCommandInput
|
|
21
|
+
input: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
26
24
|
BatchDeleteBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchDeleteBillScenarioUsageModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteBillScenarioUsageModificationCommandInput
|
|
8
|
-
extends BatchDeleteBillScenarioUsageModificationRequest {}
|
|
7
|
+
export interface BatchDeleteBillScenarioUsageModificationCommandInput extends BatchDeleteBillScenarioUsageModificationRequest {}
|
|
9
8
|
export interface BatchDeleteBillScenarioUsageModificationCommandOutput
|
|
10
|
-
extends BatchDeleteBillScenarioUsageModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchDeleteBillScenarioUsageModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchDeleteBillScenarioUsageModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchDeleteBillScenarioUsageModificationCommandInput
|
|
12
|
+
input: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
17
15
|
BatchDeleteBillScenarioUsageModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchDeleteBillScenarioUsageModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchDeleteBillScenarioUsageModificationCommandInput
|
|
21
|
+
input: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
26
24
|
BatchDeleteBillScenarioUsageModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchDeleteWorkloadEstimateUsageResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteWorkloadEstimateUsageCommandInput
|
|
8
|
-
extends BatchDeleteWorkloadEstimateUsageRequest {}
|
|
7
|
+
export interface BatchDeleteWorkloadEstimateUsageCommandInput extends BatchDeleteWorkloadEstimateUsageRequest {}
|
|
9
8
|
export interface BatchDeleteWorkloadEstimateUsageCommandOutput
|
|
10
|
-
extends BatchDeleteWorkloadEstimateUsageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchDeleteWorkloadEstimateUsageResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchDeleteWorkloadEstimateUsageCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchDeleteWorkloadEstimateUsageCommandInput
|
|
12
|
+
input: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
17
15
|
BatchDeleteWorkloadEstimateUsageCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchDeleteWorkloadEstimateUsageCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchDeleteWorkloadEstimateUsageCommandInput
|
|
21
|
+
input: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
26
24
|
BatchDeleteWorkloadEstimateUsageCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchUpdateBillScenarioCommitmentModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchUpdateBillScenarioCommitmentModificationCommandInput
|
|
8
|
-
extends BatchUpdateBillScenarioCommitmentModificationRequest {}
|
|
7
|
+
export interface BatchUpdateBillScenarioCommitmentModificationCommandInput extends BatchUpdateBillScenarioCommitmentModificationRequest {}
|
|
9
8
|
export interface BatchUpdateBillScenarioCommitmentModificationCommandOutput
|
|
10
|
-
extends BatchUpdateBillScenarioCommitmentModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchUpdateBillScenarioCommitmentModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchUpdateBillScenarioCommitmentModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchUpdateBillScenarioCommitmentModificationCommandInput
|
|
12
|
+
input: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
17
15
|
BatchUpdateBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchUpdateBillScenarioCommitmentModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchUpdateBillScenarioCommitmentModificationCommandInput
|
|
21
|
+
input: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
26
24
|
BatchUpdateBillScenarioCommitmentModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchUpdateBillScenarioUsageModificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchUpdateBillScenarioUsageModificationCommandInput
|
|
8
|
-
extends BatchUpdateBillScenarioUsageModificationRequest {}
|
|
7
|
+
export interface BatchUpdateBillScenarioUsageModificationCommandInput extends BatchUpdateBillScenarioUsageModificationRequest {}
|
|
9
8
|
export interface BatchUpdateBillScenarioUsageModificationCommandOutput
|
|
10
|
-
extends BatchUpdateBillScenarioUsageModificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchUpdateBillScenarioUsageModificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchUpdateBillScenarioUsageModificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchUpdateBillScenarioUsageModificationCommandInput
|
|
12
|
+
input: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
17
15
|
BatchUpdateBillScenarioUsageModificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchUpdateBillScenarioUsageModificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchUpdateBillScenarioUsageModificationCommandInput
|
|
21
|
+
input: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
26
24
|
BatchUpdateBillScenarioUsageModificationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchUpdateWorkloadEstimateUsageResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchUpdateWorkloadEstimateUsageCommandInput
|
|
8
|
-
extends BatchUpdateWorkloadEstimateUsageRequest {}
|
|
7
|
+
export interface BatchUpdateWorkloadEstimateUsageCommandInput extends BatchUpdateWorkloadEstimateUsageRequest {}
|
|
9
8
|
export interface BatchUpdateWorkloadEstimateUsageCommandOutput
|
|
10
|
-
extends BatchUpdateWorkloadEstimateUsageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchUpdateWorkloadEstimateUsageResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchUpdateWorkloadEstimateUsageCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchUpdateWorkloadEstimateUsageCommandInput
|
|
12
|
+
input: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
17
15
|
BatchUpdateWorkloadEstimateUsageCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchUpdateWorkloadEstimateUsageCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchUpdateWorkloadEstimateUsageCommandInput
|
|
21
|
+
input: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
26
24
|
BatchUpdateWorkloadEstimateUsageCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBillEstimateRequest,
|
|
4
|
-
CreateBillEstimateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBillEstimateRequest, CreateBillEstimateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateBillEstimateCommandInput
|
|
8
|
-
extends CreateBillEstimateRequest {}
|
|
4
|
+
export interface CreateBillEstimateCommandInput extends CreateBillEstimateRequest {}
|
|
9
5
|
export interface CreateBillEstimateCommandOutput
|
|
10
|
-
extends CreateBillEstimateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateBillEstimateResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateBillEstimateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateBillEstimateCommandInput
|
|
9
|
+
input: CreateBillEstimateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateBillEstimateCommandInput,
|
|
17
12
|
CreateBillEstimateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateBillEstimateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateBillEstimateCommandInput
|
|
18
|
+
input: CreateBillEstimateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateBillEstimateCommandInput,
|
|
26
21
|
CreateBillEstimateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBillScenarioRequest,
|
|
4
|
-
CreateBillScenarioResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBillScenarioRequest, CreateBillScenarioResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateBillScenarioCommandInput
|
|
8
|
-
extends CreateBillScenarioRequest {}
|
|
4
|
+
export interface CreateBillScenarioCommandInput extends CreateBillScenarioRequest {}
|
|
9
5
|
export interface CreateBillScenarioCommandOutput
|
|
10
|
-
extends CreateBillScenarioResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateBillScenarioResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateBillScenarioCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateBillScenarioCommandInput
|
|
9
|
+
input: CreateBillScenarioCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateBillScenarioCommandInput,
|
|
17
12
|
CreateBillScenarioCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateBillScenarioCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateBillScenarioCommandInput
|
|
18
|
+
input: CreateBillScenarioCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateBillScenarioCommandInput,
|
|
26
21
|
CreateBillScenarioCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateWorkloadEstimateRequest,
|
|
4
|
-
CreateWorkloadEstimateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateWorkloadEstimateRequest, CreateWorkloadEstimateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateWorkloadEstimateCommandInput
|
|
8
|
-
extends CreateWorkloadEstimateRequest {}
|
|
4
|
+
export interface CreateWorkloadEstimateCommandInput extends CreateWorkloadEstimateRequest {}
|
|
9
5
|
export interface CreateWorkloadEstimateCommandOutput
|
|
10
|
-
extends CreateWorkloadEstimateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateWorkloadEstimateResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateWorkloadEstimateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateWorkloadEstimateCommandInput
|
|
9
|
+
input: CreateWorkloadEstimateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateWorkloadEstimateCommandInput,
|
|
17
12
|
CreateWorkloadEstimateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateWorkloadEstimateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateWorkloadEstimateCommandInput
|
|
18
|
+
input: CreateWorkloadEstimateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateWorkloadEstimateCommandInput,
|
|
26
21
|
CreateWorkloadEstimateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteBillEstimateRequest,
|
|
4
|
-
DeleteBillEstimateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteBillEstimateRequest, DeleteBillEstimateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteBillEstimateCommandInput
|
|
8
|
-
extends DeleteBillEstimateRequest {}
|
|
4
|
+
export interface DeleteBillEstimateCommandInput extends DeleteBillEstimateRequest {}
|
|
9
5
|
export interface DeleteBillEstimateCommandOutput
|
|
10
|
-
extends DeleteBillEstimateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteBillEstimateResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteBillEstimateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteBillEstimateCommandInput
|
|
9
|
+
input: DeleteBillEstimateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteBillEstimateCommandInput,
|
|
17
12
|
DeleteBillEstimateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteBillEstimateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteBillEstimateCommandInput
|
|
18
|
+
input: DeleteBillEstimateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteBillEstimateCommandInput,
|
|
26
21
|
DeleteBillEstimateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteBillScenarioRequest,
|
|
4
|
-
DeleteBillScenarioResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteBillScenarioRequest, DeleteBillScenarioResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteBillScenarioCommandInput
|
|
8
|
-
extends DeleteBillScenarioRequest {}
|
|
4
|
+
export interface DeleteBillScenarioCommandInput extends DeleteBillScenarioRequest {}
|
|
9
5
|
export interface DeleteBillScenarioCommandOutput
|
|
10
|
-
extends DeleteBillScenarioResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteBillScenarioResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteBillScenarioCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteBillScenarioCommandInput
|
|
9
|
+
input: DeleteBillScenarioCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteBillScenarioCommandInput,
|
|
17
12
|
DeleteBillScenarioCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteBillScenarioCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteBillScenarioCommandInput
|
|
18
|
+
input: DeleteBillScenarioCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteBillScenarioCommandInput,
|
|
26
21
|
DeleteBillScenarioCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteWorkloadEstimateRequest,
|
|
4
|
-
DeleteWorkloadEstimateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteWorkloadEstimateRequest, DeleteWorkloadEstimateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteWorkloadEstimateCommandInput
|
|
8
|
-
extends DeleteWorkloadEstimateRequest {}
|
|
4
|
+
export interface DeleteWorkloadEstimateCommandInput extends DeleteWorkloadEstimateRequest {}
|
|
9
5
|
export interface DeleteWorkloadEstimateCommandOutput
|
|
10
|
-
extends DeleteWorkloadEstimateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteWorkloadEstimateResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteWorkloadEstimateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteWorkloadEstimateCommandInput
|
|
9
|
+
input: DeleteWorkloadEstimateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteWorkloadEstimateCommandInput,
|
|
17
12
|
DeleteWorkloadEstimateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteWorkloadEstimateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteWorkloadEstimateCommandInput
|
|
18
|
+
input: DeleteWorkloadEstimateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteWorkloadEstimateCommandInput,
|
|
26
21
|
DeleteWorkloadEstimateCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetBillEstimateRequest,
|
|
4
|
-
GetBillEstimateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetBillEstimateRequest, GetBillEstimateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetBillEstimateCommandInput extends GetBillEstimateRequest {}
|
|
8
|
-
export interface GetBillEstimateCommandOutput
|
|
9
|
-
extends GetBillEstimateResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetBillEstimateCommandOutput extends GetBillEstimateResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetBillEstimateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetBillEstimateCommandInput
|
|
8
|
+
input: GetBillEstimateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetBillEstimateCommandInput,
|
|
16
11
|
GetBillEstimateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetBillEstimateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetBillEstimateCommandInput
|
|
17
|
+
input: GetBillEstimateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetBillEstimateCommandInput,
|
|
25
20
|
GetBillEstimateCommandOutput,
|