@aws-sdk/client-billingconductor 3.987.0 → 3.988.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 CHANGED
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var BillingconductorServiceException = require('./models/BillingconductorServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,1191 +113,6 @@ class BillingconductorClient extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class BillingconductorServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, BillingconductorServiceException.prototype);
117
- }
118
- }
119
-
120
- class AccessDeniedException extends BillingconductorServiceException {
121
- name = "AccessDeniedException";
122
- $fault = "client";
123
- Message;
124
- constructor(opts) {
125
- super({
126
- name: "AccessDeniedException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
- this.Message = opts.Message;
132
- }
133
- }
134
- class ConflictException extends BillingconductorServiceException {
135
- name = "ConflictException";
136
- $fault = "client";
137
- Message;
138
- ResourceId;
139
- ResourceType;
140
- Reason;
141
- constructor(opts) {
142
- super({
143
- name: "ConflictException",
144
- $fault: "client",
145
- ...opts,
146
- });
147
- Object.setPrototypeOf(this, ConflictException.prototype);
148
- this.Message = opts.Message;
149
- this.ResourceId = opts.ResourceId;
150
- this.ResourceType = opts.ResourceType;
151
- this.Reason = opts.Reason;
152
- }
153
- }
154
- class InternalServerException extends BillingconductorServiceException {
155
- name = "InternalServerException";
156
- $fault = "server";
157
- Message;
158
- RetryAfterSeconds;
159
- constructor(opts) {
160
- super({
161
- name: "InternalServerException",
162
- $fault: "server",
163
- ...opts,
164
- });
165
- Object.setPrototypeOf(this, InternalServerException.prototype);
166
- this.Message = opts.Message;
167
- this.RetryAfterSeconds = opts.RetryAfterSeconds;
168
- }
169
- }
170
- class ResourceNotFoundException extends BillingconductorServiceException {
171
- name = "ResourceNotFoundException";
172
- $fault = "client";
173
- Message;
174
- ResourceId;
175
- ResourceType;
176
- constructor(opts) {
177
- super({
178
- name: "ResourceNotFoundException",
179
- $fault: "client",
180
- ...opts,
181
- });
182
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
183
- this.Message = opts.Message;
184
- this.ResourceId = opts.ResourceId;
185
- this.ResourceType = opts.ResourceType;
186
- }
187
- }
188
- class ServiceLimitExceededException extends BillingconductorServiceException {
189
- name = "ServiceLimitExceededException";
190
- $fault = "client";
191
- Message;
192
- ResourceId;
193
- ResourceType;
194
- LimitCode;
195
- ServiceCode;
196
- constructor(opts) {
197
- super({
198
- name: "ServiceLimitExceededException",
199
- $fault: "client",
200
- ...opts,
201
- });
202
- Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
203
- this.Message = opts.Message;
204
- this.ResourceId = opts.ResourceId;
205
- this.ResourceType = opts.ResourceType;
206
- this.LimitCode = opts.LimitCode;
207
- this.ServiceCode = opts.ServiceCode;
208
- }
209
- }
210
- class ThrottlingException extends BillingconductorServiceException {
211
- name = "ThrottlingException";
212
- $fault = "client";
213
- Message;
214
- RetryAfterSeconds;
215
- constructor(opts) {
216
- super({
217
- name: "ThrottlingException",
218
- $fault: "client",
219
- ...opts,
220
- });
221
- Object.setPrototypeOf(this, ThrottlingException.prototype);
222
- this.Message = opts.Message;
223
- this.RetryAfterSeconds = opts.RetryAfterSeconds;
224
- }
225
- }
226
- class ValidationException extends BillingconductorServiceException {
227
- name = "ValidationException";
228
- $fault = "client";
229
- Message;
230
- Reason;
231
- Fields;
232
- constructor(opts) {
233
- super({
234
- name: "ValidationException",
235
- $fault: "client",
236
- ...opts,
237
- });
238
- Object.setPrototypeOf(this, ValidationException.prototype);
239
- this.Message = opts.Message;
240
- this.Reason = opts.Reason;
241
- this.Fields = opts.Fields;
242
- }
243
- }
244
-
245
- const _A = "Arn";
246
- const _AA = "AutoAssociate";
247
- const _AAI = "AssociateAccountsInput";
248
- const _AAL = "AccountAssociationsList";
249
- const _AALE = "AccountAssociationsListElement";
250
- const _AAO = "AssociateAccountsOutput";
251
- const _AAs = "AssociateAccounts";
252
- const _ADE = "AccessDeniedException";
253
- const _AE = "AccountEmail";
254
- const _AG = "AccountGrouping";
255
- const _AI = "AccountId";
256
- const _AIc = "AccountIds";
257
- const _AL = "AttributesList";
258
- const _AN = "AccountName";
259
- const _APPC = "AssociatedPricingPlanCount";
260
- const _APR = "AssociatePricingRules";
261
- const _APRI = "AssociatePricingRulesInput";
262
- const _APRO = "AssociatePricingRulesOutput";
263
- const _AR = "AssociatedResources";
264
- const _ARE = "AssociateResourceError";
265
- const _ARRE = "AssociateResourceResponseElement";
266
- const _ARRL = "AssociateResourcesResponseList";
267
- const _AS = "AssociationSize";
268
- const _AV = "AssociatedValues";
269
- const _AVt = "AttributeValues";
270
- const _AWSC = "AWSCost";
271
- const _Ac = "Activated";
272
- const _Ar = "Arns";
273
- const _As = "Association";
274
- const _At = "Attribute";
275
- const _Att = "Attributes";
276
- const _BARTCLI = "BatchAssociateResourcesToCustomLineItem";
277
- const _BARTCLII = "BatchAssociateResourcesToCustomLineItemInput";
278
- const _BARTCLIO = "BatchAssociateResourcesToCustomLineItemOutput";
279
- const _BDRFCLI = "BatchDisassociateResourcesFromCustomLineItem";
280
- const _BDRFCLII = "BatchDisassociateResourcesFromCustomLineItemInput";
281
- const _BDRFCLIO = "BatchDisassociateResourcesFromCustomLineItemOutput";
282
- const _BE = "BillingEntity";
283
- const _BG = "BillingGroups";
284
- const _BGA = "BillingGroupArn";
285
- const _BGAi = "BillingGroupArns";
286
- const _BGCR = "BillingGroupCostReports";
287
- const _BGCRE = "BillingGroupCostReportElement";
288
- const _BGCRL = "BillingGroupCostReportList";
289
- const _BGCRR = "BillingGroupCostReportResults";
290
- const _BGCRRE = "BillingGroupCostReportResultElement";
291
- const _BGCRRL = "BillingGroupCostReportResultsList";
292
- const _BGD = "BillingGroupDescription";
293
- const _BGL = "BillingGroupList";
294
- const _BGLE = "BillingGroupListElement";
295
- const _BGN = "BillingGroupName";
296
- const _BGT = "BillingGroupType";
297
- const _BGTi = "BillingGroupTypes";
298
- const _BP = "BillingPeriod";
299
- const _BPR = "BillingPeriodRange";
300
- const _C = "Currency";
301
- const _CBG = "CreateBillingGroup";
302
- const _CBGI = "CreateBillingGroupInput";
303
- const _CBGO = "CreateBillingGroupOutput";
304
- const _CC = "CurrencyCode";
305
- const _CCLI = "CreateCustomLineItem";
306
- const _CCLII = "CreateCustomLineItemInput";
307
- const _CCLIO = "CreateCustomLineItemOutput";
308
- const _CD = "ChargeDetails";
309
- const _CE = "ConflictException";
310
- const _CFTC = "CreateFreeTierConfig";
311
- const _CLI = "CustomLineItems";
312
- const _CLIBPR = "CustomLineItemBillingPeriodRange";
313
- const _CLICD = "CustomLineItemChargeDetails";
314
- const _CLID = "CustomLineItemDescription";
315
- const _CLIFCD = "CustomLineItemFlatChargeDetails";
316
- const _CLIL = "CustomLineItemList";
317
- const _CLILE = "CustomLineItemListElement";
318
- const _CLIN = "CustomLineItemName";
319
- const _CLINL = "CustomLineItemNameList";
320
- const _CLIPCD = "CustomLineItemPercentageChargeDetails";
321
- const _CLIV = "CustomLineItemVersions";
322
- const _CLIVL = "CustomLineItemVersionList";
323
- const _CLIVLE = "CustomLineItemVersionListElement";
324
- const _CP = "ComputationPreference";
325
- const _CPP = "CreatePricingPlan";
326
- const _CPPI = "CreatePricingPlanInput";
327
- const _CPPO = "CreatePricingPlanOutput";
328
- const _CPR = "CreatePricingRule";
329
- const _CPRI = "CreatePricingRuleInput";
330
- const _CPRO = "CreatePricingRuleOutput";
331
- const _CR = "ComputationRule";
332
- const _CT = "CreationTime";
333
- const _CTI = "CreateTieringInput";
334
- const _CTl = "ClientToken";
335
- const _CV = "ChargeValue";
336
- const _D = "Description";
337
- const _DA = "DisassociateAccounts";
338
- const _DAI = "DisassociateAccountsInput";
339
- const _DAO = "DisassociateAccountsOutput";
340
- const _DBG = "DeleteBillingGroup";
341
- const _DBGI = "DeleteBillingGroupInput";
342
- const _DBGO = "DeleteBillingGroupOutput";
343
- const _DCLI = "DeleteCustomLineItem";
344
- const _DCLII = "DeleteCustomLineItemInput";
345
- const _DCLIO = "DeleteCustomLineItemOutput";
346
- const _DPP = "DeletePricingPlan";
347
- const _DPPI = "DeletePricingPlanInput";
348
- const _DPPO = "DeletePricingPlanOutput";
349
- const _DPR = "DeletePricingRule";
350
- const _DPRI = "DeletePricingRuleInput";
351
- const _DPRIi = "DisassociatePricingRulesInput";
352
- const _DPRO = "DeletePricingRuleOutput";
353
- const _DPROi = "DisassociatePricingRulesOutput";
354
- const _DPRi = "DisassociatePricingRules";
355
- const _DRRE = "DisassociateResourceResponseElement";
356
- const _DRRL = "DisassociateResourcesResponseList";
357
- const _E = "Error";
358
- const _EBP = "EndBillingPeriod";
359
- const _EEBP = "ExclusiveEndBillingPeriod";
360
- const _F = "Flat";
361
- const _FAR = "FailedAssociatedResources";
362
- const _FDR = "FailedDisassociatedResources";
363
- const _FT = "FreeTier";
364
- const _FTC = "FreeTierConfig";
365
- const _Fi = "Filters";
366
- const _Fie = "Fields";
367
- const _GB = "GroupBy";
368
- const _GBGCR = "GetBillingGroupCostReport";
369
- const _GBGCRI = "GetBillingGroupCostReportInput";
370
- const _GBGCRO = "GetBillingGroupCostReportOutput";
371
- const _ISBP = "InclusiveStartBillingPeriod";
372
- const _ISE = "InternalServerException";
373
- const _K = "Key";
374
- const _LA = "LinkedAccounts";
375
- const _LAA = "ListAccountAssociations";
376
- const _LAAF = "ListAccountAssociationsFilter";
377
- const _LAAI = "ListAccountAssociationsInput";
378
- const _LAAO = "ListAccountAssociationsOutput";
379
- const _LAI = "LinkedAccountIds";
380
- const _LBG = "ListBillingGroups";
381
- const _LBGAG = "ListBillingGroupAccountGrouping";
382
- const _LBGCR = "ListBillingGroupCostReports";
383
- const _LBGCRF = "ListBillingGroupCostReportsFilter";
384
- const _LBGCRI = "ListBillingGroupCostReportsInput";
385
- const _LBGCRO = "ListBillingGroupCostReportsOutput";
386
- const _LBGF = "ListBillingGroupsFilter";
387
- const _LBGI = "ListBillingGroupsInput";
388
- const _LBGO = "ListBillingGroupsOutput";
389
- const _LC = "LimitCode";
390
- const _LCLI = "ListCustomLineItems";
391
- const _LCLICD = "ListCustomLineItemChargeDetails";
392
- const _LCLIF = "ListCustomLineItemsFilter";
393
- const _LCLIFCD = "ListCustomLineItemFlatChargeDetails";
394
- const _LCLII = "ListCustomLineItemsInput";
395
- const _LCLIO = "ListCustomLineItemsOutput";
396
- const _LCLIPCD = "ListCustomLineItemPercentageChargeDetails";
397
- const _LCLIV = "ListCustomLineItemVersions";
398
- const _LCLIVBPRF = "ListCustomLineItemVersionsBillingPeriodRangeFilter";
399
- const _LCLIVF = "ListCustomLineItemVersionsFilter";
400
- const _LCLIVI = "ListCustomLineItemVersionsInput";
401
- const _LCLIVO = "ListCustomLineItemVersionsOutput";
402
- const _LIF = "LineItemFilters";
403
- const _LIFL = "LineItemFiltersList";
404
- const _LIFi = "LineItemFilter";
405
- const _LMT = "LastModifiedTime";
406
- const _LPP = "ListPricingPlans";
407
- const _LPPAWPR = "ListPricingPlansAssociatedWithPricingRule";
408
- const _LPPAWPRI = "ListPricingPlansAssociatedWithPricingRuleInput";
409
- const _LPPAWPRO = "ListPricingPlansAssociatedWithPricingRuleOutput";
410
- const _LPPF = "ListPricingPlansFilter";
411
- const _LPPI = "ListPricingPlansInput";
412
- const _LPPO = "ListPricingPlansOutput";
413
- const _LPR = "ListPricingRules";
414
- const _LPRATPP = "ListPricingRulesAssociatedToPricingPlan";
415
- const _LPRATPPI = "ListPricingRulesAssociatedToPricingPlanInput";
416
- const _LPRATPPO = "ListPricingRulesAssociatedToPricingPlanOutput";
417
- const _LPRF = "ListPricingRulesFilter";
418
- const _LPRI = "ListPricingRulesInput";
419
- const _LPRO = "ListPricingRulesOutput";
420
- const _LRATCLI = "ListResourcesAssociatedToCustomLineItem";
421
- const _LRATCLIF = "ListResourcesAssociatedToCustomLineItemFilter";
422
- const _LRATCLII = "ListResourcesAssociatedToCustomLineItemInput";
423
- const _LRATCLIO = "ListResourcesAssociatedToCustomLineItemOutput";
424
- const _LRATCLIRE = "ListResourcesAssociatedToCustomLineItemResponseElement";
425
- const _LRATCLIRL = "ListResourcesAssociatedToCustomLineItemResponseList";
426
- const _LTFR = "ListTagsForResource";
427
- const _LTFRR = "ListTagsForResourceRequest";
428
- const _LTFRRi = "ListTagsForResourceResponse";
429
- const _M = "Message";
430
- const _MO = "MatchOption";
431
- const _MP = "MarginPercentage";
432
- const _MPo = "ModifierPercentage";
433
- const _MR = "MaxResults";
434
- const _Ma = "Margin";
435
- const _N = "Name";
436
- const _NT = "NextToken";
437
- const _Na = "Names";
438
- const _O = "Operation";
439
- const _P = "Percentage";
440
- const _PAI = "PrimaryAccountId";
441
- const _PAIr = "PrimaryAccountIds";
442
- const _PC = "ProformaCost";
443
- const _PCr = "ProductCode";
444
- const _PD = "PresentationDetails";
445
- const _PO = "PresentationObject";
446
- const _PP = "PricingPlan";
447
- const _PPA = "PricingPlanArn";
448
- const _PPAr = "PricingPlanArns";
449
- const _PPD = "PricingPlanDescription";
450
- const _PPL = "PricingPlanList";
451
- const _PPLE = "PricingPlanListElement";
452
- const _PPN = "PricingPlanName";
453
- const _PPr = "PricingPlans";
454
- const _PR = "PricingRules";
455
- const _PRA = "PricingRuleArns";
456
- const _PRAr = "PricingRuleArn";
457
- const _PRD = "PricingRuleDescription";
458
- const _PRL = "PricingRuleList";
459
- const _PRLE = "PricingRuleListElement";
460
- const _PRN = "PricingRuleName";
461
- const _PV = "PercentageValue";
462
- const _R = "Reason";
463
- const _RA = "ResourceArns";
464
- const _RAS = "RetryAfterSeconds";
465
- const _RA_ = "Retry-After";
466
- const _RAe = "ResourceArn";
467
- const _RI = "ResourceId";
468
- const _RNFE = "ResourceNotFoundException";
469
- const _RT = "ResourceType";
470
- const _RTA = "ResponsibilityTransferArn";
471
- const _RTAe = "ResponsibilityTransferArns";
472
- const _Re = "Relationship";
473
- const _S = "Size";
474
- const _SAR = "SuccessfullyAssociatedResources";
475
- const _SBP = "StartBillingPeriod";
476
- const _SC = "ServiceCode";
477
- const _SDR = "SuccessfullyDisassociatedResources";
478
- const _SLEE = "ServiceLimitExceededException";
479
- const _SO = "SearchOption";
480
- const _SR = "StatusReason";
481
- const _SS = "StringSearch";
482
- const _SSt = "StringSearches";
483
- const _ST = "StartTime";
484
- const _SV = "SearchValue";
485
- const _Sc = "Scope";
486
- const _Se = "Service";
487
- const _St = "Status";
488
- const _Sta = "Statuses";
489
- const _T = "Tags";
490
- const _TA = "TargetArn";
491
- const _TE = "ThrottlingException";
492
- const _TK = "TagKeys";
493
- const _TR = "TagResource";
494
- const _TRR = "TagResourceRequest";
495
- const _TRRa = "TagResourceResponse";
496
- const _Ti = "Tiering";
497
- const _Ty = "Type";
498
- const _UBG = "UpdateBillingGroup";
499
- const _UBGAG = "UpdateBillingGroupAccountGrouping";
500
- const _UBGI = "UpdateBillingGroupInput";
501
- const _UBGO = "UpdateBillingGroupOutput";
502
- const _UCLI = "UpdateCustomLineItem";
503
- const _UCLICD = "UpdateCustomLineItemChargeDetails";
504
- const _UCLIFCD = "UpdateCustomLineItemFlatChargeDetails";
505
- const _UCLII = "UpdateCustomLineItemInput";
506
- const _UCLIO = "UpdateCustomLineItemOutput";
507
- const _UCLIPCD = "UpdateCustomLineItemPercentageChargeDetails";
508
- const _UFTC = "UpdateFreeTierConfig";
509
- const _UPP = "UpdatePricingPlan";
510
- const _UPPI = "UpdatePricingPlanInput";
511
- const _UPPO = "UpdatePricingPlanOutput";
512
- const _UPR = "UpdatePricingRule";
513
- const _UPRI = "UpdatePricingRuleInput";
514
- const _UPRO = "UpdatePricingRuleOutput";
515
- const _UR = "UntagResource";
516
- const _URR = "UntagResourceRequest";
517
- const _URRn = "UntagResourceResponse";
518
- const _UT = "UsageType";
519
- const _UTI = "UpdateTieringInput";
520
- const _V = "Value";
521
- const _VE = "ValidationException";
522
- const _VEF = "ValidationExceptionField";
523
- const _VEFL = "ValidationExceptionFieldList";
524
- const _Va = "Values";
525
- const _XACT = "X-Amzn-Client-Token";
526
- const _c = "client";
527
- const _e = "error";
528
- const _h = "http";
529
- const _hE = "httpError";
530
- const _hH = "httpHeader";
531
- const _hQ = "httpQuery";
532
- const _iT = "idempotencyToken";
533
- const _s = "server";
534
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.billingconductor";
535
- const _tK = "tagKeys";
536
- const n0 = "com.amazonaws.billingconductor";
537
- var AccountEmail = [0, n0, _AE, 8, 0];
538
- var AccountName = [0, n0, _AN, 8, 0];
539
- var BillingGroupDescription = [0, n0, _BGD, 8, 0];
540
- var BillingGroupName = [0, n0, _BGN, 8, 0];
541
- var CustomLineItemDescription = [0, n0, _CLID, 8, 0];
542
- var CustomLineItemName = [0, n0, _CLIN, 8, 0];
543
- var PricingPlanDescription = [0, n0, _PPD, 8, 0];
544
- var PricingPlanName = [0, n0, _PPN, 8, 0];
545
- var PricingRuleDescription = [0, n0, _PRD, 8, 0];
546
- var PricingRuleName = [0, n0, _PRN, 8, 0];
547
- var AccessDeniedException$ = [-3, n0, _ADE,
548
- { [_e]: _c, [_hE]: 403 },
549
- [_M],
550
- [0], 1
551
- ];
552
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
553
- var AccountAssociationsListElement$ = [3, n0, _AALE,
554
- 0,
555
- [_AI, _BGA, _AN, _AE],
556
- [0, 0, [() => AccountName, 0], [() => AccountEmail, 0]]
557
- ];
558
- var AccountGrouping$ = [3, n0, _AG,
559
- 0,
560
- [_LAI, _AA, _RTA],
561
- [64 | 0, 2, 0]
562
- ];
563
- var AssociateAccountsInput$ = [3, n0, _AAI,
564
- 0,
565
- [_A, _AIc],
566
- [0, 64 | 0], 2
567
- ];
568
- var AssociateAccountsOutput$ = [3, n0, _AAO,
569
- 0,
570
- [_A],
571
- [0]
572
- ];
573
- var AssociatePricingRulesInput$ = [3, n0, _APRI,
574
- 0,
575
- [_A, _PRA],
576
- [0, 64 | 0], 2
577
- ];
578
- var AssociatePricingRulesOutput$ = [3, n0, _APRO,
579
- 0,
580
- [_A],
581
- [0]
582
- ];
583
- var AssociateResourceError$ = [3, n0, _ARE,
584
- 0,
585
- [_M, _R],
586
- [0, 0]
587
- ];
588
- var AssociateResourceResponseElement$ = [3, n0, _ARRE,
589
- 0,
590
- [_A, _E],
591
- [0, () => AssociateResourceError$]
592
- ];
593
- var Attribute$ = [3, n0, _At,
594
- 0,
595
- [_K, _V],
596
- [0, 0]
597
- ];
598
- var BatchAssociateResourcesToCustomLineItemInput$ = [3, n0, _BARTCLII,
599
- 0,
600
- [_TA, _RA, _BPR],
601
- [0, 64 | 0, () => CustomLineItemBillingPeriodRange$], 2
602
- ];
603
- var BatchAssociateResourcesToCustomLineItemOutput$ = [3, n0, _BARTCLIO,
604
- 0,
605
- [_SAR, _FAR],
606
- [() => AssociateResourcesResponseList, () => AssociateResourcesResponseList]
607
- ];
608
- var BatchDisassociateResourcesFromCustomLineItemInput$ = [3, n0, _BDRFCLII,
609
- 0,
610
- [_TA, _RA, _BPR],
611
- [0, 64 | 0, () => CustomLineItemBillingPeriodRange$], 2
612
- ];
613
- var BatchDisassociateResourcesFromCustomLineItemOutput$ = [3, n0, _BDRFCLIO,
614
- 0,
615
- [_SDR, _FDR],
616
- [() => DisassociateResourcesResponseList, () => DisassociateResourcesResponseList]
617
- ];
618
- var BillingGroupCostReportElement$ = [3, n0, _BGCRE,
619
- 0,
620
- [_A, _AWSC, _PC, _Ma, _MP, _C],
621
- [0, 0, 0, 0, 0, 0]
622
- ];
623
- var BillingGroupCostReportResultElement$ = [3, n0, _BGCRRE,
624
- 0,
625
- [_A, _AWSC, _PC, _Ma, _MP, _C, _Att],
626
- [0, 0, 0, 0, 0, 0, () => AttributesList]
627
- ];
628
- var BillingGroupListElement$ = [3, n0, _BGLE,
629
- 0,
630
- [_N, _A, _D, _PAI, _CP, _S, _CT, _LMT, _St, _SR, _AG, _BGT],
631
- [[() => BillingGroupName, 0], 0, [() => BillingGroupDescription, 0], 0, () => ComputationPreference$, 1, 1, 1, 0, 0, () => ListBillingGroupAccountGrouping$, 0]
632
- ];
633
- var BillingPeriodRange$ = [3, n0, _BPR,
634
- 0,
635
- [_ISBP, _EEBP],
636
- [0, 0], 2
637
- ];
638
- var ComputationPreference$ = [3, n0, _CP,
639
- 0,
640
- [_PPA],
641
- [0], 1
642
- ];
643
- var ConflictException$ = [-3, n0, _CE,
644
- { [_e]: _c, [_hE]: 409 },
645
- [_M, _RI, _RT, _R],
646
- [0, 0, 0, 0], 3
647
- ];
648
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
649
- var CreateBillingGroupInput$ = [3, n0, _CBGI,
650
- 0,
651
- [_N, _AG, _CP, _CTl, _PAI, _D, _T],
652
- [[() => BillingGroupName, 0], () => AccountGrouping$, () => ComputationPreference$, [0, { [_hH]: _XACT, [_iT]: 1 }], 0, [() => BillingGroupDescription, 0], 128 | 0], 3
653
- ];
654
- var CreateBillingGroupOutput$ = [3, n0, _CBGO,
655
- 0,
656
- [_A],
657
- [0]
658
- ];
659
- var CreateCustomLineItemInput$ = [3, n0, _CCLII,
660
- 0,
661
- [_N, _D, _BGA, _CD, _CTl, _BPR, _T, _AI, _CR, _PD],
662
- [[() => CustomLineItemName, 0], [() => CustomLineItemDescription, 0], 0, () => CustomLineItemChargeDetails$, [0, { [_hH]: _XACT, [_iT]: 1 }], () => CustomLineItemBillingPeriodRange$, 128 | 0, 0, 0, () => PresentationObject$], 4
663
- ];
664
- var CreateCustomLineItemOutput$ = [3, n0, _CCLIO,
665
- 0,
666
- [_A],
667
- [0]
668
- ];
669
- var CreateFreeTierConfig$ = [3, n0, _CFTC,
670
- 0,
671
- [_Ac],
672
- [2], 1
673
- ];
674
- var CreatePricingPlanInput$ = [3, n0, _CPPI,
675
- 0,
676
- [_N, _CTl, _D, _PRA, _T],
677
- [[() => PricingPlanName, 0], [0, { [_hH]: _XACT, [_iT]: 1 }], [() => PricingPlanDescription, 0], 64 | 0, 128 | 0], 1
678
- ];
679
- var CreatePricingPlanOutput$ = [3, n0, _CPPO,
680
- 0,
681
- [_A],
682
- [0]
683
- ];
684
- var CreatePricingRuleInput$ = [3, n0, _CPRI,
685
- 0,
686
- [_N, _Sc, _Ty, _CTl, _D, _MPo, _Se, _T, _BE, _Ti, _UT, _O],
687
- [[() => PricingRuleName, 0], 0, 0, [0, { [_hH]: _XACT, [_iT]: 1 }], [() => PricingRuleDescription, 0], 1, 0, 128 | 0, 0, () => CreateTieringInput$, 0, 0], 3
688
- ];
689
- var CreatePricingRuleOutput$ = [3, n0, _CPRO,
690
- 0,
691
- [_A],
692
- [0]
693
- ];
694
- var CreateTieringInput$ = [3, n0, _CTI,
695
- 0,
696
- [_FT],
697
- [() => CreateFreeTierConfig$], 1
698
- ];
699
- var CustomLineItemBillingPeriodRange$ = [3, n0, _CLIBPR,
700
- 0,
701
- [_ISBP, _EEBP],
702
- [0, 0], 1
703
- ];
704
- var CustomLineItemChargeDetails$ = [3, n0, _CLICD,
705
- 0,
706
- [_Ty, _F, _P, _LIF],
707
- [0, () => CustomLineItemFlatChargeDetails$, () => CustomLineItemPercentageChargeDetails$, () => LineItemFiltersList], 1
708
- ];
709
- var CustomLineItemFlatChargeDetails$ = [3, n0, _CLIFCD,
710
- 0,
711
- [_CV],
712
- [1], 1
713
- ];
714
- var CustomLineItemListElement$ = [3, n0, _CLILE,
715
- 0,
716
- [_A, _N, _CD, _CC, _D, _PCr, _BGA, _CT, _LMT, _AS, _AI, _CR, _PD],
717
- [0, [() => CustomLineItemName, 0], () => ListCustomLineItemChargeDetails$, 0, [() => CustomLineItemDescription, 0], 0, 0, 1, 1, 1, 0, 0, () => PresentationObject$]
718
- ];
719
- var CustomLineItemPercentageChargeDetails$ = [3, n0, _CLIPCD,
720
- 0,
721
- [_PV, _AV],
722
- [1, 64 | 0], 1
723
- ];
724
- var CustomLineItemVersionListElement$ = [3, n0, _CLIVLE,
725
- 0,
726
- [_N, _CD, _CC, _D, _PCr, _BGA, _CT, _LMT, _AS, _SBP, _EBP, _A, _ST, _AI, _CR, _PD],
727
- [[() => CustomLineItemName, 0], () => ListCustomLineItemChargeDetails$, 0, [() => CustomLineItemDescription, 0], 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, () => PresentationObject$]
728
- ];
729
- var DeleteBillingGroupInput$ = [3, n0, _DBGI,
730
- 0,
731
- [_A],
732
- [0], 1
733
- ];
734
- var DeleteBillingGroupOutput$ = [3, n0, _DBGO,
735
- 0,
736
- [_A],
737
- [0]
738
- ];
739
- var DeleteCustomLineItemInput$ = [3, n0, _DCLII,
740
- 0,
741
- [_A, _BPR],
742
- [0, () => CustomLineItemBillingPeriodRange$], 1
743
- ];
744
- var DeleteCustomLineItemOutput$ = [3, n0, _DCLIO,
745
- 0,
746
- [_A],
747
- [0]
748
- ];
749
- var DeletePricingPlanInput$ = [3, n0, _DPPI,
750
- 0,
751
- [_A],
752
- [0], 1
753
- ];
754
- var DeletePricingPlanOutput$ = [3, n0, _DPPO,
755
- 0,
756
- [_A],
757
- [0]
758
- ];
759
- var DeletePricingRuleInput$ = [3, n0, _DPRI,
760
- 0,
761
- [_A],
762
- [0], 1
763
- ];
764
- var DeletePricingRuleOutput$ = [3, n0, _DPRO,
765
- 0,
766
- [_A],
767
- [0]
768
- ];
769
- var DisassociateAccountsInput$ = [3, n0, _DAI,
770
- 0,
771
- [_A, _AIc],
772
- [0, 64 | 0], 2
773
- ];
774
- var DisassociateAccountsOutput$ = [3, n0, _DAO,
775
- 0,
776
- [_A],
777
- [0]
778
- ];
779
- var DisassociatePricingRulesInput$ = [3, n0, _DPRIi,
780
- 0,
781
- [_A, _PRA],
782
- [0, 64 | 0], 2
783
- ];
784
- var DisassociatePricingRulesOutput$ = [3, n0, _DPROi,
785
- 0,
786
- [_A],
787
- [0]
788
- ];
789
- var DisassociateResourceResponseElement$ = [3, n0, _DRRE,
790
- 0,
791
- [_A, _E],
792
- [0, () => AssociateResourceError$]
793
- ];
794
- var FreeTierConfig$ = [3, n0, _FTC,
795
- 0,
796
- [_Ac],
797
- [2], 1
798
- ];
799
- var GetBillingGroupCostReportInput$ = [3, n0, _GBGCRI,
800
- 0,
801
- [_A, _BPR, _GB, _MR, _NT],
802
- [0, () => BillingPeriodRange$, 64 | 0, 1, 0], 1
803
- ];
804
- var GetBillingGroupCostReportOutput$ = [3, n0, _GBGCRO,
805
- 0,
806
- [_BGCRR, _NT],
807
- [() => BillingGroupCostReportResultsList, 0]
808
- ];
809
- var InternalServerException$ = [-3, n0, _ISE,
810
- { [_e]: _s, [_hE]: 500 },
811
- [_M, _RAS],
812
- [0, [1, { [_hH]: _RA_ }]], 1
813
- ];
814
- schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
815
- var LineItemFilter$ = [3, n0, _LIFi,
816
- 0,
817
- [_At, _MO, _Va, _AVt],
818
- [0, 0, 64 | 0, 64 | 0], 2
819
- ];
820
- var ListAccountAssociationsFilter$ = [3, n0, _LAAF,
821
- 0,
822
- [_As, _AI, _AIc],
823
- [0, 0, 64 | 0]
824
- ];
825
- var ListAccountAssociationsInput$ = [3, n0, _LAAI,
826
- 0,
827
- [_BP, _Fi, _NT],
828
- [0, () => ListAccountAssociationsFilter$, 0]
829
- ];
830
- var ListAccountAssociationsOutput$ = [3, n0, _LAAO,
831
- 0,
832
- [_LA, _NT],
833
- [[() => AccountAssociationsList, 0], 0]
834
- ];
835
- var ListBillingGroupAccountGrouping$ = [3, n0, _LBGAG,
836
- 0,
837
- [_AA, _RTA],
838
- [2, 0]
839
- ];
840
- var ListBillingGroupCostReportsFilter$ = [3, n0, _LBGCRF,
841
- 0,
842
- [_BGAi],
843
- [64 | 0]
844
- ];
845
- var ListBillingGroupCostReportsInput$ = [3, n0, _LBGCRI,
846
- 0,
847
- [_BP, _MR, _NT, _Fi],
848
- [0, 1, 0, () => ListBillingGroupCostReportsFilter$]
849
- ];
850
- var ListBillingGroupCostReportsOutput$ = [3, n0, _LBGCRO,
851
- 0,
852
- [_BGCR, _NT],
853
- [() => BillingGroupCostReportList, 0]
854
- ];
855
- var ListBillingGroupsFilter$ = [3, n0, _LBGF,
856
- 0,
857
- [_Ar, _PP, _Sta, _AA, _PAIr, _BGTi, _Na, _RTAe],
858
- [64 | 0, 0, 64 | 0, 2, 64 | 0, 64 | 0, () => StringSearches, 64 | 0]
859
- ];
860
- var ListBillingGroupsInput$ = [3, n0, _LBGI,
861
- 0,
862
- [_BP, _MR, _NT, _Fi],
863
- [0, 1, 0, () => ListBillingGroupsFilter$]
864
- ];
865
- var ListBillingGroupsOutput$ = [3, n0, _LBGO,
866
- 0,
867
- [_BG, _NT],
868
- [[() => BillingGroupList, 0], 0]
869
- ];
870
- var ListCustomLineItemChargeDetails$ = [3, n0, _LCLICD,
871
- 0,
872
- [_Ty, _F, _P, _LIF],
873
- [0, () => ListCustomLineItemFlatChargeDetails$, () => ListCustomLineItemPercentageChargeDetails$, () => LineItemFiltersList], 1
874
- ];
875
- var ListCustomLineItemFlatChargeDetails$ = [3, n0, _LCLIFCD,
876
- 0,
877
- [_CV],
878
- [1], 1
879
- ];
880
- var ListCustomLineItemPercentageChargeDetails$ = [3, n0, _LCLIPCD,
881
- 0,
882
- [_PV],
883
- [1], 1
884
- ];
885
- var ListCustomLineItemsFilter$ = [3, n0, _LCLIF,
886
- 0,
887
- [_Na, _BG, _Ar, _AIc],
888
- [[() => CustomLineItemNameList, 0], 64 | 0, 64 | 0, 64 | 0]
889
- ];
890
- var ListCustomLineItemsInput$ = [3, n0, _LCLII,
891
- 0,
892
- [_BP, _MR, _NT, _Fi],
893
- [0, 1, 0, [() => ListCustomLineItemsFilter$, 0]]
894
- ];
895
- var ListCustomLineItemsOutput$ = [3, n0, _LCLIO,
896
- 0,
897
- [_CLI, _NT],
898
- [[() => CustomLineItemList, 0], 0]
899
- ];
900
- var ListCustomLineItemVersionsBillingPeriodRangeFilter$ = [3, n0, _LCLIVBPRF,
901
- 0,
902
- [_SBP, _EBP],
903
- [0, 0]
904
- ];
905
- var ListCustomLineItemVersionsFilter$ = [3, n0, _LCLIVF,
906
- 0,
907
- [_BPR],
908
- [() => ListCustomLineItemVersionsBillingPeriodRangeFilter$]
909
- ];
910
- var ListCustomLineItemVersionsInput$ = [3, n0, _LCLIVI,
911
- 0,
912
- [_A, _MR, _NT, _Fi],
913
- [0, 1, 0, () => ListCustomLineItemVersionsFilter$], 1
914
- ];
915
- var ListCustomLineItemVersionsOutput$ = [3, n0, _LCLIVO,
916
- 0,
917
- [_CLIV, _NT],
918
- [[() => CustomLineItemVersionList, 0], 0]
919
- ];
920
- var ListPricingPlansAssociatedWithPricingRuleInput$ = [3, n0, _LPPAWPRI,
921
- 0,
922
- [_PRAr, _BP, _MR, _NT],
923
- [0, 0, 1, 0], 1
924
- ];
925
- var ListPricingPlansAssociatedWithPricingRuleOutput$ = [3, n0, _LPPAWPRO,
926
- 0,
927
- [_BP, _PRAr, _PPAr, _NT],
928
- [0, 0, 64 | 0, 0]
929
- ];
930
- var ListPricingPlansFilter$ = [3, n0, _LPPF,
931
- 0,
932
- [_Ar],
933
- [64 | 0]
934
- ];
935
- var ListPricingPlansInput$ = [3, n0, _LPPI,
936
- 0,
937
- [_BP, _Fi, _MR, _NT],
938
- [0, () => ListPricingPlansFilter$, 1, 0]
939
- ];
940
- var ListPricingPlansOutput$ = [3, n0, _LPPO,
941
- 0,
942
- [_BP, _PPr, _NT],
943
- [0, [() => PricingPlanList, 0], 0]
944
- ];
945
- var ListPricingRulesAssociatedToPricingPlanInput$ = [3, n0, _LPRATPPI,
946
- 0,
947
- [_PPA, _BP, _MR, _NT],
948
- [0, 0, 1, 0], 1
949
- ];
950
- var ListPricingRulesAssociatedToPricingPlanOutput$ = [3, n0, _LPRATPPO,
951
- 0,
952
- [_BP, _PPA, _PRA, _NT],
953
- [0, 0, 64 | 0, 0]
954
- ];
955
- var ListPricingRulesFilter$ = [3, n0, _LPRF,
956
- 0,
957
- [_Ar],
958
- [64 | 0]
959
- ];
960
- var ListPricingRulesInput$ = [3, n0, _LPRI,
961
- 0,
962
- [_BP, _Fi, _MR, _NT],
963
- [0, () => ListPricingRulesFilter$, 1, 0]
964
- ];
965
- var ListPricingRulesOutput$ = [3, n0, _LPRO,
966
- 0,
967
- [_BP, _PR, _NT],
968
- [0, [() => PricingRuleList, 0], 0]
969
- ];
970
- var ListResourcesAssociatedToCustomLineItemFilter$ = [3, n0, _LRATCLIF,
971
- 0,
972
- [_Re],
973
- [0]
974
- ];
975
- var ListResourcesAssociatedToCustomLineItemInput$ = [3, n0, _LRATCLII,
976
- 0,
977
- [_A, _BP, _MR, _NT, _Fi],
978
- [0, 0, 1, 0, () => ListResourcesAssociatedToCustomLineItemFilter$], 1
979
- ];
980
- var ListResourcesAssociatedToCustomLineItemOutput$ = [3, n0, _LRATCLIO,
981
- 0,
982
- [_A, _AR, _NT],
983
- [0, () => ListResourcesAssociatedToCustomLineItemResponseList, 0]
984
- ];
985
- var ListResourcesAssociatedToCustomLineItemResponseElement$ = [3, n0, _LRATCLIRE,
986
- 0,
987
- [_A, _Re, _EBP],
988
- [0, 0, 0]
989
- ];
990
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
991
- 0,
992
- [_RAe],
993
- [[0, 1]], 1
994
- ];
995
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
996
- 0,
997
- [_T],
998
- [128 | 0]
999
- ];
1000
- var PresentationObject$ = [3, n0, _PO,
1001
- 0,
1002
- [_Se],
1003
- [0], 1
1004
- ];
1005
- var PricingPlanListElement$ = [3, n0, _PPLE,
1006
- 0,
1007
- [_N, _A, _D, _S, _CT, _LMT],
1008
- [[() => PricingPlanName, 0], 0, [() => PricingPlanDescription, 0], 1, 1, 1]
1009
- ];
1010
- var PricingRuleListElement$ = [3, n0, _PRLE,
1011
- 0,
1012
- [_N, _A, _D, _Sc, _Ty, _MPo, _Se, _APPC, _CT, _LMT, _BE, _Ti, _UT, _O],
1013
- [[() => PricingRuleName, 0], 0, [() => PricingRuleDescription, 0], 0, 0, 1, 0, 1, 1, 1, 0, () => Tiering$, 0, 0]
1014
- ];
1015
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
1016
- { [_e]: _c, [_hE]: 404 },
1017
- [_M, _RI, _RT],
1018
- [0, 0, 0], 3
1019
- ];
1020
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1021
- var ServiceLimitExceededException$ = [-3, n0, _SLEE,
1022
- { [_e]: _c, [_hE]: 402 },
1023
- [_M, _LC, _SC, _RI, _RT],
1024
- [0, 0, 0, 0, 0], 3
1025
- ];
1026
- schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
1027
- var StringSearch$ = [3, n0, _SS,
1028
- 0,
1029
- [_SO, _SV],
1030
- [0, 0], 2
1031
- ];
1032
- var TagResourceRequest$ = [3, n0, _TRR,
1033
- 0,
1034
- [_RAe, _T],
1035
- [[0, 1], 128 | 0], 2
1036
- ];
1037
- var TagResourceResponse$ = [3, n0, _TRRa,
1038
- 0,
1039
- [],
1040
- []
1041
- ];
1042
- var ThrottlingException$ = [-3, n0, _TE,
1043
- { [_e]: _c, [_hE]: 429 },
1044
- [_M, _RAS],
1045
- [0, [1, { [_hH]: _RA_ }]], 1
1046
- ];
1047
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1048
- var Tiering$ = [3, n0, _Ti,
1049
- 0,
1050
- [_FT],
1051
- [() => FreeTierConfig$], 1
1052
- ];
1053
- var UntagResourceRequest$ = [3, n0, _URR,
1054
- 0,
1055
- [_RAe, _TK],
1056
- [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1057
- ];
1058
- var UntagResourceResponse$ = [3, n0, _URRn,
1059
- 0,
1060
- [],
1061
- []
1062
- ];
1063
- var UpdateBillingGroupAccountGrouping$ = [3, n0, _UBGAG,
1064
- 0,
1065
- [_AA, _RTA],
1066
- [2, 0]
1067
- ];
1068
- var UpdateBillingGroupInput$ = [3, n0, _UBGI,
1069
- 0,
1070
- [_A, _N, _St, _CP, _D, _AG],
1071
- [0, [() => BillingGroupName, 0], 0, () => ComputationPreference$, [() => BillingGroupDescription, 0], () => UpdateBillingGroupAccountGrouping$], 1
1072
- ];
1073
- var UpdateBillingGroupOutput$ = [3, n0, _UBGO,
1074
- 0,
1075
- [_A, _N, _D, _PAI, _PPA, _S, _LMT, _St, _SR, _AG],
1076
- [0, [() => BillingGroupName, 0], [() => BillingGroupDescription, 0], 0, 0, 1, 1, 0, 0, () => UpdateBillingGroupAccountGrouping$]
1077
- ];
1078
- var UpdateCustomLineItemChargeDetails$ = [3, n0, _UCLICD,
1079
- 0,
1080
- [_F, _P, _LIF],
1081
- [() => UpdateCustomLineItemFlatChargeDetails$, () => UpdateCustomLineItemPercentageChargeDetails$, () => LineItemFiltersList]
1082
- ];
1083
- var UpdateCustomLineItemFlatChargeDetails$ = [3, n0, _UCLIFCD,
1084
- 0,
1085
- [_CV],
1086
- [1], 1
1087
- ];
1088
- var UpdateCustomLineItemInput$ = [3, n0, _UCLII,
1089
- 0,
1090
- [_A, _N, _D, _CD, _BPR],
1091
- [0, [() => CustomLineItemName, 0], [() => CustomLineItemDescription, 0], () => UpdateCustomLineItemChargeDetails$, () => CustomLineItemBillingPeriodRange$], 1
1092
- ];
1093
- var UpdateCustomLineItemOutput$ = [3, n0, _UCLIO,
1094
- 0,
1095
- [_A, _BGA, _N, _D, _CD, _LMT, _AS],
1096
- [0, 0, [() => CustomLineItemName, 0], [() => CustomLineItemDescription, 0], () => ListCustomLineItemChargeDetails$, 1, 1]
1097
- ];
1098
- var UpdateCustomLineItemPercentageChargeDetails$ = [3, n0, _UCLIPCD,
1099
- 0,
1100
- [_PV],
1101
- [1], 1
1102
- ];
1103
- var UpdateFreeTierConfig$ = [3, n0, _UFTC,
1104
- 0,
1105
- [_Ac],
1106
- [2], 1
1107
- ];
1108
- var UpdatePricingPlanInput$ = [3, n0, _UPPI,
1109
- 0,
1110
- [_A, _N, _D],
1111
- [0, [() => PricingPlanName, 0], [() => PricingPlanDescription, 0]], 1
1112
- ];
1113
- var UpdatePricingPlanOutput$ = [3, n0, _UPPO,
1114
- 0,
1115
- [_A, _N, _D, _S, _LMT],
1116
- [0, [() => PricingPlanName, 0], [() => PricingPlanDescription, 0], 1, 1]
1117
- ];
1118
- var UpdatePricingRuleInput$ = [3, n0, _UPRI,
1119
- 0,
1120
- [_A, _N, _D, _Ty, _MPo, _Ti],
1121
- [0, [() => PricingRuleName, 0], [() => PricingRuleDescription, 0], 0, 1, () => UpdateTieringInput$], 1
1122
- ];
1123
- var UpdatePricingRuleOutput$ = [3, n0, _UPRO,
1124
- 0,
1125
- [_A, _N, _D, _Sc, _Ty, _MPo, _Se, _APPC, _LMT, _BE, _Ti, _UT, _O],
1126
- [0, [() => PricingRuleName, 0], [() => PricingRuleDescription, 0], 0, 0, 1, 0, 1, 1, 0, () => UpdateTieringInput$, 0, 0]
1127
- ];
1128
- var UpdateTieringInput$ = [3, n0, _UTI,
1129
- 0,
1130
- [_FT],
1131
- [() => UpdateFreeTierConfig$], 1
1132
- ];
1133
- var ValidationException$ = [-3, n0, _VE,
1134
- { [_e]: _c, [_hE]: 400 },
1135
- [_M, _R, _Fie],
1136
- [0, 0, () => ValidationExceptionFieldList], 1
1137
- ];
1138
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1139
- var ValidationExceptionField$ = [3, n0, _VEF,
1140
- 0,
1141
- [_N, _M],
1142
- [0, 0], 2
1143
- ];
1144
- var BillingconductorServiceException$ = [-3, _sm, "BillingconductorServiceException", 0, [], []];
1145
- schema.TypeRegistry.for(_sm).registerError(BillingconductorServiceException$, BillingconductorServiceException);
1146
- var AccountAssociationsList = [1, n0, _AAL,
1147
- 0, [() => AccountAssociationsListElement$,
1148
- 0]
1149
- ];
1150
- var AssociateResourcesResponseList = [1, n0, _ARRL,
1151
- 0, () => AssociateResourceResponseElement$
1152
- ];
1153
- var AttributesList = [1, n0, _AL,
1154
- 0, () => Attribute$
1155
- ];
1156
- var BillingGroupCostReportList = [1, n0, _BGCRL,
1157
- 0, () => BillingGroupCostReportElement$
1158
- ];
1159
- var BillingGroupCostReportResultsList = [1, n0, _BGCRRL,
1160
- 0, () => BillingGroupCostReportResultElement$
1161
- ];
1162
- var BillingGroupList = [1, n0, _BGL,
1163
- 0, [() => BillingGroupListElement$,
1164
- 0]
1165
- ];
1166
- var CustomLineItemList = [1, n0, _CLIL,
1167
- 0, [() => CustomLineItemListElement$,
1168
- 0]
1169
- ];
1170
- var CustomLineItemNameList = [1, n0, _CLINL,
1171
- 0, [() => CustomLineItemName,
1172
- 0]
1173
- ];
1174
- var CustomLineItemVersionList = [1, n0, _CLIVL,
1175
- 0, [() => CustomLineItemVersionListElement$,
1176
- 0]
1177
- ];
1178
- var DisassociateResourcesResponseList = [1, n0, _DRRL,
1179
- 0, () => DisassociateResourceResponseElement$
1180
- ];
1181
- var LineItemFiltersList = [1, n0, _LIFL,
1182
- 0, () => LineItemFilter$
1183
- ];
1184
- var ListResourcesAssociatedToCustomLineItemResponseList = [1, n0, _LRATCLIRL,
1185
- 0, () => ListResourcesAssociatedToCustomLineItemResponseElement$
1186
- ];
1187
- var PricingPlanList = [1, n0, _PPL,
1188
- 0, [() => PricingPlanListElement$,
1189
- 0]
1190
- ];
1191
- var PricingRuleList = [1, n0, _PRL,
1192
- 0, [() => PricingRuleListElement$,
1193
- 0]
1194
- ];
1195
- var StringSearches = [1, n0, _SSt,
1196
- 0, () => StringSearch$
1197
- ];
1198
- var ValidationExceptionFieldList = [1, n0, _VEFL,
1199
- 0, () => ValidationExceptionField$
1200
- ];
1201
- var AssociateAccounts$ = [9, n0, _AAs,
1202
- { [_h]: ["POST", "/associate-accounts", 200] }, () => AssociateAccountsInput$, () => AssociateAccountsOutput$
1203
- ];
1204
- var AssociatePricingRules$ = [9, n0, _APR,
1205
- { [_h]: ["PUT", "/associate-pricing-rules", 200] }, () => AssociatePricingRulesInput$, () => AssociatePricingRulesOutput$
1206
- ];
1207
- var BatchAssociateResourcesToCustomLineItem$ = [9, n0, _BARTCLI,
1208
- { [_h]: ["PUT", "/batch-associate-resources-to-custom-line-item", 200] }, () => BatchAssociateResourcesToCustomLineItemInput$, () => BatchAssociateResourcesToCustomLineItemOutput$
1209
- ];
1210
- var BatchDisassociateResourcesFromCustomLineItem$ = [9, n0, _BDRFCLI,
1211
- { [_h]: ["PUT", "/batch-disassociate-resources-from-custom-line-item", 200] }, () => BatchDisassociateResourcesFromCustomLineItemInput$, () => BatchDisassociateResourcesFromCustomLineItemOutput$
1212
- ];
1213
- var CreateBillingGroup$ = [9, n0, _CBG,
1214
- { [_h]: ["POST", "/create-billing-group", 200] }, () => CreateBillingGroupInput$, () => CreateBillingGroupOutput$
1215
- ];
1216
- var CreateCustomLineItem$ = [9, n0, _CCLI,
1217
- { [_h]: ["POST", "/create-custom-line-item", 200] }, () => CreateCustomLineItemInput$, () => CreateCustomLineItemOutput$
1218
- ];
1219
- var CreatePricingPlan$ = [9, n0, _CPP,
1220
- { [_h]: ["POST", "/create-pricing-plan", 200] }, () => CreatePricingPlanInput$, () => CreatePricingPlanOutput$
1221
- ];
1222
- var CreatePricingRule$ = [9, n0, _CPR,
1223
- { [_h]: ["POST", "/create-pricing-rule", 200] }, () => CreatePricingRuleInput$, () => CreatePricingRuleOutput$
1224
- ];
1225
- var DeleteBillingGroup$ = [9, n0, _DBG,
1226
- { [_h]: ["POST", "/delete-billing-group", 200] }, () => DeleteBillingGroupInput$, () => DeleteBillingGroupOutput$
1227
- ];
1228
- var DeleteCustomLineItem$ = [9, n0, _DCLI,
1229
- { [_h]: ["POST", "/delete-custom-line-item", 200] }, () => DeleteCustomLineItemInput$, () => DeleteCustomLineItemOutput$
1230
- ];
1231
- var DeletePricingPlan$ = [9, n0, _DPP,
1232
- { [_h]: ["POST", "/delete-pricing-plan", 200] }, () => DeletePricingPlanInput$, () => DeletePricingPlanOutput$
1233
- ];
1234
- var DeletePricingRule$ = [9, n0, _DPR,
1235
- { [_h]: ["POST", "/delete-pricing-rule", 200] }, () => DeletePricingRuleInput$, () => DeletePricingRuleOutput$
1236
- ];
1237
- var DisassociateAccounts$ = [9, n0, _DA,
1238
- { [_h]: ["POST", "/disassociate-accounts", 200] }, () => DisassociateAccountsInput$, () => DisassociateAccountsOutput$
1239
- ];
1240
- var DisassociatePricingRules$ = [9, n0, _DPRi,
1241
- { [_h]: ["PUT", "/disassociate-pricing-rules", 200] }, () => DisassociatePricingRulesInput$, () => DisassociatePricingRulesOutput$
1242
- ];
1243
- var GetBillingGroupCostReport$ = [9, n0, _GBGCR,
1244
- { [_h]: ["POST", "/get-billing-group-cost-report", 200] }, () => GetBillingGroupCostReportInput$, () => GetBillingGroupCostReportOutput$
1245
- ];
1246
- var ListAccountAssociations$ = [9, n0, _LAA,
1247
- { [_h]: ["POST", "/list-account-associations", 200] }, () => ListAccountAssociationsInput$, () => ListAccountAssociationsOutput$
1248
- ];
1249
- var ListBillingGroupCostReports$ = [9, n0, _LBGCR,
1250
- { [_h]: ["POST", "/list-billing-group-cost-reports", 200] }, () => ListBillingGroupCostReportsInput$, () => ListBillingGroupCostReportsOutput$
1251
- ];
1252
- var ListBillingGroups$ = [9, n0, _LBG,
1253
- { [_h]: ["POST", "/list-billing-groups", 200] }, () => ListBillingGroupsInput$, () => ListBillingGroupsOutput$
1254
- ];
1255
- var ListCustomLineItems$ = [9, n0, _LCLI,
1256
- { [_h]: ["POST", "/list-custom-line-items", 200] }, () => ListCustomLineItemsInput$, () => ListCustomLineItemsOutput$
1257
- ];
1258
- var ListCustomLineItemVersions$ = [9, n0, _LCLIV,
1259
- { [_h]: ["POST", "/list-custom-line-item-versions", 200] }, () => ListCustomLineItemVersionsInput$, () => ListCustomLineItemVersionsOutput$
1260
- ];
1261
- var ListPricingPlans$ = [9, n0, _LPP,
1262
- { [_h]: ["POST", "/list-pricing-plans", 200] }, () => ListPricingPlansInput$, () => ListPricingPlansOutput$
1263
- ];
1264
- var ListPricingPlansAssociatedWithPricingRule$ = [9, n0, _LPPAWPR,
1265
- { [_h]: ["POST", "/list-pricing-plans-associated-with-pricing-rule", 200] }, () => ListPricingPlansAssociatedWithPricingRuleInput$, () => ListPricingPlansAssociatedWithPricingRuleOutput$
1266
- ];
1267
- var ListPricingRules$ = [9, n0, _LPR,
1268
- { [_h]: ["POST", "/list-pricing-rules", 200] }, () => ListPricingRulesInput$, () => ListPricingRulesOutput$
1269
- ];
1270
- var ListPricingRulesAssociatedToPricingPlan$ = [9, n0, _LPRATPP,
1271
- { [_h]: ["POST", "/list-pricing-rules-associated-to-pricing-plan", 200] }, () => ListPricingRulesAssociatedToPricingPlanInput$, () => ListPricingRulesAssociatedToPricingPlanOutput$
1272
- ];
1273
- var ListResourcesAssociatedToCustomLineItem$ = [9, n0, _LRATCLI,
1274
- { [_h]: ["POST", "/list-resources-associated-to-custom-line-item", 200] }, () => ListResourcesAssociatedToCustomLineItemInput$, () => ListResourcesAssociatedToCustomLineItemOutput$
1275
- ];
1276
- var ListTagsForResource$ = [9, n0, _LTFR,
1277
- { [_h]: ["GET", "/tags/{ResourceArn}", 204] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1278
- ];
1279
- var TagResource$ = [9, n0, _TR,
1280
- { [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
1281
- ];
1282
- var UntagResource$ = [9, n0, _UR,
1283
- { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1284
- ];
1285
- var UpdateBillingGroup$ = [9, n0, _UBG,
1286
- { [_h]: ["POST", "/update-billing-group", 200] }, () => UpdateBillingGroupInput$, () => UpdateBillingGroupOutput$
1287
- ];
1288
- var UpdateCustomLineItem$ = [9, n0, _UCLI,
1289
- { [_h]: ["POST", "/update-custom-line-item", 200] }, () => UpdateCustomLineItemInput$, () => UpdateCustomLineItemOutput$
1290
- ];
1291
- var UpdatePricingPlan$ = [9, n0, _UPP,
1292
- { [_h]: ["PUT", "/update-pricing-plan", 200] }, () => UpdatePricingPlanInput$, () => UpdatePricingPlanOutput$
1293
- ];
1294
- var UpdatePricingRule$ = [9, n0, _UPR,
1295
- { [_h]: ["PUT", "/update-pricing-rule", 200] }, () => UpdatePricingRuleInput$, () => UpdatePricingRuleOutput$
1296
- ];
1297
-
1298
116
  class AssociateAccountsCommand extends smithyClient.Command
1299
117
  .classBuilder()
1300
118
  .ep(commonParams)
@@ -1303,7 +121,7 @@ class AssociateAccountsCommand extends smithyClient.Command
1303
121
  })
1304
122
  .s("AWSBillingConductor", "AssociateAccounts", {})
1305
123
  .n("BillingconductorClient", "AssociateAccountsCommand")
1306
- .sc(AssociateAccounts$)
124
+ .sc(schemas_0.AssociateAccounts$)
1307
125
  .build() {
1308
126
  }
1309
127
 
@@ -1315,7 +133,7 @@ class AssociatePricingRulesCommand extends smithyClient.Command
1315
133
  })
1316
134
  .s("AWSBillingConductor", "AssociatePricingRules", {})
1317
135
  .n("BillingconductorClient", "AssociatePricingRulesCommand")
1318
- .sc(AssociatePricingRules$)
136
+ .sc(schemas_0.AssociatePricingRules$)
1319
137
  .build() {
1320
138
  }
1321
139
 
@@ -1327,7 +145,7 @@ class BatchAssociateResourcesToCustomLineItemCommand extends smithyClient.Comman
1327
145
  })
