@aws-sdk/client-bcm-pricing-calculator 3.933.0 → 3.935.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 +167 -146
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +137 -0
- package/dist-es/models/errors.js +125 -0
- package/dist-es/models/models_0.js +1 -255
- package/dist-es/schemas/schemas_0.js +29 -17
- package/dist-types/commands/CreateBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/CreateBillScenarioCommand.d.ts +4 -0
- package/dist-types/commands/GetBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/GetBillScenarioCommand.d.ts +2 -0
- package/dist-types/commands/ListBillScenariosCommand.d.ts +3 -1
- package/dist-types/commands/UpdateBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/UpdateBillScenarioCommand.d.ts +4 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +329 -0
- package/dist-types/models/errors.d.ts +170 -0
- package/dist-types/models/models_0.d.ts +106 -482
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +182 -0
- package/dist-types/ts3.4/models/errors.d.ts +72 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -243
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,255 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class DataUnavailableException extends __BaseException {
|
|
15
|
-
name = "DataUnavailableException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "DataUnavailableException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, DataUnavailableException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class InternalServerException extends __BaseException {
|
|
27
|
-
name = "InternalServerException";
|
|
28
|
-
$fault = "server";
|
|
29
|
-
retryAfterSeconds;
|
|
30
|
-
constructor(opts) {
|
|
31
|
-
super({
|
|
32
|
-
name: "InternalServerException",
|
|
33
|
-
$fault: "server",
|
|
34
|
-
...opts,
|
|
35
|
-
});
|
|
36
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
37
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
export const CurrencyCode = {
|
|
41
|
-
USD: "USD",
|
|
42
|
-
};
|
|
43
|
-
export const PurchaseAgreementType = {
|
|
44
|
-
RESERVED_INSTANCE: "RESERVED_INSTANCE",
|
|
45
|
-
SAVINGS_PLANS: "SAVINGS_PLANS",
|
|
46
|
-
};
|
|
47
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
48
|
-
name = "ResourceNotFoundException";
|
|
49
|
-
$fault = "client";
|
|
50
|
-
resourceId;
|
|
51
|
-
resourceType;
|
|
52
|
-
constructor(opts) {
|
|
53
|
-
super({
|
|
54
|
-
name: "ResourceNotFoundException",
|
|
55
|
-
$fault: "client",
|
|
56
|
-
...opts,
|
|
57
|
-
});
|
|
58
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
59
|
-
this.resourceId = opts.resourceId;
|
|
60
|
-
this.resourceType = opts.resourceType;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
export class ThrottlingException extends __BaseException {
|
|
64
|
-
name = "ThrottlingException";
|
|
65
|
-
$fault = "client";
|
|
66
|
-
serviceCode;
|
|
67
|
-
quotaCode;
|
|
68
|
-
retryAfterSeconds;
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "ThrottlingException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
76
|
-
this.serviceCode = opts.serviceCode;
|
|
77
|
-
this.quotaCode = opts.quotaCode;
|
|
78
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
export const ValidationExceptionReason = {
|
|
82
|
-
CANNOT_PARSE: "cannotParse",
|
|
83
|
-
DISALLOWED_RATE: "disallowedRate",
|
|
84
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
85
|
-
INVALID_REQUEST_FROM_MEMBER: "invalidRequestFromMember",
|
|
86
|
-
OTHER: "other",
|
|
87
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
88
|
-
};
|
|
89
|
-
export class ValidationException extends __BaseException {
|
|
90
|
-
name = "ValidationException";
|
|
91
|
-
$fault = "client";
|
|
92
|
-
reason;
|
|
93
|
-
fieldList;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "ValidationException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
101
|
-
this.reason = opts.reason;
|
|
102
|
-
this.fieldList = opts.fieldList;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
export const MatchOption = {
|
|
106
|
-
CONTAINS: "CONTAINS",
|
|
107
|
-
EQUALS: "EQUALS",
|
|
108
|
-
STARTS_WITH: "STARTS_WITH",
|
|
109
|
-
};
|
|
110
|
-
export const ListUsageFilterName = {
|
|
111
|
-
HISTORICAL_LOCATION: "HISTORICAL_LOCATION",
|
|
112
|
-
HISTORICAL_OPERATION: "HISTORICAL_OPERATION",
|
|
113
|
-
HISTORICAL_SERVICE_CODE: "HISTORICAL_SERVICE_CODE",
|
|
114
|
-
HISTORICAL_USAGE_ACCOUNT_ID: "HISTORICAL_USAGE_ACCOUNT_ID",
|
|
115
|
-
HISTORICAL_USAGE_TYPE: "HISTORICAL_USAGE_TYPE",
|
|
116
|
-
LOCATION: "LOCATION",
|
|
117
|
-
OPERATION: "OPERATION",
|
|
118
|
-
SERVICE_CODE: "SERVICE_CODE",
|
|
119
|
-
USAGE_ACCOUNT_ID: "USAGE_ACCOUNT_ID",
|
|
120
|
-
USAGE_GROUP: "USAGE_GROUP",
|
|
121
|
-
USAGE_TYPE: "USAGE_TYPE",
|
|
122
|
-
};
|
|
123
|
-
export const ListBillEstimateLineItemsFilterName = {
|
|
124
|
-
LINE_ITEM_TYPE: "LINE_ITEM_TYPE",
|
|
125
|
-
LOCATION: "LOCATION",
|
|
126
|
-
OPERATION: "OPERATION",
|
|
127
|
-
SERVICE_CODE: "SERVICE_CODE",
|
|
128
|
-
USAGE_ACCOUNT_ID: "USAGE_ACCOUNT_ID",
|
|
129
|
-
USAGE_TYPE: "USAGE_TYPE",
|
|
130
|
-
};
|
|
131
|
-
export const BillEstimateStatus = {
|
|
132
|
-
COMPLETE: "COMPLETE",
|
|
133
|
-
FAILED: "FAILED",
|
|
134
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
135
|
-
};
|
|
136
|
-
export class ConflictException extends __BaseException {
|
|
137
|
-
name = "ConflictException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
resourceId;
|
|
140
|
-
resourceType;
|
|
141
|
-
constructor(opts) {
|
|
142
|
-
super({
|
|
143
|
-
name: "ConflictException",
|
|
144
|
-
$fault: "client",
|
|
145
|
-
...opts,
|
|
146
|
-
});
|
|
147
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
148
|
-
this.resourceId = opts.resourceId;
|
|
149
|
-
this.resourceType = opts.resourceType;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
export const ListBillEstimatesFilterName = {
|
|
153
|
-
NAME: "NAME",
|
|
154
|
-
STATUS: "STATUS",
|
|
155
|
-
};
|
|
156
|
-
export const BatchCreateBillScenarioCommitmentModificationErrorCode = {
|
|
157
|
-
CONFLICT: "CONFLICT",
|
|
158
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
159
|
-
INVALID_ACCOUNT: "INVALID_ACCOUNT",
|
|
160
|
-
};
|
|
161
|
-
export const BatchDeleteBillScenarioCommitmentModificationErrorCode = {
|
|
162
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
163
|
-
CONFLICT: "CONFLICT",
|
|
164
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
165
|
-
};
|
|
166
|
-
export const BatchUpdateBillScenarioCommitmentModificationErrorCode = {
|
|
167
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
168
|
-
CONFLICT: "CONFLICT",
|
|
169
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
170
|
-
NOT_FOUND: "NOT_FOUND",
|
|
171
|
-
};
|
|
172
|
-
export const BillScenarioStatus = {
|
|
173
|
-
FAILED: "FAILED",
|
|
174
|
-
LOCKED: "LOCKED",
|
|
175
|
-
READY: "READY",
|
|
176
|
-
STALE: "STALE",
|
|
177
|
-
};
|
|
178
|
-
export const BatchCreateBillScenarioUsageModificationErrorCode = {
|
|
179
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
180
|
-
CONFLICT: "CONFLICT",
|
|
181
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
182
|
-
NOT_FOUND: "NOT_FOUND",
|
|
183
|
-
};
|
|
184
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
185
|
-
name = "ServiceQuotaExceededException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
resourceId;
|
|
188
|
-
resourceType;
|
|
189
|
-
serviceCode;
|
|
190
|
-
quotaCode;
|
|
191
|
-
constructor(opts) {
|
|
192
|
-
super({
|
|
193
|
-
name: "ServiceQuotaExceededException",
|
|
194
|
-
$fault: "client",
|
|
195
|
-
...opts,
|
|
196
|
-
});
|
|
197
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
198
|
-
this.resourceId = opts.resourceId;
|
|
199
|
-
this.resourceType = opts.resourceType;
|
|
200
|
-
this.serviceCode = opts.serviceCode;
|
|
201
|
-
this.quotaCode = opts.quotaCode;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
export const BatchDeleteBillScenarioUsageModificationErrorCode = {
|
|
205
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
206
|
-
CONFLICT: "CONFLICT",
|
|
207
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
208
|
-
};
|
|
209
|
-
export const BatchUpdateBillScenarioUsageModificationErrorCode = {
|
|
210
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
211
|
-
CONFLICT: "CONFLICT",
|
|
212
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
213
|
-
NOT_FOUND: "NOT_FOUND",
|
|
214
|
-
};
|
|
215
|
-
export const ListBillScenariosFilterName = {
|
|
216
|
-
NAME: "NAME",
|
|
217
|
-
STATUS: "STATUS",
|
|
218
|
-
};
|
|
219
|
-
export const RateType = {
|
|
220
|
-
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
221
|
-
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
222
|
-
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
223
|
-
};
|
|
224
|
-
export const WorkloadEstimateRateType = {
|
|
225
|
-
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
226
|
-
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
227
|
-
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
228
|
-
};
|
|
229
|
-
export const WorkloadEstimateStatus = {
|
|
230
|
-
ACTION_NEEDED: "ACTION_NEEDED",
|
|
231
|
-
INVALID: "INVALID",
|
|
232
|
-
UPDATING: "UPDATING",
|
|
233
|
-
VALID: "VALID",
|
|
234
|
-
};
|
|
235
|
-
export const ListWorkloadEstimatesFilterName = {
|
|
236
|
-
NAME: "NAME",
|
|
237
|
-
STATUS: "STATUS",
|
|
238
|
-
};
|
|
239
|
-
export const BatchCreateWorkloadEstimateUsageCode = {
|
|
240
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
241
|
-
CONFLICT: "CONFLICT",
|
|
242
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
243
|
-
NOT_FOUND: "NOT_FOUND",
|
|
244
|
-
};
|
|
245
|
-
export const WorkloadEstimateCostStatus = {
|
|
246
|
-
INVALID: "INVALID",
|
|
247
|
-
STALE: "STALE",
|
|
248
|
-
VALID: "VALID",
|
|
249
|
-
};
|
|
250
|
-
export const WorkloadEstimateUpdateUsageErrorCode = {
|
|
251
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
252
|
-
CONFLICT: "CONFLICT",
|
|
253
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
254
|
-
NOT_FOUND: "NOT_FOUND",
|
|
255
|
-
};
|
|
1
|
+
export {};
|
|
@@ -223,6 +223,8 @@ const _cA = "commitmentAction";
|
|
|
223
223
|
const _cAF = "createdAtFilter";
|
|
224
224
|
const _cAr = "createdAt";
|
|
225
225
|
const _cC = "costCurrency";
|
|
226
|
+
const _cCGSPA = "costCategoryGroupSharingPreferenceArn";
|
|
227
|
+
const _cCGSPED = "costCategoryGroupSharingPreferenceEffectiveDate";
|
|
226
228
|
const _cCo = "costCategories";
|
|
227
229
|
const _cM = "commitmentModifications";
|
|
228
230
|
const _cS = "costSummary";
|
|
@@ -245,6 +247,7 @@ const _fE = "filterExpression";
|
|
|
245
247
|
const _fL = "fieldList";
|
|
246
248
|
const _fM = "failureMessage";
|
|
247
249
|
const _g = "group";
|
|
250
|
+
const _gSP = "groupSharingPreference";
|
|
248
251
|
const _hC = "historicalCost";
|
|
249
252
|
const _hE = "httpError";
|
|
250
253
|
const _hH = "httpHeader";
|
|
@@ -317,7 +320,7 @@ const _wEI = "workloadEstimateId";
|
|
|
317
320
|
const n0 = "com.amazonaws.bcmpricingcalculator";
|
|
318
321
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
319
322
|
import { BCMPricingCalculatorServiceException as __BCMPricingCalculatorServiceException } from "../models/BCMPricingCalculatorServiceException";
|
|
320
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, DataUnavailableException as __DataUnavailableException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
323
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, DataUnavailableException as __DataUnavailableException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
321
324
|
export var AccessDeniedException = [
|
|
322
325
|
-3,
|
|
323
326
|
n0,
|
|
@@ -722,8 +725,8 @@ export var BillScenarioSummary = [
|
|
|
722
725
|
n0,
|
|
723
726
|
_BSS,
|
|
724
727
|
0,
|
|
725
|
-
[_i, _n, _bI, _s, _cAr, _eA, _fM],
|
|
726
|
-
[0, 0, () => BillInterval, 0, 4, 4, 0],
|
|
728
|
+
[_i, _n, _bI, _s, _cAr, _eA, _fM, _gSP, _cCGSPA],
|
|
729
|
+
[0, 0, () => BillInterval, 0, 4, 4, 0, 0, 0],
|
|
727
730
|
];
|
|
728
731
|
export var BillScenarioUsageModificationItem = [
|
|
729
732
|
3,
|
|
@@ -772,15 +775,15 @@ export var CreateBillEstimateResponse = [
|
|
|
772
775
|
n0,
|
|
773
776
|
_CBERr,
|
|
774
777
|
0,
|
|
775
|
-
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA],
|
|
776
|
-
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4],
|
|
778
|
+
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA, _gSP, _cCGSPA, _cCGSPED],
|
|
779
|
+
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4, 0, 0, 4],
|
|
777
780
|
];
|
|
778
781
|
export var CreateBillScenarioRequest = [
|
|
779
782
|
3,
|
|
780
783
|
n0,
|
|
781
784
|
_CBSR,
|
|
782
785
|
0,
|
|
783
|
-
[_n, _cT, _t],
|
|
786
|
+
[_n, _cT, _t, _gSP, _cCGSPA],
|
|
784
787
|
[
|
|
785
788
|
0,
|
|
786
789
|
[
|
|
@@ -791,6 +794,8 @@ export var CreateBillScenarioRequest = [
|
|
|
791
794
|
},
|
|
792
795
|
],
|
|
793
796
|
128 | 0,
|
|
797
|
+
0,
|
|
798
|
+
0,
|
|
794
799
|
],
|
|
795
800
|
];
|
|
796
801
|
export var CreateBillScenarioResponse = [
|
|
@@ -798,8 +803,8 @@ export var CreateBillScenarioResponse = [
|
|
|
798
803
|
n0,
|
|
799
804
|
_CBSRr,
|
|
800
805
|
0,
|
|
801
|
-
[_i, _n, _bI, _s, _cAr, _eA, _fM],
|
|
802
|
-
[0, 0, () => BillInterval, 0, 4, 4, 0],
|
|
806
|
+
[_i, _n, _bI, _s, _cAr, _eA, _fM, _gSP, _cCGSPA],
|
|
807
|
+
[0, 0, () => BillInterval, 0, 4, 4, 0, 0, 0],
|
|
803
808
|
];
|
|
804
809
|
export var CreateWorkloadEstimateRequest = [
|
|
805
810
|
3,
|
|
@@ -869,8 +874,8 @@ export var GetBillEstimateResponse = [
|
|
|
869
874
|
n0,
|
|
870
875
|
_GBERe,
|
|
871
876
|
0,
|
|
872
|
-
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA],
|
|
873
|
-
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4],
|
|
877
|
+
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA, _gSP, _cCGSPA, _cCGSPED],
|
|
878
|
+
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4, 0, 0, 4],
|
|
874
879
|
];
|
|
875
880
|
export var GetBillScenarioRequest = [3, n0, _GBSR, 0, [_ide], [0]];
|
|
876
881
|
export var GetBillScenarioResponse = [
|
|
@@ -878,8 +883,8 @@ export var GetBillScenarioResponse = [
|
|
|
878
883
|
n0,
|
|
879
884
|
_GBSRe,
|
|
880
885
|
0,
|
|
881
|
-
[_i, _n, _bI, _s, _cAr, _eA, _fM],
|
|
882
|
-
[0, 0, () => BillInterval, 0, 4, 4, 0],
|
|
886
|
+
[_i, _n, _bI, _s, _cAr, _eA, _fM, _gSP, _cCGSPA],
|
|
887
|
+
[0, 0, () => BillInterval, 0, 4, 4, 0, 0, 0],
|
|
883
888
|
];
|
|
884
889
|
export var GetPreferencesRequest = [3, n0, _GPR, 0, [], []];
|
|
885
890
|
export var GetPreferencesResponse = [
|
|
@@ -1148,17 +1153,24 @@ export var UpdateBillEstimateResponse = [
|
|
|
1148
1153
|
n0,
|
|
1149
1154
|
_UBERp,
|
|
1150
1155
|
0,
|
|
1151
|
-
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA],
|
|
1152
|
-
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4],
|
|
1156
|
+
[_i, _n, _s, _fM, _bI, _cS, _cAr, _eA, _gSP, _cCGSPA, _cCGSPED],
|
|
1157
|
+
[0, 0, 0, 0, () => BillInterval, () => BillEstimateCostSummary, 4, 4, 0, 0, 4],
|
|
1158
|
+
];
|
|
1159
|
+
export var UpdateBillScenarioRequest = [
|
|
1160
|
+
3,
|
|
1161
|
+
n0,
|
|
1162
|
+
_UBSR,
|
|
1163
|
+
0,
|
|
1164
|
+
[_ide, _n, _eA, _gSP, _cCGSPA],
|
|
1165
|
+
[0, 0, 4, 0, 0],
|
|
1153
1166
|
];
|
|
1154
|
-
export var UpdateBillScenarioRequest = [3, n0, _UBSR, 0, [_ide, _n, _eA], [0, 0, 4]];
|
|
1155
1167
|
export var UpdateBillScenarioResponse = [
|
|
1156
1168
|
3,
|
|
1157
1169
|
n0,
|
|
1158
1170
|
_UBSRp,
|
|
1159
1171
|
0,
|
|
1160
|
-
[_i, _n, _bI, _s, _cAr, _eA, _fM],
|
|
1161
|
-
[0, 0, () => BillInterval, 0, 4, 4, 0],
|
|
1172
|
+
[_i, _n, _bI, _s, _cAr, _eA, _fM, _gSP, _cCGSPA],
|
|
1173
|
+
[0, 0, () => BillInterval, 0, 4, 4, 0, 0, 0],
|
|
1162
1174
|
];
|
|
1163
1175
|
export var UpdatePreferencesRequest = [
|
|
1164
1176
|
3,
|
|
@@ -81,6 +81,9 @@ declare const CreateBillEstimateCommand_base: {
|
|
|
81
81
|
* // },
|
|
82
82
|
* // createdAt: new Date("TIMESTAMP"),
|
|
83
83
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
84
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
85
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
86
|
+
* // costCategoryGroupSharingPreferenceEffectiveDate: new Date("TIMESTAMP"),
|
|
84
87
|
* // };
|
|
85
88
|
*
|
|
86
89
|
* ```
|
|
@@ -42,6 +42,8 @@ declare const CreateBillScenarioCommand_base: {
|
|
|
42
42
|
* tags: { // Tags
|
|
43
43
|
* "<keys>": "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
|
+
* groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
46
|
+
* costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
45
47
|
* };
|
|
46
48
|
* const command = new CreateBillScenarioCommand(input);
|
|
47
49
|
* const response = await client.send(command);
|
|
@@ -56,6 +58,8 @@ declare const CreateBillScenarioCommand_base: {
|
|
|
56
58
|
* // createdAt: new Date("TIMESTAMP"),
|
|
57
59
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
58
60
|
* // failureMessage: "STRING_VALUE",
|
|
61
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
62
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
59
63
|
* // };
|
|
60
64
|
*
|
|
61
65
|
* ```
|
|
@@ -76,6 +76,9 @@ declare const GetBillEstimateCommand_base: {
|
|
|
76
76
|
* // },
|
|
77
77
|
* // createdAt: new Date("TIMESTAMP"),
|
|
78
78
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
79
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
80
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
81
|
+
* // costCategoryGroupSharingPreferenceEffectiveDate: new Date("TIMESTAMP"),
|
|
79
82
|
* // };
|
|
80
83
|
*
|
|
81
84
|
* ```
|
|
@@ -52,6 +52,8 @@ declare const GetBillScenarioCommand_base: {
|
|
|
52
52
|
* // createdAt: new Date("TIMESTAMP"),
|
|
53
53
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
54
54
|
* // failureMessage: "STRING_VALUE",
|
|
55
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
56
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
55
57
|
* // };
|
|
56
58
|
*
|
|
57
59
|
* ```
|
|
@@ -39,7 +39,7 @@ declare const ListBillScenariosCommand_base: {
|
|
|
39
39
|
* const input = { // ListBillScenariosRequest
|
|
40
40
|
* filters: [ // ListBillScenariosFilters
|
|
41
41
|
* { // ListBillScenariosFilter
|
|
42
|
-
* name: "STATUS" || "NAME", // required
|
|
42
|
+
* name: "STATUS" || "NAME" || "GROUP_SHARING_PREFERENCE" || "COST_CATEGORY_ARN", // required
|
|
43
43
|
* values: [ // ListBillScenariosFilterValues // required
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
@@ -72,6 +72,8 @@ declare const ListBillScenariosCommand_base: {
|
|
|
72
72
|
* // createdAt: new Date("TIMESTAMP"),
|
|
73
73
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
74
74
|
* // failureMessage: "STRING_VALUE",
|
|
75
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
76
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
75
77
|
* // },
|
|
76
78
|
* // ],
|
|
77
79
|
* // nextToken: "STRING_VALUE",
|
|
@@ -78,6 +78,9 @@ declare const UpdateBillEstimateCommand_base: {
|
|
|
78
78
|
* // },
|
|
79
79
|
* // createdAt: new Date("TIMESTAMP"),
|
|
80
80
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
81
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
82
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
83
|
+
* // costCategoryGroupSharingPreferenceEffectiveDate: new Date("TIMESTAMP"),
|
|
81
84
|
* // };
|
|
82
85
|
*
|
|
83
86
|
* ```
|
|
@@ -40,6 +40,8 @@ declare const UpdateBillScenarioCommand_base: {
|
|
|
40
40
|
* identifier: "STRING_VALUE", // required
|
|
41
41
|
* name: "STRING_VALUE",
|
|
42
42
|
* expiresAt: new Date("TIMESTAMP"),
|
|
43
|
+
* groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
44
|
+
* costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
43
45
|
* };
|
|
44
46
|
* const command = new UpdateBillScenarioCommand(input);
|
|
45
47
|
* const response = await client.send(command);
|
|
@@ -54,6 +56,8 @@ declare const UpdateBillScenarioCommand_base: {
|
|
|
54
56
|
* // createdAt: new Date("TIMESTAMP"),
|
|
55
57
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
56
58
|
* // failureMessage: "STRING_VALUE",
|
|
59
|
+
* // groupSharingPreference: "OPEN" || "PRIORITIZED" || "RESTRICTED",
|
|
60
|
+
* // costCategoryGroupSharingPreferenceArn: "STRING_VALUE",
|
|
57
61
|
* // };
|
|
58
62
|
*
|
|
59
63
|
* ```
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { BCMPricingCalculatorExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { BCMPricingCalculatorServiceException } from "./models/BCMPricingCalculatorServiceException";
|