@aws-sdk/client-billingconductor 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/Billingconductor.js +129 -122
- package/dist-es/BillingconductorClient.js +28 -22
- package/dist-es/commands/AssociateAccountsCommand.js +28 -21
- package/dist-es/commands/AssociatePricingRulesCommand.js +28 -21
- package/dist-es/commands/BatchAssociateResourcesToCustomLineItemCommand.js +28 -21
- package/dist-es/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +28 -21
- package/dist-es/commands/CreateBillingGroupCommand.js +28 -21
- package/dist-es/commands/CreateCustomLineItemCommand.js +28 -21
- package/dist-es/commands/CreatePricingPlanCommand.js +28 -21
- package/dist-es/commands/CreatePricingRuleCommand.js +28 -21
- package/dist-es/commands/DeleteBillingGroupCommand.js +28 -21
- package/dist-es/commands/DeleteCustomLineItemCommand.js +28 -21
- package/dist-es/commands/DeletePricingPlanCommand.js +28 -21
- package/dist-es/commands/DeletePricingRuleCommand.js +28 -21
- package/dist-es/commands/DisassociateAccountsCommand.js +28 -21
- package/dist-es/commands/DisassociatePricingRulesCommand.js +28 -21
- package/dist-es/commands/ListAccountAssociationsCommand.js +28 -21
- package/dist-es/commands/ListBillingGroupCostReportsCommand.js +28 -21
- package/dist-es/commands/ListBillingGroupsCommand.js +28 -21
- package/dist-es/commands/ListCustomLineItemsCommand.js +28 -21
- package/dist-es/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +28 -21
- package/dist-es/commands/ListPricingPlansCommand.js +28 -21
- package/dist-es/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +28 -21
- package/dist-es/commands/ListPricingRulesCommand.js +28 -21
- package/dist-es/commands/ListResourcesAssociatedToCustomLineItemCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateBillingGroupCommand.js +28 -21
- package/dist-es/commands/UpdateCustomLineItemCommand.js +28 -21
- package/dist-es/commands/UpdatePricingPlanCommand.js +28 -21
- package/dist-es/commands/UpdatePricingRuleCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/BillingconductorServiceException.js +10 -5
- package/dist-es/models/models_0.js +197 -417
- package/dist-es/pagination/ListAccountAssociationsPaginator.js +67 -24
- package/dist-es/pagination/ListBillingGroupCostReportsPaginator.js +68 -25
- package/dist-es/pagination/ListBillingGroupsPaginator.js +68 -25
- package/dist-es/pagination/ListCustomLineItemsPaginator.js +68 -25
- package/dist-es/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +68 -25
- package/dist-es/pagination/ListPricingPlansPaginator.js +68 -25
- package/dist-es/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +68 -25
- package/dist-es/pagination/ListPricingRulesPaginator.js +68 -25
- package/dist-es/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3363 -2512
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,93 +1,94 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
14
13
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
17
|
+
var ConflictException = (function (_super) {
|
|
18
|
+
__extends(ConflictException, _super);
|
|
19
|
+
function ConflictException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
21
|
+
_this.name = "ConflictException";
|
|
22
|
+
_this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
24
|
+
_this.Message = opts.Message;
|
|
25
|
+
_this.ResourceId = opts.ResourceId;
|
|
26
|
+
_this.ResourceType = opts.ResourceType;
|
|
27
|
+
return _this;
|
|
29
28
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
29
|
+
return ConflictException;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { ConflictException };
|
|
32
|
+
var InternalServerException = (function (_super) {
|
|
33
|
+
__extends(InternalServerException, _super);
|
|
34
|
+
function InternalServerException(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
36
|
+
_this.name = "InternalServerException";
|
|
37
|
+
_this.$fault = "server";
|
|
38
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
39
|
+
_this.Message = opts.Message;
|
|
40
|
+
_this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
41
|
+
return _this;
|
|
43
42
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
43
|
+
return InternalServerException;
|
|
44
|
+
}(__BaseException));
|
|
45
|
+
export { InternalServerException };
|
|
46
|
+
var ResourceNotFoundException = (function (_super) {
|
|
47
|
+
__extends(ResourceNotFoundException, _super);
|
|
48
|
+
function ResourceNotFoundException(opts) {
|
|
49
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
50
|
+
_this.name = "ResourceNotFoundException";
|
|
51
|
+
_this.$fault = "client";
|
|
52
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
53
|
+
_this.Message = opts.Message;
|
|
54
|
+
_this.ResourceId = opts.ResourceId;
|
|
55
|
+
_this.ResourceType = opts.ResourceType;
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
58
|
+
return ResourceNotFoundException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { ResourceNotFoundException };
|
|
61
|
+
var ServiceLimitExceededException = (function (_super) {
|
|
62
|
+
__extends(ServiceLimitExceededException, _super);
|
|
63
|
+
function ServiceLimitExceededException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "ServiceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "ServiceLimitExceededException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(_this, ServiceLimitExceededException.prototype);
|
|
68
|
+
_this.Message = opts.Message;
|
|
69
|
+
_this.ResourceId = opts.ResourceId;
|
|
70
|
+
_this.ResourceType = opts.ResourceType;
|
|
71
|
+
_this.LimitCode = opts.LimitCode;
|
|
72
|
+
_this.ServiceCode = opts.ServiceCode;
|
|
73
|
+
return _this;
|
|
75
74
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
75
|
+
return ServiceLimitExceededException;
|
|
76
|
+
}(__BaseException));
|
|
77
|
+
export { ServiceLimitExceededException };
|
|
78
|
+
var ThrottlingException = (function (_super) {
|
|
79
|
+
__extends(ThrottlingException, _super);
|
|
80
|
+
function ThrottlingException(opts) {
|
|
81
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
82
|
+
_this.name = "ThrottlingException";
|
|
83
|
+
_this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
85
|
+
_this.Message = opts.Message;
|
|
86
|
+
_this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
87
|
+
return _this;
|
|
89
88
|
}
|
|
90
|
-
|
|
89
|
+
return ThrottlingException;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { ThrottlingException };
|
|
91
92
|
export var ValidationExceptionReason;
|
|
92
93
|
(function (ValidationExceptionReason) {
|
|
93
94
|
ValidationExceptionReason["ACCOUNTS_ALREADY_ASSOCIATED"] = "ACCOUNTS_ALREADY_ASSOCIATED";
|
|
@@ -135,21 +136,21 @@ export var ValidationExceptionReason;
|
|
|
135
136
|
ValidationExceptionReason["TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST"] = "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST";
|
|
136
137
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "UNKNOWN_OPERATION";
|
|
137
138
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
this.Reason = opts.Reason;
|
|
150
|
-
this.Fields = opts.Fields;
|
|
139
|
+
var ValidationException = (function (_super) {
|
|
140
|
+
__extends(ValidationException, _super);
|
|
141
|
+
function ValidationException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
143
|
+
_this.name = "ValidationException";
|
|
144
|
+
_this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
146
|
+
_this.Message = opts.Message;
|
|
147
|
+
_this.Reason = opts.Reason;
|
|
148
|
+
_this.Fields = opts.Fields;
|
|
149
|
+
return _this;
|
|
151
150
|
}
|
|
152
|
-
|
|
151
|
+
return ValidationException;
|
|
152
|
+
}(__BaseException));
|
|
153
|
+
export { ValidationException };
|
|
153
154
|
export var AssociateResourceErrorReason;
|
|
154
155
|
(function (AssociateResourceErrorReason) {
|
|
155
156
|
AssociateResourceErrorReason["ILLEGAL_CUSTOMLINEITEM"] = "ILLEGAL_CUSTOMLINEITEM";
|
|
@@ -187,324 +188,103 @@ export var PricingRuleType;
|
|
|
187
188
|
PricingRuleType["DISCOUNT"] = "DISCOUNT";
|
|
188
189
|
PricingRuleType["MARKUP"] = "MARKUP";
|
|
189
190
|
})(PricingRuleType || (PricingRuleType = {}));
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
});
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
});
|
|
198
|
-
export
|
|
199
|
-
|
|
200
|
-
});
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
});
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
})
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
});
|
|
213
|
-
export
|
|
214
|
-
|
|
215
|
-
});
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
});
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
});
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
});
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
});
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
});
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
});
|
|
236
|
-
export
|
|
237
|
-
|
|
238
|
-
});
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
});
|
|
242
|
-
export
|
|
243
|
-
|
|
244
|
-
});
|
|
245
|
-
export
|
|
246
|
-
|
|
247
|
-
})
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
});
|
|
253
|
-
export
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
});
|
|
259
|
-
export
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
});
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
});
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
});
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
});
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
});
|
|
278
|
-
export
|
|
279
|
-
|
|
280
|
-
})
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
});
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
});
|
|
287
|
-
export
|
|
288
|
-
|
|
289
|
-
});
|
|
290
|
-
export const CustomLineItemPercentageChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const CustomLineItemChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const CreateCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
299
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
300
|
-
});
|
|
301
|
-
export const CreateCustomLineItemOutputFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const DeleteCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const DeleteCustomLineItemOutputFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const ListCustomLineItemsFilterFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
...(obj.Names && { Names: SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
export const ListCustomLineItemsInputFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
...(obj.Filters && { Filters: ListCustomLineItemsFilterFilterSensitiveLog(obj.Filters) }),
|
|
317
|
-
});
|
|
318
|
-
export const ListCustomLineItemFlatChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const ListCustomLineItemPercentageChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const ListCustomLineItemChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const CustomLineItemListElementFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
330
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
331
|
-
});
|
|
332
|
-
export const ListCustomLineItemsOutputFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
...(obj.CustomLineItems && {
|
|
335
|
-
CustomLineItems: obj.CustomLineItems.map((item) => CustomLineItemListElementFilterSensitiveLog(item)),
|
|
336
|
-
}),
|
|
337
|
-
});
|
|
338
|
-
export const ListResourcesAssociatedToCustomLineItemFilterFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const ListResourcesAssociatedToCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const ListResourcesAssociatedToCustomLineItemResponseElementFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const ListResourcesAssociatedToCustomLineItemOutputFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const UpdateCustomLineItemFlatChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const UpdateCustomLineItemPercentageChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const UpdateCustomLineItemChargeDetailsFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const UpdateCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
362
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
363
|
-
});
|
|
364
|
-
export const UpdateCustomLineItemOutputFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
367
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
368
|
-
});
|
|
369
|
-
export const ListAccountAssociationsFilterFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const ListAccountAssociationsInputFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const ListAccountAssociationsOutputFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
...(obj.LinkedAccounts && {
|
|
378
|
-
LinkedAccounts: obj.LinkedAccounts.map((item) => AccountAssociationsListElementFilterSensitiveLog(item)),
|
|
379
|
-
}),
|
|
380
|
-
});
|
|
381
|
-
export const ListBillingGroupCostReportsFilterFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const ListBillingGroupCostReportsInputFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const BillingGroupCostReportElementFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const ListBillingGroupCostReportsOutputFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const CreatePricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
402
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
403
|
-
});
|
|
404
|
-
export const CreatePricingPlanOutputFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const DeletePricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const DeletePricingPlanOutputFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const DisassociatePricingRulesInputFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const DisassociatePricingRulesOutputFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const ListPricingPlansFilterFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const ListPricingPlansInputFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const PricingPlanListElementFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
428
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
429
|
-
});
|
|
430
|
-
export const ListPricingPlansOutputFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
...(obj.PricingPlans && {
|
|
433
|
-
PricingPlans: obj.PricingPlans.map((item) => PricingPlanListElementFilterSensitiveLog(item)),
|
|
434
|
-
}),
|
|
435
|
-
});
|
|
436
|
-
export const ListPricingPlansAssociatedWithPricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
});
|
|
439
|
-
export const ListPricingPlansAssociatedWithPricingRuleOutputFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
});
|
|
442
|
-
export const UpdatePricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
445
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
446
|
-
});
|
|
447
|
-
export const UpdatePricingPlanOutputFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
450
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
451
|
-
});
|
|
452
|
-
export const CreatePricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
455
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
456
|
-
});
|
|
457
|
-
export const CreatePricingRuleOutputFilterSensitiveLog = (obj) => ({
|
|
458
|
-
...obj,
|
|
459
|
-
});
|
|
460
|
-
export const DeletePricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
});
|
|
463
|
-
export const DeletePricingRuleOutputFilterSensitiveLog = (obj) => ({
|
|
464
|
-
...obj,
|
|
465
|
-
});
|
|
466
|
-
export const ListPricingRulesFilterFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
});
|
|
469
|
-
export const ListPricingRulesInputFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
});
|
|
472
|
-
export const PricingRuleListElementFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
475
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
476
|
-
});
|
|
477
|
-
export const ListPricingRulesOutputFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
...(obj.PricingRules && {
|
|
480
|
-
PricingRules: obj.PricingRules.map((item) => PricingRuleListElementFilterSensitiveLog(item)),
|
|
481
|
-
}),
|
|
482
|
-
});
|
|
483
|
-
export const ListPricingRulesAssociatedToPricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
});
|
|
486
|
-
export const ListPricingRulesAssociatedToPricingPlanOutputFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
});
|
|
489
|
-
export const UpdatePricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
490
|
-
...obj,
|
|
491
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
492
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
493
|
-
});
|
|
494
|
-
export const UpdatePricingRuleOutputFilterSensitiveLog = (obj) => ({
|
|
495
|
-
...obj,
|
|
496
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
497
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
498
|
-
});
|
|
499
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
});
|
|
502
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
});
|
|
505
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
});
|
|
508
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
});
|
|
191
|
+
export var AccountAssociationsListElementFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AccountName && { AccountName: SENSITIVE_STRING })), (obj.AccountEmail && { AccountEmail: SENSITIVE_STRING }))); };
|
|
192
|
+
export var AccountGroupingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var AssociateAccountsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var AssociateAccountsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var AssociatePricingRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var AssociatePricingRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var AssociateResourceErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var AssociateResourceResponseElementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var ComputationPreferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var CreateBillingGroupInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
202
|
+
export var CreateBillingGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var DeleteBillingGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var DeleteBillingGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var DisassociateAccountsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var DisassociateAccountsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var ListBillingGroupsFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var ListBillingGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var BillingGroupListElementFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
210
|
+
export var ListBillingGroupsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.BillingGroups && {
|
|
211
|
+
BillingGroups: obj.BillingGroups.map(function (item) { return BillingGroupListElementFilterSensitiveLog(item); }),
|
|
212
|
+
}))); };
|
|
213
|
+
export var UpdateBillingGroupInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
214
|
+
export var UpdateBillingGroupOutputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
215
|
+
export var CustomLineItemBillingPeriodRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var DisassociateResourceResponseElementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var CustomLineItemFlatChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var CustomLineItemPercentageChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var CustomLineItemChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var CreateCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
225
|
+
export var CreateCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var DeleteCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var DeleteCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var ListCustomLineItemsFilterFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Names && { Names: SENSITIVE_STRING }))); };
|
|
229
|
+
export var ListCustomLineItemsInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Filters && { Filters: ListCustomLineItemsFilterFilterSensitiveLog(obj.Filters) }))); };
|
|
230
|
+
export var ListCustomLineItemFlatChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var ListCustomLineItemPercentageChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var ListCustomLineItemChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var CustomLineItemListElementFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
234
|
+
export var ListCustomLineItemsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.CustomLineItems && {
|
|
235
|
+
CustomLineItems: obj.CustomLineItems.map(function (item) { return CustomLineItemListElementFilterSensitiveLog(item); }),
|
|
236
|
+
}))); };
|
|
237
|
+
export var ListResourcesAssociatedToCustomLineItemFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var ListResourcesAssociatedToCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var ListResourcesAssociatedToCustomLineItemResponseElementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var ListResourcesAssociatedToCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var UpdateCustomLineItemFlatChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var UpdateCustomLineItemPercentageChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var UpdateCustomLineItemChargeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var UpdateCustomLineItemInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
245
|
+
export var UpdateCustomLineItemOutputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
246
|
+
export var ListAccountAssociationsFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var ListAccountAssociationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var ListAccountAssociationsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.LinkedAccounts && {
|
|
249
|
+
LinkedAccounts: obj.LinkedAccounts.map(function (item) { return AccountAssociationsListElementFilterSensitiveLog(item); }),
|
|
250
|
+
}))); };
|
|
251
|
+
export var ListBillingGroupCostReportsFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var ListBillingGroupCostReportsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var BillingGroupCostReportElementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var ListBillingGroupCostReportsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var CreatePricingPlanInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
258
|
+
export var CreatePricingPlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var DeletePricingPlanInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var DeletePricingPlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var DisassociatePricingRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var DisassociatePricingRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var ListPricingPlansFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var ListPricingPlansInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var PricingPlanListElementFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
266
|
+
export var ListPricingPlansOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PricingPlans && {
|
|
267
|
+
PricingPlans: obj.PricingPlans.map(function (item) { return PricingPlanListElementFilterSensitiveLog(item); }),
|
|
268
|
+
}))); };
|
|
269
|
+
export var ListPricingPlansAssociatedWithPricingRuleInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var ListPricingPlansAssociatedWithPricingRuleOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var UpdatePricingPlanInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
272
|
+
export var UpdatePricingPlanOutputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
273
|
+
export var CreatePricingRuleInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
274
|
+
export var CreatePricingRuleOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var DeletePricingRuleInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var DeletePricingRuleOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var ListPricingRulesFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var ListPricingRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var PricingRuleListElementFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
280
|
+
export var ListPricingRulesOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PricingRules && {
|
|
281
|
+
PricingRules: obj.PricingRules.map(function (item) { return PricingRuleListElementFilterSensitiveLog(item); }),
|
|
282
|
+
}))); };
|
|
283
|
+
export var ListPricingRulesAssociatedToPricingPlanInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var ListPricingRulesAssociatedToPricingPlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var UpdatePricingRuleInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
286
|
+
export var UpdatePricingRuleOutputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
287
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|