1328
146
  .s("AWSBillingConductor", "BatchAssociateResourcesToCustomLineItem", {})
1329
147
  .n("BillingconductorClient", "BatchAssociateResourcesToCustomLineItemCommand")
1330
- .sc(BatchAssociateResourcesToCustomLineItem$)
148
+ .sc(schemas_0.BatchAssociateResourcesToCustomLineItem$)
1331
149
  .build() {
1332
150
  }
1333
151
 
@@ -1339,7 +157,7 @@ class BatchDisassociateResourcesFromCustomLineItemCommand extends smithyClient.C
1339
157
  })
1340
158
  .s("AWSBillingConductor", "BatchDisassociateResourcesFromCustomLineItem", {})
1341
159
  .n("BillingconductorClient", "BatchDisassociateResourcesFromCustomLineItemCommand")
1342
- .sc(BatchDisassociateResourcesFromCustomLineItem$)
160
+ .sc(schemas_0.BatchDisassociateResourcesFromCustomLineItem$)
1343
161
  .build() {
1344
162
  }
1345
163
 
@@ -1351,7 +169,7 @@ class CreateBillingGroupCommand extends smithyClient.Command
1351
169
  })
1352
170
  .s("AWSBillingConductor", "CreateBillingGroup", {})
1353
171
  .n("BillingconductorClient", "CreateBillingGroupCommand")
