@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
|
@@ -5,6 +5,128 @@ export declare const AccountScope: {
|
|
|
5
5
|
readonly PAYER: "PAYER";
|
|
6
6
|
};
|
|
7
7
|
export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
|
|
8
|
+
export interface RecommendationDetailHourlyMetrics {
|
|
9
|
+
StartTime?: string | undefined;
|
|
10
|
+
EstimatedOnDemandCost?: string | undefined;
|
|
11
|
+
CurrentCoverage?: string | undefined;
|
|
12
|
+
EstimatedCoverage?: string | undefined;
|
|
13
|
+
EstimatedNewCommitmentUtilization?: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface SavingsPlansPurchaseAnalysisDetails {
|
|
16
|
+
CurrencyCode?: string | undefined;
|
|
17
|
+
LookbackPeriodInHours?: string | undefined;
|
|
18
|
+
CurrentAverageCoverage?: string | undefined;
|
|
19
|
+
CurrentAverageHourlyOnDemandSpend?: string | undefined;
|
|
20
|
+
CurrentMaximumHourlyOnDemandSpend?: string | undefined;
|
|
21
|
+
CurrentMinimumHourlyOnDemandSpend?: string | undefined;
|
|
22
|
+
CurrentOnDemandSpend?: string | undefined;
|
|
23
|
+
ExistingHourlyCommitment?: string | undefined;
|
|
24
|
+
HourlyCommitmentToPurchase?: string | undefined;
|
|
25
|
+
EstimatedAverageCoverage?: string | undefined;
|
|
26
|
+
EstimatedAverageUtilization?: string | undefined;
|
|
27
|
+
EstimatedMonthlySavingsAmount?: string | undefined;
|
|
28
|
+
EstimatedOnDemandCost?: string | undefined;
|
|
29
|
+
EstimatedOnDemandCostWithCurrentCommitment?: string | undefined;
|
|
30
|
+
EstimatedROI?: string | undefined;
|
|
31
|
+
EstimatedSavingsAmount?: string | undefined;
|
|
32
|
+
EstimatedSavingsPercentage?: string | undefined;
|
|
33
|
+
EstimatedCommitmentCost?: string | undefined;
|
|
34
|
+
LatestUsageTimestamp?: string | undefined;
|
|
35
|
+
UpfrontCost?: string | undefined;
|
|
36
|
+
AdditionalMetadata?: string | undefined;
|
|
37
|
+
MetricsOverLookbackPeriod?: RecommendationDetailHourlyMetrics[] | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface AnalysisDetails {
|
|
40
|
+
SavingsPlansPurchaseAnalysisDetails?:
|
|
41
|
+
| SavingsPlansPurchaseAnalysisDetails
|
|
42
|
+
| undefined;
|
|
43
|
+
}
|
|
44
|
+
export declare class AnalysisNotFoundException extends __BaseException {
|
|
45
|
+
readonly name: "AnalysisNotFoundException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
Message?: string | undefined;
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
export declare const AnalysisStatus: {
|
|
53
|
+
readonly FAILED: "FAILED";
|
|
54
|
+
readonly PROCESSING: "PROCESSING";
|
|
55
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
56
|
+
};
|
|
57
|
+
export type AnalysisStatus =
|
|
58
|
+
(typeof AnalysisStatus)[keyof typeof AnalysisStatus];
|
|
59
|
+
export declare const AnalysisType: {
|
|
60
|
+
readonly CUSTOM_COMMITMENT: "CUSTOM_COMMITMENT";
|
|
61
|
+
readonly MAX_SAVINGS: "MAX_SAVINGS";
|
|
62
|
+
};
|
|
63
|
+
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
64
|
+
export interface DateInterval {
|
|
65
|
+
Start: string | undefined;
|
|
66
|
+
End: string | undefined;
|
|
67
|
+
}
|
|
68
|
+
export declare const PaymentOption: {
|
|
69
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
70
|
+
readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
|
|
71
|
+
readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
|
|
72
|
+
readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
|
|
73
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
74
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
75
|
+
};
|
|
76
|
+
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
77
|
+
export declare const SupportedSavingsPlansType: {
|
|
78
|
+
readonly COMPUTE_SP: "COMPUTE_SP";
|
|
79
|
+
readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
|
|
80
|
+
readonly SAGEMAKER_SP: "SAGEMAKER_SP";
|
|
81
|
+
};
|
|
82
|
+
export type SupportedSavingsPlansType =
|
|
83
|
+
(typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
|
|
84
|
+
export declare const TermInYears: {
|
|
85
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
86
|
+
readonly THREE_YEARS: "THREE_YEARS";
|
|
87
|
+
};
|
|
88
|
+
export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
|
|
89
|
+
export interface SavingsPlans {
|
|
90
|
+
PaymentOption?: PaymentOption | undefined;
|
|
91
|
+
SavingsPlansType?: SupportedSavingsPlansType | undefined;
|
|
92
|
+
Region?: string | undefined;
|
|
93
|
+
InstanceFamily?: string | undefined;
|
|
94
|
+
TermInYears?: TermInYears | undefined;
|
|
95
|
+
SavingsPlansCommitment?: number | undefined;
|
|
96
|
+
OfferingId?: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface SavingsPlansPurchaseAnalysisConfiguration {
|
|
99
|
+
AccountScope?: AccountScope | undefined;
|
|
100
|
+
AccountId?: string | undefined;
|
|
101
|
+
AnalysisType: AnalysisType | undefined;
|
|
102
|
+
SavingsPlansToAdd: SavingsPlans[] | undefined;
|
|
103
|
+
SavingsPlansToExclude?: string[] | undefined;
|
|
104
|
+
LookBackTimePeriod: DateInterval | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface CommitmentPurchaseAnalysisConfiguration {
|
|
107
|
+
SavingsPlansPurchaseAnalysisConfiguration?:
|
|
108
|
+
| SavingsPlansPurchaseAnalysisConfiguration
|
|
109
|
+
| undefined;
|
|
110
|
+
}
|
|
111
|
+
export declare const ErrorCode: {
|
|
112
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
113
|
+
readonly INVALID_ACCOUNT_ID: "INVALID_ACCOUNT_ID";
|
|
114
|
+
readonly INVALID_SAVINGS_PLANS_TO_ADD: "INVALID_SAVINGS_PLANS_TO_ADD";
|
|
115
|
+
readonly INVALID_SAVINGS_PLANS_TO_EXCLUDE: "INVALID_SAVINGS_PLANS_TO_EXCLUDE";
|
|
116
|
+
readonly NO_USAGE_FOUND: "NO_USAGE_FOUND";
|
|
117
|
+
};
|
|
118
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
119
|
+
export interface AnalysisSummary {
|
|
120
|
+
EstimatedCompletionTime?: string | undefined;
|
|
121
|
+
AnalysisCompletionTime?: string | undefined;
|
|
122
|
+
AnalysisStartedTime?: string | undefined;
|
|
123
|
+
AnalysisStatus?: AnalysisStatus | undefined;
|
|
124
|
+
ErrorCode?: ErrorCode | undefined;
|
|
125
|
+
AnalysisId?: string | undefined;
|
|
126
|
+
CommitmentPurchaseAnalysisConfiguration?:
|
|
127
|
+
| CommitmentPurchaseAnalysisConfiguration
|
|
128
|
+
| undefined;
|
|
129
|
+
}
|
|
8
130
|
export interface AnomalyScore {
|
|
9
131
|
MaxScore: number | undefined;
|
|
10
132
|
CurrentScore: number | undefined;
|
|
@@ -345,15 +467,26 @@ export interface GetApproximateUsageRecordsRequest {
|
|
|
345
467
|
Services?: string[] | undefined;
|
|
346
468
|
ApproximationDimension: ApproximationDimension | undefined;
|
|
347
469
|
}
|
|
348
|
-
export interface DateInterval {
|
|
349
|
-
Start: string | undefined;
|
|
350
|
-
End: string | undefined;
|
|
351
|
-
}
|
|
352
470
|
export interface GetApproximateUsageRecordsResponse {
|
|
353
471
|
Services?: Record<string, number> | undefined;
|
|
354
472
|
TotalRecords?: number | undefined;
|
|
355
473
|
LookbackPeriod?: DateInterval | undefined;
|
|
356
474
|
}
|
|
475
|
+
export interface GetCommitmentPurchaseAnalysisRequest {
|
|
476
|
+
AnalysisId: string | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface GetCommitmentPurchaseAnalysisResponse {
|
|
479
|
+
EstimatedCompletionTime: string | undefined;
|
|
480
|
+
AnalysisCompletionTime?: string | undefined;
|
|
481
|
+
AnalysisStartedTime: string | undefined;
|
|
482
|
+
AnalysisId: string | undefined;
|
|
483
|
+
AnalysisStatus: AnalysisStatus | undefined;
|
|
484
|
+
ErrorCode?: ErrorCode | undefined;
|
|
485
|
+
AnalysisDetails?: AnalysisDetails | undefined;
|
|
486
|
+
CommitmentPurchaseAnalysisConfiguration:
|
|
487
|
+
| CommitmentPurchaseAnalysisConfiguration
|
|
488
|
+
| undefined;
|
|
489
|
+
}
|
|
357
490
|
export declare class BillExpirationException extends __BaseException {
|
|
358
491
|
readonly name: "BillExpirationException";
|
|
359
492
|
readonly $fault: "client";
|
|
@@ -500,15 +633,6 @@ export declare const LookbackPeriodInDays: {
|
|
|
500
633
|
};
|
|
501
634
|
export type LookbackPeriodInDays =
|
|
502
635
|
(typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
|
|
503
|
-
export declare const PaymentOption: {
|
|
504
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
505
|
-
readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
|
|
506
|
-
readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
|
|
507
|
-
readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
|
|
508
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
509
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
510
|
-
};
|
|
511
|
-
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
512
636
|
export declare const OfferingClass: {
|
|
513
637
|
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
514
638
|
readonly STANDARD: "STANDARD";
|
|
@@ -520,11 +644,6 @@ export interface EC2Specification {
|
|
|
520
644
|
export interface ServiceSpecification {
|
|
521
645
|
EC2Specification?: EC2Specification | undefined;
|
|
522
646
|
}
|
|
523
|
-
export declare const TermInYears: {
|
|
524
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
525
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
526
|
-
};
|
|
527
|
-
export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
|
|
528
647
|
export interface ReservationPurchaseRecommendationMetadata {
|
|
529
648
|
RecommendationId?: string | undefined;
|
|
530
649
|
GenerationTimestamp?: string | undefined;
|
|
@@ -822,20 +941,6 @@ export interface GetRightsizingRecommendationResponse {
|
|
|
822
941
|
export interface GetSavingsPlanPurchaseRecommendationDetailsRequest {
|
|
823
942
|
RecommendationDetailId: string | undefined;
|
|
824
943
|
}
|
|
825
|
-
export interface RecommendationDetailHourlyMetrics {
|
|
826
|
-
StartTime?: string | undefined;
|
|
827
|
-
EstimatedOnDemandCost?: string | undefined;
|
|
828
|
-
CurrentCoverage?: string | undefined;
|
|
829
|
-
EstimatedCoverage?: string | undefined;
|
|
830
|
-
EstimatedNewCommitmentUtilization?: string | undefined;
|
|
831
|
-
}
|
|
832
|
-
export declare const SupportedSavingsPlansType: {
|
|
833
|
-
readonly COMPUTE_SP: "COMPUTE_SP";
|
|
834
|
-
readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
|
|
835
|
-
readonly SAGEMAKER_SP: "SAGEMAKER_SP";
|
|
836
|
-
};
|
|
837
|
-
export type SupportedSavingsPlansType =
|
|
838
|
-
(typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
|
|
839
944
|
export interface RecommendationDetailData {
|
|
840
945
|
AccountScope?: AccountScope | undefined;
|
|
841
946
|
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
@@ -1017,6 +1122,16 @@ export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
|
1017
1122
|
opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>
|
|
1018
1123
|
);
|
|
1019
1124
|
}
|
|
1125
|
+
export interface ListCommitmentPurchaseAnalysesRequest {
|
|
1126
|
+
AnalysisStatus?: AnalysisStatus | undefined;
|
|
1127
|
+
NextPageToken?: string | undefined;
|
|
1128
|
+
PageSize?: number | undefined;
|
|
1129
|
+
AnalysisIds?: string[] | undefined;
|
|
1130
|
+
}
|
|
1131
|
+
export interface ListCommitmentPurchaseAnalysesResponse {
|
|
1132
|
+
AnalysisSummaryList?: AnalysisSummary[] | undefined;
|
|
1133
|
+
NextPageToken?: string | undefined;
|
|
1134
|
+
}
|
|
1020
1135
|
export interface ListCostAllocationTagBackfillHistoryRequest {
|
|
1021
1136
|
NextToken?: string | undefined;
|
|
1022
1137
|
MaxResults?: number | undefined;
|
|
@@ -1125,6 +1240,24 @@ export interface ProvideAnomalyFeedbackRequest {
|
|
|
1125
1240
|
export interface ProvideAnomalyFeedbackResponse {
|
|
1126
1241
|
AnomalyId: string | undefined;
|
|
1127
1242
|
}
|
|
1243
|
+
export declare class GenerationExistsException extends __BaseException {
|
|
1244
|
+
readonly name: "GenerationExistsException";
|
|
1245
|
+
readonly $fault: "client";
|
|
1246
|
+
Message?: string | undefined;
|
|
1247
|
+
constructor(
|
|
1248
|
+
opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
|
|
1249
|
+
);
|
|
1250
|
+
}
|
|
1251
|
+
export interface StartCommitmentPurchaseAnalysisRequest {
|
|
1252
|
+
CommitmentPurchaseAnalysisConfiguration:
|
|
1253
|
+
| CommitmentPurchaseAnalysisConfiguration
|
|
1254
|
+
| undefined;
|
|
1255
|
+
}
|
|
1256
|
+
export interface StartCommitmentPurchaseAnalysisResponse {
|
|
1257
|
+
AnalysisId: string | undefined;
|
|
1258
|
+
AnalysisStartedTime: string | undefined;
|
|
1259
|
+
EstimatedCompletionTime: string | undefined;
|
|
1260
|
+
}
|
|
1128
1261
|
export declare class BackfillLimitExceededException extends __BaseException {
|
|
1129
1262
|
readonly name: "BackfillLimitExceededException";
|
|
1130
1263
|
readonly $fault: "client";
|
|
@@ -1139,14 +1272,6 @@ export interface StartCostAllocationTagBackfillRequest {
|
|
|
1139
1272
|
export interface StartCostAllocationTagBackfillResponse {
|
|
1140
1273
|
BackfillRequest?: CostAllocationTagBackfillRequest | undefined;
|
|
1141
1274
|
}
|
|
1142
|
-
export declare class GenerationExistsException extends __BaseException {
|
|
1143
|
-
readonly name: "GenerationExistsException";
|
|
1144
|
-
readonly $fault: "client";
|
|
1145
|
-
Message?: string | undefined;
|
|
1146
|
-
constructor(
|
|
1147
|
-
opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
|
|
1148
|
-
);
|
|
1149
|
-
}
|
|
1150
1275
|
export interface StartSavingsPlansPurchaseRecommendationGenerationRequest {}
|
|
1151
1276
|
export interface StartSavingsPlansPurchaseRecommendationGenerationResponse {
|
|
1152
1277
|
RecommendationId?: string | undefined;
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
GetApproximateUsageRecordsCommandInput,
|
|
48
48
|
GetApproximateUsageRecordsCommandOutput,
|
|
49
49
|
} from "../commands/GetApproximateUsageRecordsCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetCommitmentPurchaseAnalysisCommandInput,
|
|
52
|
+
GetCommitmentPurchaseAnalysisCommandOutput,
|
|
53
|
+
} from "../commands/GetCommitmentPurchaseAnalysisCommand";
|
|
50
54
|
import {
|
|
51
55
|
GetCostAndUsageCommandInput,
|
|
52
56
|
GetCostAndUsageCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
GetUsageForecastCommandInput,
|
|
112
116
|
GetUsageForecastCommandOutput,
|
|
113
117
|
} from "../commands/GetUsageForecastCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListCommitmentPurchaseAnalysesCommandInput,
|
|
120
|
+
ListCommitmentPurchaseAnalysesCommandOutput,
|
|
121
|
+
} from "../commands/ListCommitmentPurchaseAnalysesCommand";
|
|
114
122
|
import {
|
|
115
123
|
ListCostAllocationTagBackfillHistoryCommandInput,
|
|
116
124
|
ListCostAllocationTagBackfillHistoryCommandOutput,
|
|
@@ -135,6 +143,10 @@ import {
|
|
|
135
143
|
ProvideAnomalyFeedbackCommandInput,
|
|
136
144
|
ProvideAnomalyFeedbackCommandOutput,
|
|
137
145
|
} from "../commands/ProvideAnomalyFeedbackCommand";
|
|
146
|
+
import {
|
|
147
|
+
StartCommitmentPurchaseAnalysisCommandInput,
|
|
148
|
+
StartCommitmentPurchaseAnalysisCommandOutput,
|
|
149
|
+
} from "../commands/StartCommitmentPurchaseAnalysisCommand";
|
|
138
150
|
import {
|
|
139
151
|
StartCostAllocationTagBackfillCommandInput,
|
|
140
152
|
StartCostAllocationTagBackfillCommandOutput,
|
|
@@ -211,6 +223,10 @@ export declare const se_GetApproximateUsageRecordsCommand: (
|
|
|
211
223
|
input: GetApproximateUsageRecordsCommandInput,
|
|
212
224
|
context: __SerdeContext
|
|
213
225
|
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const se_GetCommitmentPurchaseAnalysisCommand: (
|
|
227
|
+
input: GetCommitmentPurchaseAnalysisCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
214
230
|
export declare const se_GetCostAndUsageCommand: (
|
|
215
231
|
input: GetCostAndUsageCommandInput,
|
|
216
232
|
context: __SerdeContext
|
|
@@ -275,6 +291,10 @@ export declare const se_GetUsageForecastCommand: (
|
|
|
275
291
|
input: GetUsageForecastCommandInput,
|
|
276
292
|
context: __SerdeContext
|
|
277
293
|
) => Promise<__HttpRequest>;
|
|
294
|
+
export declare const se_ListCommitmentPurchaseAnalysesCommand: (
|
|
295
|
+
input: ListCommitmentPurchaseAnalysesCommandInput,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<__HttpRequest>;
|
|
278
298
|
export declare const se_ListCostAllocationTagBackfillHistoryCommand: (
|
|
279
299
|
input: ListCostAllocationTagBackfillHistoryCommandInput,
|
|
280
300
|
context: __SerdeContext
|
|
@@ -299,6 +319,10 @@ export declare const se_ProvideAnomalyFeedbackCommand: (
|
|
|
299
319
|
input: ProvideAnomalyFeedbackCommandInput,
|
|
300
320
|
context: __SerdeContext
|
|
301
321
|
) => Promise<__HttpRequest>;
|
|
322
|
+
export declare const se_StartCommitmentPurchaseAnalysisCommand: (
|
|
323
|
+
input: StartCommitmentPurchaseAnalysisCommandInput,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<__HttpRequest>;
|
|
302
326
|
export declare const se_StartCostAllocationTagBackfillCommand: (
|
|
303
327
|
input: StartCostAllocationTagBackfillCommandInput,
|
|
304
328
|
context: __SerdeContext
|
|
@@ -375,6 +399,10 @@ export declare const de_GetApproximateUsageRecordsCommand: (
|
|
|
375
399
|
output: __HttpResponse,
|
|
376
400
|
context: __SerdeContext
|
|
377
401
|
) => Promise<GetApproximateUsageRecordsCommandOutput>;
|
|
402
|
+
export declare const de_GetCommitmentPurchaseAnalysisCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<GetCommitmentPurchaseAnalysisCommandOutput>;
|
|
378
406
|
export declare const de_GetCostAndUsageCommand: (
|
|
379
407
|
output: __HttpResponse,
|
|
380
408
|
context: __SerdeContext
|
|
@@ -439,6 +467,10 @@ export declare const de_GetUsageForecastCommand: (
|
|
|
439
467
|
output: __HttpResponse,
|
|
440
468
|
context: __SerdeContext
|
|
441
469
|
) => Promise<GetUsageForecastCommandOutput>;
|
|
470
|
+
export declare const de_ListCommitmentPurchaseAnalysesCommand: (
|
|
471
|
+
output: __HttpResponse,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<ListCommitmentPurchaseAnalysesCommandOutput>;
|
|
442
474
|
export declare const de_ListCostAllocationTagBackfillHistoryCommand: (
|
|
443
475
|
output: __HttpResponse,
|
|
444
476
|
context: __SerdeContext
|
|
@@ -463,6 +495,10 @@ export declare const de_ProvideAnomalyFeedbackCommand: (
|
|
|
463
495
|
output: __HttpResponse,
|
|
464
496
|
context: __SerdeContext
|
|
465
497
|
) => Promise<ProvideAnomalyFeedbackCommandOutput>;
|
|
498
|
+
export declare const de_StartCommitmentPurchaseAnalysisCommand: (
|
|
499
|
+
output: __HttpResponse,
|
|
500
|
+
context: __SerdeContext
|
|
501
|
+
) => Promise<StartCommitmentPurchaseAnalysisCommandOutput>;
|
|
466
502
|
export declare const de_StartCostAllocationTagBackfillCommand: (
|
|
467
503
|
output: __HttpResponse,
|
|
468
504
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cost-explorer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cost Explorer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.698.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cost-explorer",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.696.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.696.0",
|
|
25
|
+
"@aws-sdk/core": "3.696.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.696.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.696.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.696.0",
|
|
32
|
+
"@aws-sdk/types": "3.696.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.696.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.696.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.696.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.12",
|
|
37
|
+
"@smithy/core": "^2.5.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.1",
|
|
39
|
+
"@smithy/hash-node": "^3.0.10",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.10",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.12",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.27",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.10",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.11",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.7",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.4",
|
|
50
|
+
"@smithy/types": "^3.7.1",
|
|
51
|
+
"@smithy/url-parser": "^3.0.10",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.27",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.27",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.6",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.10",
|
|
59
|
+
"@smithy/util-retry": "^3.0.10",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|