@aws-sdk/client-cost-explorer 3.693.0 → 3.698.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/README.md +24 -0
- package/dist-cjs/index.js +301 -36
- package/dist-es/CostExplorer.js +6 -0
- package/dist-es/commands/GetCommitmentPurchaseAnalysisCommand.js +22 -0
- package/dist-es/commands/ListCommitmentPurchaseAnalysesCommand.js +22 -0
- package/dist-es/commands/StartCommitmentPurchaseAnalysisCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +54 -25
- package/dist-es/protocols/Aws_json1_1.js +182 -4
- package/dist-types/CostExplorer.d.ts +22 -0
- package/dist-types/CostExplorerClient.d.ts +5 -2
- package/dist-types/commands/GetCommitmentPurchaseAnalysisCommand.d.ts +146 -0
- package/dist-types/commands/ListCommitmentPurchaseAnalysesCommand.d.ts +121 -0
- package/dist-types/commands/StartCommitmentPurchaseAnalysisCommand.d.ts +113 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +609 -112
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/CostExplorer.d.ts +52 -0
- package/dist-types/ts3.4/CostExplorerClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetCommitmentPurchaseAnalysisCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCommitmentPurchaseAnalysesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartCommitmentPurchaseAnalysisCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +165 -40
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +35 -35
|
@@ -11,6 +11,7 @@ import { GetAnomaliesCommandInput, GetAnomaliesCommandOutput } from "../commands
|
|
|
11
11
|
import { GetAnomalyMonitorsCommandInput, GetAnomalyMonitorsCommandOutput } from "../commands/GetAnomalyMonitorsCommand";
|
|
12
12
|
import { GetAnomalySubscriptionsCommandInput, GetAnomalySubscriptionsCommandOutput } from "../commands/GetAnomalySubscriptionsCommand";
|
|
13
13
|
import { GetApproximateUsageRecordsCommandInput, GetApproximateUsageRecordsCommandOutput } from "../commands/GetApproximateUsageRecordsCommand";
|
|
14
|
+
import { GetCommitmentPurchaseAnalysisCommandInput, GetCommitmentPurchaseAnalysisCommandOutput } from "../commands/GetCommitmentPurchaseAnalysisCommand";
|
|
14
15
|
import { GetCostAndUsageCommandInput, GetCostAndUsageCommandOutput } from "../commands/GetCostAndUsageCommand";
|
|
15
16
|
import { GetCostAndUsageWithResourcesCommandInput, GetCostAndUsageWithResourcesCommandOutput } from "../commands/GetCostAndUsageWithResourcesCommand";
|
|
16
17
|
import { GetCostCategoriesCommandInput, GetCostCategoriesCommandOutput } from "../commands/GetCostCategoriesCommand";
|
|
@@ -27,12 +28,14 @@ import { GetSavingsPlansUtilizationCommandInput, GetSavingsPlansUtilizationComma
|
|
|
27
28
|
import { GetSavingsPlansUtilizationDetailsCommandInput, GetSavingsPlansUtilizationDetailsCommandOutput } from "../commands/GetSavingsPlansUtilizationDetailsCommand";
|
|
28
29
|
import { GetTagsCommandInput, GetTagsCommandOutput } from "../commands/GetTagsCommand";
|
|
29
30
|
import { GetUsageForecastCommandInput, GetUsageForecastCommandOutput } from "../commands/GetUsageForecastCommand";
|
|
31
|
+
import { ListCommitmentPurchaseAnalysesCommandInput, ListCommitmentPurchaseAnalysesCommandOutput } from "../commands/ListCommitmentPurchaseAnalysesCommand";
|
|
30
32
|
import { ListCostAllocationTagBackfillHistoryCommandInput, ListCostAllocationTagBackfillHistoryCommandOutput } from "../commands/ListCostAllocationTagBackfillHistoryCommand";
|
|
31
33
|
import { ListCostAllocationTagsCommandInput, ListCostAllocationTagsCommandOutput } from "../commands/ListCostAllocationTagsCommand";
|
|
32
34
|
import { ListCostCategoryDefinitionsCommandInput, ListCostCategoryDefinitionsCommandOutput } from "../commands/ListCostCategoryDefinitionsCommand";
|
|
33
35
|
import { ListSavingsPlansPurchaseRecommendationGenerationCommandInput, ListSavingsPlansPurchaseRecommendationGenerationCommandOutput } from "../commands/ListSavingsPlansPurchaseRecommendationGenerationCommand";
|
|
34
36
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
35
37
|
import { ProvideAnomalyFeedbackCommandInput, ProvideAnomalyFeedbackCommandOutput } from "../commands/ProvideAnomalyFeedbackCommand";
|
|
38
|
+
import { StartCommitmentPurchaseAnalysisCommandInput, StartCommitmentPurchaseAnalysisCommandOutput } from "../commands/StartCommitmentPurchaseAnalysisCommand";
|
|
36
39
|
import { StartCostAllocationTagBackfillCommandInput, StartCostAllocationTagBackfillCommandOutput } from "../commands/StartCostAllocationTagBackfillCommand";
|
|
37
40
|
import { StartSavingsPlansPurchaseRecommendationGenerationCommandInput, StartSavingsPlansPurchaseRecommendationGenerationCommandOutput } from "../commands/StartSavingsPlansPurchaseRecommendationGenerationCommand";
|
|
38
41
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -85,6 +88,10 @@ export declare const se_GetAnomalySubscriptionsCommand: (input: GetAnomalySubscr
|
|
|
85
88
|
* serializeAws_json1_1GetApproximateUsageRecordsCommand
|
|
86
89
|
*/
|
|
87
90
|
export declare const se_GetApproximateUsageRecordsCommand: (input: GetApproximateUsageRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* serializeAws_json1_1GetCommitmentPurchaseAnalysisCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const se_GetCommitmentPurchaseAnalysisCommand: (input: GetCommitmentPurchaseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
95
|
/**
|
|
89
96
|
* serializeAws_json1_1GetCostAndUsageCommand
|
|
90
97
|
*/
|
|
@@ -149,6 +156,10 @@ export declare const se_GetTagsCommand: (input: GetTagsCommandInput, context: __
|
|
|
149
156
|
* serializeAws_json1_1GetUsageForecastCommand
|
|
150
157
|
*/
|
|
151
158
|
export declare const se_GetUsageForecastCommand: (input: GetUsageForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
|
+
/**
|
|
160
|
+
* serializeAws_json1_1ListCommitmentPurchaseAnalysesCommand
|
|
161
|
+
*/
|
|
162
|
+
export declare const se_ListCommitmentPurchaseAnalysesCommand: (input: ListCommitmentPurchaseAnalysesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
163
|
/**
|
|
153
164
|
* serializeAws_json1_1ListCostAllocationTagBackfillHistoryCommand
|
|
154
165
|
*/
|
|
@@ -173,6 +184,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
173
184
|
* serializeAws_json1_1ProvideAnomalyFeedbackCommand
|
|
174
185
|
*/
|
|
175
186
|
export declare const se_ProvideAnomalyFeedbackCommand: (input: ProvideAnomalyFeedbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
187
|
+
/**
|
|
188
|
+
* serializeAws_json1_1StartCommitmentPurchaseAnalysisCommand
|
|
189
|
+
*/
|
|
190
|
+
export declare const se_StartCommitmentPurchaseAnalysisCommand: (input: StartCommitmentPurchaseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
191
|
/**
|
|
177
192
|
* serializeAws_json1_1StartCostAllocationTagBackfillCommand
|
|
178
193
|
*/
|
|
@@ -249,6 +264,10 @@ export declare const de_GetAnomalySubscriptionsCommand: (output: __HttpResponse,
|
|
|
249
264
|
* deserializeAws_json1_1GetApproximateUsageRecordsCommand
|
|
250
265
|
*/
|
|
251
266
|
export declare const de_GetApproximateUsageRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApproximateUsageRecordsCommandOutput>;
|
|
267
|
+
/**
|
|
268
|
+
* deserializeAws_json1_1GetCommitmentPurchaseAnalysisCommand
|
|
269
|
+
*/
|
|
270
|
+
export declare const de_GetCommitmentPurchaseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCommitmentPurchaseAnalysisCommandOutput>;
|
|
252
271
|
/**
|
|
253
272
|
* deserializeAws_json1_1GetCostAndUsageCommand
|
|
254
273
|
*/
|
|
@@ -313,6 +332,10 @@ export declare const de_GetTagsCommand: (output: __HttpResponse, context: __Serd
|
|
|
313
332
|
* deserializeAws_json1_1GetUsageForecastCommand
|
|
314
333
|
*/
|
|
315
334
|
export declare const de_GetUsageForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUsageForecastCommandOutput>;
|
|
335
|
+
/**
|
|
336
|
+
* deserializeAws_json1_1ListCommitmentPurchaseAnalysesCommand
|
|
337
|
+
*/
|
|
338
|
+
export declare const de_ListCommitmentPurchaseAnalysesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCommitmentPurchaseAnalysesCommandOutput>;
|
|
316
339
|
/**
|
|
317
340
|
* deserializeAws_json1_1ListCostAllocationTagBackfillHistoryCommand
|
|
318
341
|
*/
|
|
@@ -337,6 +360,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
337
360
|
* deserializeAws_json1_1ProvideAnomalyFeedbackCommand
|
|
338
361
|
*/
|
|
339
362
|
export declare const de_ProvideAnomalyFeedbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ProvideAnomalyFeedbackCommandOutput>;
|
|
363
|
+
/**
|
|
364
|
+
* deserializeAws_json1_1StartCommitmentPurchaseAnalysisCommand
|
|
365
|
+
*/
|
|
366
|
+
export declare const de_StartCommitmentPurchaseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCommitmentPurchaseAnalysisCommandOutput>;
|
|
340
367
|
/**
|
|
341
368
|
* deserializeAws_json1_1StartCostAllocationTagBackfillCommand
|
|
342
369
|
*/
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
GetApproximateUsageRecordsCommandInput,
|
|
44
44
|
GetApproximateUsageRecordsCommandOutput,
|
|
45
45
|
} from "./commands/GetApproximateUsageRecordsCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetCommitmentPurchaseAnalysisCommandInput,
|
|
48
|
+
GetCommitmentPurchaseAnalysisCommandOutput,
|
|
49
|
+
} from "./commands/GetCommitmentPurchaseAnalysisCommand";
|
|
46
50
|
import {
|
|
47
51
|
GetCostAndUsageCommandInput,
|
|
48
52
|
GetCostAndUsageCommandOutput,
|
|
@@ -107,6 +111,10 @@ import {
|
|
|
107
111
|
GetUsageForecastCommandInput,
|
|
108
112
|
GetUsageForecastCommandOutput,
|
|
109
113
|
} from "./commands/GetUsageForecastCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListCommitmentPurchaseAnalysesCommandInput,
|
|
116
|
+
ListCommitmentPurchaseAnalysesCommandOutput,
|
|
117
|
+
} from "./commands/ListCommitmentPurchaseAnalysesCommand";
|
|
110
118
|
import {
|
|
111
119
|
ListCostAllocationTagBackfillHistoryCommandInput,
|
|
112
120
|
ListCostAllocationTagBackfillHistoryCommandOutput,
|
|
@@ -131,6 +139,10 @@ import {
|
|
|
131
139
|
ProvideAnomalyFeedbackCommandInput,
|
|
132
140
|
ProvideAnomalyFeedbackCommandOutput,
|
|
133
141
|
} from "./commands/ProvideAnomalyFeedbackCommand";
|
|
142
|
+
import {
|
|
143
|
+
StartCommitmentPurchaseAnalysisCommandInput,
|
|
144
|
+
StartCommitmentPurchaseAnalysisCommandOutput,
|
|
145
|
+
} from "./commands/StartCommitmentPurchaseAnalysisCommand";
|
|
134
146
|
import {
|
|
135
147
|
StartCostAllocationTagBackfillCommandInput,
|
|
136
148
|
StartCostAllocationTagBackfillCommandOutput,
|
|
@@ -310,6 +322,19 @@ export interface CostExplorer {
|
|
|
310
322
|
options: __HttpHandlerOptions,
|
|
311
323
|
cb: (err: any, data?: GetApproximateUsageRecordsCommandOutput) => void
|
|
312
324
|
): void;
|
|
325
|
+
getCommitmentPurchaseAnalysis(
|
|
326
|
+
args: GetCommitmentPurchaseAnalysisCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<GetCommitmentPurchaseAnalysisCommandOutput>;
|
|
329
|
+
getCommitmentPurchaseAnalysis(
|
|
330
|
+
args: GetCommitmentPurchaseAnalysisCommandInput,
|
|
331
|
+
cb: (err: any, data?: GetCommitmentPurchaseAnalysisCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
getCommitmentPurchaseAnalysis(
|
|
334
|
+
args: GetCommitmentPurchaseAnalysisCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: GetCommitmentPurchaseAnalysisCommandOutput) => void
|
|
337
|
+
): void;
|
|
313
338
|
getCostAndUsage(
|
|
314
339
|
args: GetCostAndUsageCommandInput,
|
|
315
340
|
options?: __HttpHandlerOptions
|
|
@@ -542,6 +567,20 @@ export interface CostExplorer {
|
|
|
542
567
|
options: __HttpHandlerOptions,
|
|
543
568
|
cb: (err: any, data?: GetUsageForecastCommandOutput) => void
|
|
544
569
|
): void;
|
|
570
|
+
listCommitmentPurchaseAnalyses(): Promise<ListCommitmentPurchaseAnalysesCommandOutput>;
|
|
571
|
+
listCommitmentPurchaseAnalyses(
|
|
572
|
+
args: ListCommitmentPurchaseAnalysesCommandInput,
|
|
573
|
+
options?: __HttpHandlerOptions
|
|
574
|
+
): Promise<ListCommitmentPurchaseAnalysesCommandOutput>;
|
|
575
|
+
listCommitmentPurchaseAnalyses(
|
|
576
|
+
args: ListCommitmentPurchaseAnalysesCommandInput,
|
|
577
|
+
cb: (err: any, data?: ListCommitmentPurchaseAnalysesCommandOutput) => void
|
|
578
|
+
): void;
|
|
579
|
+
listCommitmentPurchaseAnalyses(
|
|
580
|
+
args: ListCommitmentPurchaseAnalysesCommandInput,
|
|
581
|
+
options: __HttpHandlerOptions,
|
|
582
|
+
cb: (err: any, data?: ListCommitmentPurchaseAnalysesCommandOutput) => void
|
|
583
|
+
): void;
|
|
545
584
|
listCostAllocationTagBackfillHistory(): Promise<ListCostAllocationTagBackfillHistoryCommandOutput>;
|
|
546
585
|
listCostAllocationTagBackfillHistory(
|
|
547
586
|
args: ListCostAllocationTagBackfillHistoryCommandInput,
|
|
@@ -636,6 +675,19 @@ export interface CostExplorer {
|
|
|
636
675
|
options: __HttpHandlerOptions,
|
|
637
676
|
cb: (err: any, data?: ProvideAnomalyFeedbackCommandOutput) => void
|
|
638
677
|
): void;
|
|
678
|
+
startCommitmentPurchaseAnalysis(
|
|
679
|
+
args: StartCommitmentPurchaseAnalysisCommandInput,
|
|
680
|
+
options?: __HttpHandlerOptions
|
|
681
|
+
): Promise<StartCommitmentPurchaseAnalysisCommandOutput>;
|
|
682
|
+
startCommitmentPurchaseAnalysis(
|
|
683
|
+
args: StartCommitmentPurchaseAnalysisCommandInput,
|
|
684
|
+
cb: (err: any, data?: StartCommitmentPurchaseAnalysisCommandOutput) => void
|
|
685
|
+
): void;
|
|
686
|
+
startCommitmentPurchaseAnalysis(
|
|
687
|
+
args: StartCommitmentPurchaseAnalysisCommandInput,
|
|
688
|
+
options: __HttpHandlerOptions,
|
|
689
|
+
cb: (err: any, data?: StartCommitmentPurchaseAnalysisCommandOutput) => void
|
|
690
|
+
): void;
|
|
639
691
|
startCostAllocationTagBackfill(
|
|
640
692
|
args: StartCostAllocationTagBackfillCommandInput,
|
|
641
693
|
options?: __HttpHandlerOptions
|
|
@@ -89,6 +89,10 @@ import {
|
|
|
89
89
|
GetApproximateUsageRecordsCommandInput,
|
|
90
90
|
GetApproximateUsageRecordsCommandOutput,
|
|
91
91
|
} from "./commands/GetApproximateUsageRecordsCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetCommitmentPurchaseAnalysisCommandInput,
|
|
94
|
+
GetCommitmentPurchaseAnalysisCommandOutput,
|
|
95
|
+
} from "./commands/GetCommitmentPurchaseAnalysisCommand";
|
|
92
96
|
import {
|
|
93
97
|
GetCostAndUsageCommandInput,
|
|
94
98
|
GetCostAndUsageCommandOutput,
|
|
@@ -153,6 +157,10 @@ import {
|
|
|
153
157
|
GetUsageForecastCommandInput,
|
|
154
158
|
GetUsageForecastCommandOutput,
|
|
155
159
|
} from "./commands/GetUsageForecastCommand";
|
|
160
|
+
import {
|
|
161
|
+
ListCommitmentPurchaseAnalysesCommandInput,
|
|
162
|
+
ListCommitmentPurchaseAnalysesCommandOutput,
|
|
163
|
+
} from "./commands/ListCommitmentPurchaseAnalysesCommand";
|
|
156
164
|
import {
|
|
157
165
|
ListCostAllocationTagBackfillHistoryCommandInput,
|
|
158
166
|
ListCostAllocationTagBackfillHistoryCommandOutput,
|
|
@@ -177,6 +185,10 @@ import {
|
|
|
177
185
|
ProvideAnomalyFeedbackCommandInput,
|
|
178
186
|
ProvideAnomalyFeedbackCommandOutput,
|
|
179
187
|
} from "./commands/ProvideAnomalyFeedbackCommand";
|
|
188
|
+
import {
|
|
189
|
+
StartCommitmentPurchaseAnalysisCommandInput,
|
|
190
|
+
StartCommitmentPurchaseAnalysisCommandOutput,
|
|
191
|
+
} from "./commands/StartCommitmentPurchaseAnalysisCommand";
|
|
180
192
|
import {
|
|
181
193
|
StartCostAllocationTagBackfillCommandInput,
|
|
182
194
|
StartCostAllocationTagBackfillCommandOutput,
|
|
@@ -228,6 +240,7 @@ export type ServiceInputTypes =
|
|
|
228
240
|
| GetAnomalyMonitorsCommandInput
|
|
229
241
|
| GetAnomalySubscriptionsCommandInput
|
|
230
242
|
| GetApproximateUsageRecordsCommandInput
|
|
243
|
+
| GetCommitmentPurchaseAnalysisCommandInput
|
|
231
244
|
| GetCostAndUsageCommandInput
|
|
232
245
|
| GetCostAndUsageWithResourcesCommandInput
|
|
233
246
|
| GetCostCategoriesCommandInput
|
|
@@ -244,12 +257,14 @@ export type ServiceInputTypes =
|
|
|
244
257
|
| GetSavingsPlansUtilizationDetailsCommandInput
|
|
245
258
|
| GetTagsCommandInput
|
|
246
259
|
| GetUsageForecastCommandInput
|
|
260
|
+
| ListCommitmentPurchaseAnalysesCommandInput
|
|
247
261
|
| ListCostAllocationTagBackfillHistoryCommandInput
|
|
248
262
|
| ListCostAllocationTagsCommandInput
|
|
249
263
|
| ListCostCategoryDefinitionsCommandInput
|
|
250
264
|
| ListSavingsPlansPurchaseRecommendationGenerationCommandInput
|
|
251
265
|
| ListTagsForResourceCommandInput
|
|
252
266
|
| ProvideAnomalyFeedbackCommandInput
|
|
267
|
+
| StartCommitmentPurchaseAnalysisCommandInput
|
|
253
268
|
| StartCostAllocationTagBackfillCommandInput
|
|
254
269
|
| StartSavingsPlansPurchaseRecommendationGenerationCommandInput
|
|
255
270
|
| TagResourceCommandInput
|
|
@@ -270,6 +285,7 @@ export type ServiceOutputTypes =
|
|
|
270
285
|
| GetAnomalyMonitorsCommandOutput
|
|
271
286
|
| GetAnomalySubscriptionsCommandOutput
|
|
272
287
|
| GetApproximateUsageRecordsCommandOutput
|
|
288
|
+
| GetCommitmentPurchaseAnalysisCommandOutput
|
|
273
289
|
| GetCostAndUsageCommandOutput
|
|
274
290
|
| GetCostAndUsageWithResourcesCommandOutput
|
|
275
291
|
| GetCostCategoriesCommandOutput
|
|
@@ -286,12 +302,14 @@ export type ServiceOutputTypes =
|
|
|
286
302
|
| GetSavingsPlansUtilizationDetailsCommandOutput
|
|
287
303
|
| GetTagsCommandOutput
|
|
288
304
|
| GetUsageForecastCommandOutput
|
|
305
|
+
| ListCommitmentPurchaseAnalysesCommandOutput
|
|
289
306
|
| ListCostAllocationTagBackfillHistoryCommandOutput
|
|
290
307
|
| ListCostAllocationTagsCommandOutput
|
|
291
308
|
| ListCostCategoryDefinitionsCommandOutput
|
|
292
309
|
| ListSavingsPlansPurchaseRecommendationGenerationCommandOutput
|
|
293
310
|
| ListTagsForResourceCommandOutput
|
|
294
311
|
| ProvideAnomalyFeedbackCommandOutput
|
|
312
|
+
| StartCommitmentPurchaseAnalysisCommandOutput
|
|
295
313
|
| StartCostAllocationTagBackfillCommandOutput
|
|
296
314
|
| StartSavingsPlansPurchaseRecommendationGenerationCommandOutput
|
|
297
315
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CostExplorerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CostExplorerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetCommitmentPurchaseAnalysisRequest,
|
|
10
|
+
GetCommitmentPurchaseAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetCommitmentPurchaseAnalysisCommandInput
|
|
15
|
+
extends GetCommitmentPurchaseAnalysisRequest {}
|
|
16
|
+
export interface GetCommitmentPurchaseAnalysisCommandOutput
|
|
17
|
+
extends GetCommitmentPurchaseAnalysisResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetCommitmentPurchaseAnalysisCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetCommitmentPurchaseAnalysisCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetCommitmentPurchaseAnalysisCommandInput,
|
|
24
|
+
GetCommitmentPurchaseAnalysisCommandOutput,
|
|
25
|
+
CostExplorerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetCommitmentPurchaseAnalysisCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetCommitmentPurchaseAnalysisCommandInput,
|
|
33
|
+
GetCommitmentPurchaseAnalysisCommandOutput,
|
|
34
|
+
CostExplorerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetCommitmentPurchaseAnalysisCommand extends GetCommitmentPurchaseAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetCommitmentPurchaseAnalysisRequest;
|
|
44
|
+
output: GetCommitmentPurchaseAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetCommitmentPurchaseAnalysisCommandInput;
|
|
48
|
+
output: GetCommitmentPurchaseAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CostExplorerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CostExplorerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListCommitmentPurchaseAnalysesRequest,
|
|
10
|
+
ListCommitmentPurchaseAnalysesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCommitmentPurchaseAnalysesCommandInput
|
|
15
|
+
extends ListCommitmentPurchaseAnalysesRequest {}
|
|
16
|
+
export interface ListCommitmentPurchaseAnalysesCommandOutput
|
|
17
|
+
extends ListCommitmentPurchaseAnalysesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListCommitmentPurchaseAnalysesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListCommitmentPurchaseAnalysesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListCommitmentPurchaseAnalysesCommandInput,
|
|
24
|
+
ListCommitmentPurchaseAnalysesCommandOutput,
|
|
25
|
+
CostExplorerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListCommitmentPurchaseAnalysesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListCommitmentPurchaseAnalysesCommandInput,
|
|
33
|
+
ListCommitmentPurchaseAnalysesCommandOutput,
|
|
34
|
+
CostExplorerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListCommitmentPurchaseAnalysesCommand extends ListCommitmentPurchaseAnalysesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListCommitmentPurchaseAnalysesRequest;
|
|
44
|
+
output: ListCommitmentPurchaseAnalysesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListCommitmentPurchaseAnalysesCommandInput;
|
|
48
|
+
output: ListCommitmentPurchaseAnalysesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CostExplorerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CostExplorerClient";
|
|
8
|
+
import {
|
|
9
|
+
StartCommitmentPurchaseAnalysisRequest,
|
|
10
|
+
StartCommitmentPurchaseAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartCommitmentPurchaseAnalysisCommandInput
|
|
15
|
+
extends StartCommitmentPurchaseAnalysisRequest {}
|
|
16
|
+
export interface StartCommitmentPurchaseAnalysisCommandOutput
|
|
17
|
+
extends StartCommitmentPurchaseAnalysisResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartCommitmentPurchaseAnalysisCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartCommitmentPurchaseAnalysisCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartCommitmentPurchaseAnalysisCommandInput,
|
|
24
|
+
StartCommitmentPurchaseAnalysisCommandOutput,
|
|
25
|
+
CostExplorerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartCommitmentPurchaseAnalysisCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartCommitmentPurchaseAnalysisCommandInput,
|
|
33
|
+
StartCommitmentPurchaseAnalysisCommandOutput,
|
|
34
|
+
CostExplorerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartCommitmentPurchaseAnalysisCommand extends StartCommitmentPurchaseAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartCommitmentPurchaseAnalysisRequest;
|
|
44
|
+
output: StartCommitmentPurchaseAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartCommitmentPurchaseAnalysisCommandInput;
|
|
48
|
+
output: StartCommitmentPurchaseAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./GetAnomaliesCommand";
|
|
|
9
9
|
export * from "./GetAnomalyMonitorsCommand";
|
|
10
10
|
export * from "./GetAnomalySubscriptionsCommand";
|
|
11
11
|
export * from "./GetApproximateUsageRecordsCommand";
|
|
12
|
+
export * from "./GetCommitmentPurchaseAnalysisCommand";
|
|
12
13
|
export * from "./GetCostAndUsageCommand";
|
|
13
14
|
export * from "./GetCostAndUsageWithResourcesCommand";
|
|
14
15
|
export * from "./GetCostCategoriesCommand";
|
|
@@ -25,12 +26,14 @@ export * from "./GetSavingsPlansUtilizationCommand";
|
|
|
25
26
|
export * from "./GetSavingsPlansUtilizationDetailsCommand";
|
|
26
27
|
export * from "./GetTagsCommand";
|
|
27
28
|
export * from "./GetUsageForecastCommand";
|
|
29
|
+
export * from "./ListCommitmentPurchaseAnalysesCommand";
|
|
28
30
|
export * from "./ListCostAllocationTagBackfillHistoryCommand";
|
|
29
31
|
export * from "./ListCostAllocationTagsCommand";
|
|
30
32
|
export * from "./ListCostCategoryDefinitionsCommand";
|
|
31
33
|
export * from "./ListSavingsPlansPurchaseRecommendationGenerationCommand";
|
|
32
34
|
export * from "./ListTagsForResourceCommand";
|
|
33
35
|
export * from "./ProvideAnomalyFeedbackCommand";
|
|
36
|
+
export * from "./StartCommitmentPurchaseAnalysisCommand";
|
|
34
37
|
export * from "./StartCostAllocationTagBackfillCommand";
|
|
35
38
|
export * from "./StartSavingsPlansPurchaseRecommendationGenerationCommand";
|
|
36
39
|
export * from "./TagResourceCommand";
|