1354
- .sc(CreateBillingGroup$)
172
+ .sc(schemas_0.CreateBillingGroup$)
1355
173
  .build() {
1356
174
  }
1357
175
 
@@ -1363,7 +181,7 @@ class CreateCustomLineItemCommand extends smithyClient.Command
1363
181
  })
1364
182
  .s("AWSBillingConductor", "CreateCustomLineItem", {})
1365
183
  .n("BillingconductorClient", "CreateCustomLineItemCommand")
1366
- .sc(CreateCustomLineItem$)
184
+ .sc(schemas_0.CreateCustomLineItem$)
1367
185
  .build() {
1368
186
  }
1369
187
 
@@ -1375,7 +193,7 @@ class CreatePricingPlanCommand extends smithyClient.Command
1375
193
  })
1376
194
  .s("AWSBillingConductor", "CreatePricingPlan", {})
1377
195
  .n("BillingconductorClient", "CreatePricingPlanCommand")
1378
- .sc(CreatePricingPlan$)
196
+ .sc(schemas_0.CreatePricingPlan$)
1379
197
  .build() {
1380
198
  }
1381
199
 
@@ -1387,7 +205,7 @@ class CreatePricingRuleCommand extends smithyClient.Command
1387
205
  })
1388
206
  .s("AWSBillingConductor", "CreatePricingRule", {})
1389
207
  .n("BillingconductorClient", "CreatePricingRuleCommand")
1390
- .sc(CreatePricingRule$)
208
+ .sc(schemas_0.CreatePricingRule$)
1391
209
  .build() {
1392
210
  }
1393
211
 
@@ -1399,7 +217,7 @@ class DeleteBillingGroupCommand extends smithyClient.Command
1399
217
  })
1400
218
  .s("AWSBillingConductor", "DeleteBillingGroup", {})
1401
219
  .n("BillingconductorClient", "DeleteBillingGroupCommand")
1402
- .sc(DeleteBillingGroup$)
220
+ .sc(schemas_0.DeleteBillingGroup$)
1403
221
  .build() {
1404
222
  }
1405
223
 
@@ -1411,7 +229,7 @@ class DeleteCustomLineItemCommand extends smithyClient.Command
1411
229
  })
1412
230
  .s("AWSBillingConductor", "DeleteCustomLineItem", {})
1413
231
  .n("BillingconductorClient", "DeleteCustomLineItemCommand")
1414
- .sc(DeleteCustomLineItem$)
232
+ .sc(schemas_0.DeleteCustomLineItem$)
1415
233
  .build() {
1416
234
  }
1417
235
 
@@ -1423,7 +241,7 @@ class DeletePricingPlanCommand extends smithyClient.Command
1423
241
  })
1424
242
  .s("AWSBillingConductor", "DeletePricingPlan", {})
1425
243
  .n("BillingconductorClient", "DeletePricingPlanCommand")
1426
- .sc(DeletePricingPlan$)
244
+ .sc(schemas_0.DeletePricingPlan$)
1427
245
  .build() {
1428
246
  }
1429
247
 
@@ -1435,7 +253,7 @@ class DeletePricingRuleCommand extends smithyClient.Command
1435
253
  })
1436
254
  .s("AWSBillingConductor", "DeletePricingRule", {})
1437
255
  .n("BillingconductorClient", "DeletePricingRuleCommand")
1438
- .sc(DeletePricingRule$)
256
+ .sc(schemas_0.DeletePricingRule$)
1439
257
  .build() {
1440
258
  }
1441
259
 
@@ -1447,7 +265,7 @@ class DisassociateAccountsCommand extends smithyClient.Command
1447
265
  })
1448
266
  .s("AWSBillingConductor", "DisassociateAccounts", {})
1449
267
  .n("BillingconductorClient", "DisassociateAccountsCommand")
1450
- .sc(DisassociateAccounts$)
268
+ .sc(schemas_0.DisassociateAccounts$)
1451
269
  .build() {
1452
270
  }
1453
271
 
@@ -1459,7 +277,7 @@ class DisassociatePricingRulesCommand extends smithyClient.Command
1459
277
  })
1460
278
  .s("AWSBillingConductor", "DisassociatePricingRules", {})
1461
279
  .n("BillingconductorClient", "DisassociatePricingRulesCommand")
1462
- .sc(DisassociatePricingRules$)
280
+ .sc(schemas_0.DisassociatePricingRules$)
1463
281
  .build() {
1464
282
  }
1465
283
 
@@ -1471,7 +289,7 @@ class GetBillingGroupCostReportCommand extends smithyClient.Command
1471
289
  })
1472
290
  .s("AWSBillingConductor", "GetBillingGroupCostReport", {})
1473
291
  .n("BillingconductorClient", "GetBillingGroupCostReportCommand")
1474
- .sc(GetBillingGroupCostReport$)
292
+ .sc(schemas_0.GetBillingGroupCostReport$)
1475
293
  .build() {
1476
294
  }
1477
295
 
@@ -1483,7 +301,7 @@ class ListAccountAssociationsCommand extends smithyClient.Command
1483
301
  })
1484
302
  .s("AWSBillingConductor", "ListAccountAssociations", {})
1485
303
  .n("BillingconductorClient", "ListAccountAssociationsCommand")
1486
- .sc(ListAccountAssociations$)
304
+ .sc(schemas_0.ListAccountAssociations$)
1487
305
  .build() {
1488
306
  }
1489
307
 
@@ -1495,7 +313,7 @@ class ListBillingGroupCostReportsCommand extends smithyClient.Command
1495
313
  })
1496
314
  .s("AWSBillingConductor", "ListBillingGroupCostReports", {})
1497
315
  .n("BillingconductorClient", "ListBillingGroupCostReportsCommand")
1498
- .sc(ListBillingGroupCostReports$)
316
+ .sc(schemas_0.ListBillingGroupCostReports$)
1499
317
  .build() {
1500
318
  }
1501
319
 
@@ -1507,7 +325,7 @@ class ListBillingGroupsCommand extends smithyClient.Command
1507
325
  })
1508
326
  .s("AWSBillingConductor", "ListBillingGroups", {})
1509
327
  .n("BillingconductorClient", "ListBillingGroupsCommand")
1510
- .sc(ListBillingGroups$)
328
+ .sc(schemas_0.ListBillingGroups$)
1511
329
  .build() {
1512
330
  }
1513
331
 
@@ -1519,7 +337,7 @@ class ListCustomLineItemsCommand extends smithyClient.Command
1519
337
  })
1520
338
  .s("AWSBillingConductor", "ListCustomLineItems", {})
1521
339
  .n("BillingconductorClient", "ListCustomLineItemsCommand")
1522
- .sc(ListCustomLineItems$)
340
+ .sc(schemas_0.ListCustomLineItems$)
1523
341
  .build() {
1524
342
  }
1525
343
 
@@ -1531,7 +349,7 @@ class ListCustomLineItemVersionsCommand extends smithyClient.Command
1531
349
  })
1532
350
  .s("AWSBillingConductor", "ListCustomLineItemVersions", {})
1533
351
  .n("BillingconductorClient", "ListCustomLineItemVersionsCommand")
1534
- .sc(ListCustomLineItemVersions$)
352
+ .sc(schemas_0.ListCustomLineItemVersions$)
1535
353
  .build() {
1536
354
  }
1537
355
 
@@ -1543,7 +361,7 @@ class ListPricingPlansAssociatedWithPricingRuleCommand extends smithyClient.Comm
1543
361
  })
1544
362
  .s("AWSBillingConductor", "ListPricingPlansAssociatedWithPricingRule", {})
1545
363
  .n("BillingconductorClient", "ListPricingPlansAssociatedWithPricingRuleCommand")
1546
- .sc(ListPricingPlansAssociatedWithPricingRule$)
364
+ .sc(schemas_0.ListPricingPlansAssociatedWithPricingRule$)
1547
365
  .build() {
1548
366
  }
1549
367
 
@@ -1555,7 +373,7 @@ class ListPricingPlansCommand extends smithyClient.Command
1555
373
  })
1556
374
  .s("AWSBillingConductor", "ListPricingPlans", {})
1557
375
  .n("BillingconductorClient", "ListPricingPlansCommand")
1558
- .sc(ListPricingPlans$)
376
+ .sc(schemas_0.ListPricingPlans$)
1559
377
  .build() {
1560
378
  }
1561
379
 
@@ -1567,7 +385,7 @@ class ListPricingRulesAssociatedToPricingPlanCommand extends smithyClient.Comman
1567
385
  })
1568
386
  .s("AWSBillingConductor", "ListPricingRulesAssociatedToPricingPlan", {})
1569
387
  .n("BillingconductorClient", "ListPricingRulesAssociatedToPricingPlanCommand")
1570
- .sc(ListPricingRulesAssociatedToPricingPlan$)
388
+ .sc(schemas_0.ListPricingRulesAssociatedToPricingPlan$)
1571
389
  .build() {
1572
390
  }
1573
391
 
@@ -1579,7 +397,7 @@ class ListPricingRulesCommand extends smithyClient.Command
1579
397
  })
1580
398
  .s("AWSBillingConductor", "ListPricingRules", {})
1581
399
  .n("BillingconductorClient", "ListPricingRulesCommand")
1582
- .sc(ListPricingRules$)
400
+ .sc(schemas_0.ListPricingRules$)
1583
401
  .build() {
1584
402
  }
1585
403
 
@@ -1591,7 +409,7 @@ class ListResourcesAssociatedToCustomLineItemCommand extends smithyClient.Comman
1591
409
  })
1592
410
  .s("AWSBillingConductor", "ListResourcesAssociatedToCustomLineItem", {})
1593
411
  .n("BillingconductorClient", "ListResourcesAssociatedToCustomLineItemCommand")
1594
- .sc(ListResourcesAssociatedToCustomLineItem$)
412
+ .sc(schemas_0.ListResourcesAssociatedToCustomLineItem$)
1595
413
  .build() {
1596
414
  }
1597
415
 
@@ -1603,7 +421,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1603
421
  })
1604
422
  .s("AWSBillingConductor", "ListTagsForResource", {})
1605
423
  .n("BillingconductorClient", "ListTagsForResourceCommand")
1606
- .sc(ListTagsForResource$)
424
+ .sc(schemas_0.ListTagsForResource$)
1607
425
  .build() {
1608
426
  }
1609
427
 
@@ -1615,7 +433,7 @@ class TagResourceCommand extends smithyClient.Command
1615
433
  })
1616
434
  .s("AWSBillingConductor", "TagResource", {})
1617
435
  .n("BillingconductorClient", "TagResourceCommand")
1618
- .sc(TagResource$)
436
+ .sc(schemas_0.TagResource$)
1619
437
  .build() {
1620
438
  }
1621
439
 
@@ -1627,7 +445,7 @@ class UntagResourceCommand extends smithyClient.Command
1627
445
  })
1628
446
  .s("AWSBillingConductor", "UntagResource", {})
1629
447
  .n("BillingconductorClient", "UntagResourceCommand")
1630
- .sc(UntagResource$)
448
+ .sc(schemas_0.UntagResource$)
1631
449
  .build() {
1632
450
  }
1633
451
 
@@ -1639,7 +457,7 @@ class UpdateBillingGroupCommand extends smithyClient.Command
1639
457
  })
1640
458
  .s("AWSBillingConductor", "UpdateBillingGroup", {})
1641
459
  .n("BillingconductorClient", "UpdateBillingGroupCommand")
1642
- .sc(UpdateBillingGroup$)
460
+ .sc(schemas_0.UpdateBillingGroup$)
1643
461
  .build() {
1644
462
  }
1645
463
 
@@ -1651,7 +469,7 @@ class UpdateCustomLineItemCommand extends smithyClient.Command
1651
469
  })
1652
470
  .s("AWSBillingConductor", "UpdateCustomLineItem", {})
1653
471
  .n("BillingconductorClient", "UpdateCustomLineItemCommand")
1654
- .sc(UpdateCustomLineItem$)
472
+ .sc(schemas_0.UpdateCustomLineItem$)
1655
473
  .build() {
1656
474
  }
1657
475
 
@@ -1663,7 +481,7 @@ class UpdatePricingPlanCommand extends smithyClient.Command
1663
481
  })
1664
482
  .s("AWSBillingConductor", "UpdatePricingPlan", {})
1665
483
  .n("BillingconductorClient", "UpdatePricingPlanCommand")
1666
- .sc(UpdatePricingPlan$)
484
+ .sc(schemas_0.UpdatePricingPlan$)
1667
485
  .build() {
1668
486
  }
1669
487
 
@@ -1675,7 +493,7 @@ class UpdatePricingRuleCommand extends smithyClient.Command
1675
493
  })
1676
494
  .s("AWSBillingConductor", "UpdatePricingRule", {})
1677
495
  .n("BillingconductorClient", "UpdatePricingRuleCommand")
1678
- .sc(UpdatePricingRule$)
496
+ .sc(schemas_0.UpdatePricingRule$)
1679
497
  .build() {
1680
498
  }
1681
499
 
@@ -1897,214 +715,59 @@ Object.defineProperty(exports, "__Client", {
1897
715
  enumerable: true,
1898
716
  get: function () { return smithyClient.Client; }
1899
717
  });
1900
- exports.AccessDeniedException = AccessDeniedException;
1901
- exports.AccessDeniedException$ = AccessDeniedException$;
1902
- exports.AccountAssociationsListElement$ = AccountAssociationsListElement$;
1903
- exports.AccountGrouping$ = AccountGrouping$;
1904
- exports.AssociateAccounts$ = AssociateAccounts$;
718
+ Object.defineProperty(exports, "BillingconductorServiceException", {
719
+ enumerable: true,
720
+ get: function () { return BillingconductorServiceException.BillingconductorServiceException; }
721
+ });
1905
722
  exports.AssociateAccountsCommand = AssociateAccountsCommand;
1906
- exports.AssociateAccountsInput$ = AssociateAccountsInput$;
1907
- exports.AssociateAccountsOutput$ = AssociateAccountsOutput$;
1908
- exports.AssociatePricingRules$ = AssociatePricingRules$;
1909
723
  exports.AssociatePricingRulesCommand = AssociatePricingRulesCommand;
1910
- exports.AssociatePricingRulesInput$ = AssociatePricingRulesInput$;
1911
- exports.AssociatePricingRulesOutput$ = AssociatePricingRulesOutput$;
1912
- exports.AssociateResourceError$ = AssociateResourceError$;
1913
724
  exports.AssociateResourceErrorReason = AssociateResourceErrorReason;
1914
- exports.AssociateResourceResponseElement$ = AssociateResourceResponseElement$;
1915
- exports.Attribute$ = Attribute$;
1916
- exports.BatchAssociateResourcesToCustomLineItem$ = BatchAssociateResourcesToCustomLineItem$;
1917
725
  exports.BatchAssociateResourcesToCustomLineItemCommand = BatchAssociateResourcesToCustomLineItemCommand;
1918
- exports.BatchAssociateResourcesToCustomLineItemInput$ = BatchAssociateResourcesToCustomLineItemInput$;
1919
- exports.BatchAssociateResourcesToCustomLineItemOutput$ = BatchAssociateResourcesToCustomLineItemOutput$;
1920
- exports.BatchDisassociateResourcesFromCustomLineItem$ = BatchDisassociateResourcesFromCustomLineItem$;
1921
726
  exports.BatchDisassociateResourcesFromCustomLineItemCommand = BatchDisassociateResourcesFromCustomLineItemCommand;
1922
- exports.BatchDisassociateResourcesFromCustomLineItemInput$ = BatchDisassociateResourcesFromCustomLineItemInput$;
1923
- exports.BatchDisassociateResourcesFromCustomLineItemOutput$ = BatchDisassociateResourcesFromCustomLineItemOutput$;
1924
- exports.BillingGroupCostReportElement$ = BillingGroupCostReportElement$;
1925
- exports.BillingGroupCostReportResultElement$ = BillingGroupCostReportResultElement$;
1926
- exports.BillingGroupListElement$ = BillingGroupListElement$;
1927
727
  exports.BillingGroupStatus = BillingGroupStatus;
1928
728
  exports.BillingGroupType = BillingGroupType;
1929
- exports.BillingPeriodRange$ = BillingPeriodRange$;
1930
729
  exports.Billingconductor = Billingconductor;
1931
730
  exports.BillingconductorClient = BillingconductorClient;
1932
- exports.BillingconductorServiceException = BillingconductorServiceException;
1933
- exports.BillingconductorServiceException$ = BillingconductorServiceException$;
1934
- exports.ComputationPreference$ = ComputationPreference$;
1935
731
  exports.ComputationRuleEnum = ComputationRuleEnum;
1936
- exports.ConflictException = ConflictException;
1937
- exports.ConflictException$ = ConflictException$;
1938
732
  exports.ConflictExceptionReason = ConflictExceptionReason;
1939
- exports.CreateBillingGroup$ = CreateBillingGroup$;
1940
733
  exports.CreateBillingGroupCommand = CreateBillingGroupCommand;
1941
- exports.CreateBillingGroupInput$ = CreateBillingGroupInput$;
1942
- exports.CreateBillingGroupOutput$ = CreateBillingGroupOutput$;
1943
- exports.CreateCustomLineItem$ = CreateCustomLineItem$;
1944
734
  exports.CreateCustomLineItemCommand = CreateCustomLineItemCommand;
1945
- exports.CreateCustomLineItemInput$ = CreateCustomLineItemInput$;
1946
- exports.CreateCustomLineItemOutput$ = CreateCustomLineItemOutput$;
1947
- exports.CreateFreeTierConfig$ = CreateFreeTierConfig$;
1948
- exports.CreatePricingPlan$ = CreatePricingPlan$;
1949
735
  exports.CreatePricingPlanCommand = CreatePricingPlanCommand;
1950
- exports.CreatePricingPlanInput$ = CreatePricingPlanInput$;
1951
- exports.CreatePricingPlanOutput$ = CreatePricingPlanOutput$;
1952
- exports.CreatePricingRule$ = CreatePricingRule$;
1953
736
  exports.CreatePricingRuleCommand = CreatePricingRuleCommand;
1954
- exports.CreatePricingRuleInput$ = CreatePricingRuleInput$;
1955
- exports.CreatePricingRuleOutput$ = CreatePricingRuleOutput$;
1956
- exports.CreateTieringInput$ = CreateTieringInput$;
1957
737
  exports.CurrencyCode = CurrencyCode;
1958
- exports.CustomLineItemBillingPeriodRange$ = CustomLineItemBillingPeriodRange$;
1959
- exports.CustomLineItemChargeDetails$ = CustomLineItemChargeDetails$;
1960
- exports.CustomLineItemFlatChargeDetails$ = CustomLineItemFlatChargeDetails$;
1961
- exports.CustomLineItemListElement$ = CustomLineItemListElement$;
1962
- exports.CustomLineItemPercentageChargeDetails$ = CustomLineItemPercentageChargeDetails$;
1963
738
  exports.CustomLineItemRelationship = CustomLineItemRelationship;
1964
739
  exports.CustomLineItemType = CustomLineItemType;
1965
- exports.CustomLineItemVersionListElement$ = CustomLineItemVersionListElement$;
1966
- exports.DeleteBillingGroup$ = DeleteBillingGroup$;
1967
740
  exports.DeleteBillingGroupCommand = DeleteBillingGroupCommand;
1968
- exports.DeleteBillingGroupInput$ = DeleteBillingGroupInput$;
1969
- exports.DeleteBillingGroupOutput$ = DeleteBillingGroupOutput$;
1970
- exports.DeleteCustomLineItem$ = DeleteCustomLineItem$;
1971
741
  exports.DeleteCustomLineItemCommand = DeleteCustomLineItemCommand;
1972
- exports.DeleteCustomLineItemInput$ = DeleteCustomLineItemInput$;
1973
- exports.DeleteCustomLineItemOutput$ = DeleteCustomLineItemOutput$;
1974
- exports.DeletePricingPlan$ = DeletePricingPlan$;
1975
742
  exports.DeletePricingPlanCommand = DeletePricingPlanCommand;
1976
- exports.DeletePricingPlanInput$ = DeletePricingPlanInput$;
1977
- exports.DeletePricingPlanOutput$ = DeletePricingPlanOutput$;
1978
- exports.DeletePricingRule$ = DeletePricingRule$;
1979
743
  exports.DeletePricingRuleCommand = DeletePricingRuleCommand;
1980
- exports.DeletePricingRuleInput$ = DeletePricingRuleInput$;
1981
- exports.DeletePricingRuleOutput$ = DeletePricingRuleOutput$;
1982
- exports.DisassociateAccounts$ = DisassociateAccounts$;
1983
744
  exports.DisassociateAccountsCommand = DisassociateAccountsCommand;
1984
- exports.DisassociateAccountsInput$ = DisassociateAccountsInput$;
1985
- exports.DisassociateAccountsOutput$ = DisassociateAccountsOutput$;
1986
- exports.DisassociatePricingRules$ = DisassociatePricingRules$;
1987
745
  exports.DisassociatePricingRulesCommand = DisassociatePricingRulesCommand;
1988
- exports.DisassociatePricingRulesInput$ = DisassociatePricingRulesInput$;
1989
- exports.DisassociatePricingRulesOutput$ = DisassociatePricingRulesOutput$;
1990
- exports.DisassociateResourceResponseElement$ = DisassociateResourceResponseElement$;
1991
- exports.FreeTierConfig$ = FreeTierConfig$;
1992
- exports.GetBillingGroupCostReport$ = GetBillingGroupCostReport$;
1993
746
  exports.GetBillingGroupCostReportCommand = GetBillingGroupCostReportCommand;
1994
- exports.GetBillingGroupCostReportInput$ = GetBillingGroupCostReportInput$;
1995
- exports.GetBillingGroupCostReportOutput$ = GetBillingGroupCostReportOutput$;
1996
747
  exports.GroupByAttributeName = GroupByAttributeName;
1997
- exports.InternalServerException = InternalServerException;
1998
- exports.InternalServerException$ = InternalServerException$;
1999
- exports.LineItemFilter$ = LineItemFilter$;
2000
748
  exports.LineItemFilterAttributeName = LineItemFilterAttributeName;
2001
749
  exports.LineItemFilterValue = LineItemFilterValue;
2002
- exports.ListAccountAssociations$ = ListAccountAssociations$;
2003
750
  exports.ListAccountAssociationsCommand = ListAccountAssociationsCommand;
2004
- exports.ListAccountAssociationsFilter$ = ListAccountAssociationsFilter$;
2005
- exports.ListAccountAssociationsInput$ = ListAccountAssociationsInput$;
2006
- exports.ListAccountAssociationsOutput$ = ListAccountAssociationsOutput$;
2007
- exports.ListBillingGroupAccountGrouping$ = ListBillingGroupAccountGrouping$;
2008
- exports.ListBillingGroupCostReports$ = ListBillingGroupCostReports$;
2009
751
  exports.ListBillingGroupCostReportsCommand = ListBillingGroupCostReportsCommand;
2010
- exports.ListBillingGroupCostReportsFilter$ = ListBillingGroupCostReportsFilter$;
2011
- exports.ListBillingGroupCostReportsInput$ = ListBillingGroupCostReportsInput$;
2012
- exports.ListBillingGroupCostReportsOutput$ = ListBillingGroupCostReportsOutput$;
2013
- exports.ListBillingGroups$ = ListBillingGroups$;
2014
752
  exports.ListBillingGroupsCommand = ListBillingGroupsCommand;
2015
- exports.ListBillingGroupsFilter$ = ListBillingGroupsFilter$;
2016
- exports.ListBillingGroupsInput$ = ListBillingGroupsInput$;
2017
- exports.ListBillingGroupsOutput$ = ListBillingGroupsOutput$;
2018
- exports.ListCustomLineItemChargeDetails$ = ListCustomLineItemChargeDetails$;
2019
- exports.ListCustomLineItemFlatChargeDetails$ = ListCustomLineItemFlatChargeDetails$;
2020
- exports.ListCustomLineItemPercentageChargeDetails$ = ListCustomLineItemPercentageChargeDetails$;
2021
- exports.ListCustomLineItemVersions$ = ListCustomLineItemVersions$;
2022
- exports.ListCustomLineItemVersionsBillingPeriodRangeFilter$ = ListCustomLineItemVersionsBillingPeriodRangeFilter$;
2023
753
  exports.ListCustomLineItemVersionsCommand = ListCustomLineItemVersionsCommand;
2024
- exports.ListCustomLineItemVersionsFilter$ = ListCustomLineItemVersionsFilter$;
2025
- exports.ListCustomLineItemVersionsInput$ = ListCustomLineItemVersionsInput$;
2026
- exports.ListCustomLineItemVersionsOutput$ = ListCustomLineItemVersionsOutput$;
2027
- exports.ListCustomLineItems$ = ListCustomLineItems$;
2028
754
  exports.ListCustomLineItemsCommand = ListCustomLineItemsCommand;
2029
- exports.ListCustomLineItemsFilter$ = ListCustomLineItemsFilter$;
2030
- exports.ListCustomLineItemsInput$ = ListCustomLineItemsInput$;
2031
- exports.ListCustomLineItemsOutput$ = ListCustomLineItemsOutput$;
2032
- exports.ListPricingPlans$ = ListPricingPlans$;
2033
- exports.ListPricingPlansAssociatedWithPricingRule$ = ListPricingPlansAssociatedWithPricingRule$;
2034
755
  exports.ListPricingPlansAssociatedWithPricingRuleCommand = ListPricingPlansAssociatedWithPricingRuleCommand;
2035
- exports.ListPricingPlansAssociatedWithPricingRuleInput$ = ListPricingPlansAssociatedWithPricingRuleInput$;
2036
- exports.ListPricingPlansAssociatedWithPricingRuleOutput$ = ListPricingPlansAssociatedWithPricingRuleOutput$;
2037
756
  exports.ListPricingPlansCommand = ListPricingPlansCommand;
2038
- exports.ListPricingPlansFilter$ = ListPricingPlansFilter$;
2039
- exports.ListPricingPlansInput$ = ListPricingPlansInput$;
2040
- exports.ListPricingPlansOutput$ = ListPricingPlansOutput$;
2041
- exports.ListPricingRules$ = ListPricingRules$;
2042
- exports.ListPricingRulesAssociatedToPricingPlan$ = ListPricingRulesAssociatedToPricingPlan$;
2043
757
  exports.ListPricingRulesAssociatedToPricingPlanCommand = ListPricingRulesAssociatedToPricingPlanCommand;
2044
- exports.ListPricingRulesAssociatedToPricingPlanInput$ = ListPricingRulesAssociatedToPricingPlanInput$;
2045
- exports.ListPricingRulesAssociatedToPricingPlanOutput$ = ListPricingRulesAssociatedToPricingPlanOutput$;
2046
758
  exports.ListPricingRulesCommand = ListPricingRulesCommand;
2047
- exports.ListPricingRulesFilter$ = ListPricingRulesFilter$;
2048
- exports.ListPricingRulesInput$ = ListPricingRulesInput$;
2049
- exports.ListPricingRulesOutput$ = ListPricingRulesOutput$;
2050
- exports.ListResourcesAssociatedToCustomLineItem$ = ListResourcesAssociatedToCustomLineItem$;
2051
759
  exports.ListResourcesAssociatedToCustomLineItemCommand = ListResourcesAssociatedToCustomLineItemCommand;
2052
- exports.ListResourcesAssociatedToCustomLineItemFilter$ = ListResourcesAssociatedToCustomLineItemFilter$;
2053
- exports.ListResourcesAssociatedToCustomLineItemInput$ = ListResourcesAssociatedToCustomLineItemInput$;
2054
- exports.ListResourcesAssociatedToCustomLineItemOutput$ = ListResourcesAssociatedToCustomLineItemOutput$;
2055
- exports.ListResourcesAssociatedToCustomLineItemResponseElement$ = ListResourcesAssociatedToCustomLineItemResponseElement$;
2056
- exports.ListTagsForResource$ = ListTagsForResource$;
2057
760
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2058
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2059
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2060
761
  exports.MatchOption = MatchOption;
2061
- exports.PresentationObject$ = PresentationObject$;
2062
- exports.PricingPlanListElement$ = PricingPlanListElement$;
2063
- exports.PricingRuleListElement$ = PricingRuleListElement$;
2064
762
  exports.PricingRuleScope = PricingRuleScope;
2065
763
  exports.PricingRuleType = PricingRuleType;
2066
- exports.ResourceNotFoundException = ResourceNotFoundException;
2067
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2068
764
  exports.SearchOption = SearchOption;
2069
- exports.ServiceLimitExceededException = ServiceLimitExceededException;
2070
- exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
2071
- exports.StringSearch$ = StringSearch$;
2072
- exports.TagResource$ = TagResource$;
2073
765
  exports.TagResourceCommand = TagResourceCommand;
2074
- exports.TagResourceRequest$ = TagResourceRequest$;
2075
- exports.TagResourceResponse$ = TagResourceResponse$;
2076
- exports.ThrottlingException = ThrottlingException;
2077
- exports.ThrottlingException$ = ThrottlingException$;
2078
- exports.Tiering$ = Tiering$;
2079
- exports.UntagResource$ = UntagResource$;
2080
766
  exports.UntagResourceCommand = UntagResourceCommand;
2081
- exports.UntagResourceRequest$ = UntagResourceRequest$;
2082
- exports.UntagResourceResponse$ = UntagResourceResponse$;
2083
- exports.UpdateBillingGroup$ = UpdateBillingGroup$;
2084
- exports.UpdateBillingGroupAccountGrouping$ = UpdateBillingGroupAccountGrouping$;
2085
767
  exports.UpdateBillingGroupCommand = UpdateBillingGroupCommand;
2086
- exports.UpdateBillingGroupInput$ = UpdateBillingGroupInput$;
2087
- exports.UpdateBillingGroupOutput$ = UpdateBillingGroupOutput$;
2088
- exports.UpdateCustomLineItem$ = UpdateCustomLineItem$;
2089
- exports.UpdateCustomLineItemChargeDetails$ = UpdateCustomLineItemChargeDetails$;
2090
768
  exports.UpdateCustomLineItemCommand = UpdateCustomLineItemCommand;
2091
- exports.UpdateCustomLineItemFlatChargeDetails$ = UpdateCustomLineItemFlatChargeDetails$;
2092
- exports.UpdateCustomLineItemInput$ = UpdateCustomLineItemInput$;
2093
- exports.UpdateCustomLineItemOutput$ = UpdateCustomLineItemOutput$;
2094
- exports.UpdateCustomLineItemPercentageChargeDetails$ = UpdateCustomLineItemPercentageChargeDetails$;
2095
- exports.UpdateFreeTierConfig$ = UpdateFreeTierConfig$;
2096
- exports.UpdatePricingPlan$ = UpdatePricingPlan$;
2097
769
  exports.UpdatePricingPlanCommand = UpdatePricingPlanCommand;
2098
- exports.UpdatePricingPlanInput$ = UpdatePricingPlanInput$;
2099
- exports.UpdatePricingPlanOutput$ = UpdatePricingPlanOutput$;
2100
- exports.UpdatePricingRule$ = UpdatePricingRule$;
2101
770
  exports.UpdatePricingRuleCommand = UpdatePricingRuleCommand;
2102
- exports.UpdatePricingRuleInput$ = UpdatePricingRuleInput$;
2103
- exports.UpdatePricingRuleOutput$ = UpdatePricingRuleOutput$;
2104
- exports.UpdateTieringInput$ = UpdateTieringInput$;
2105
- exports.ValidationException = ValidationException;
2106
- exports.ValidationException$ = ValidationException$;
2107
- exports.ValidationExceptionField$ = ValidationExceptionField$;
2108
771
  exports.ValidationExceptionReason = ValidationExceptionReason;
2109
772
  exports.paginateGetBillingGroupCostReport = paginateGetBillingGroupCostReport;
2110
773
  exports.paginateListAccountAssociations = paginateListAccountAssociations;
@@ -2117,3 +780,15 @@ exports.paginateListPricingPlansAssociatedWithPricingRule = paginateListPricingP
2117
780
  exports.paginateListPricingRules = paginateListPricingRules;
2118
781
  exports.paginateListPricingRulesAssociatedToPricingPlan = paginateListPricingRulesAssociatedToPricingPlan;
2119
782
  exports.paginateListResourcesAssociatedToCustomLineItem = paginateListResourcesAssociatedToCustomLineItem;
783
+ Object.keys(schemas_0).forEach(function (k) {
784
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
785
+ enumerable: true,
786
+ get: function () { return schemas_0[k]; }
787
+ });
788
+ });
789
+ Object.keys(errors).forEach(function (k) {
790
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
791
+ enumerable: true,
792
+ get: function () { return errors[k]; }
793
+ });
794
+ });