@aws-sdk/client-billingconductor 3.928.0 → 3.929.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 +1531 -1689
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BillingconductorClient.js +2 -0
- package/dist-es/commands/AssociateAccountsCommand.js +3 -9
- package/dist-es/commands/AssociatePricingRulesCommand.js +3 -9
- package/dist-es/commands/BatchAssociateResourcesToCustomLineItemCommand.js +3 -9
- package/dist-es/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +3 -9
- package/dist-es/commands/CreateBillingGroupCommand.js +3 -10
- package/dist-es/commands/CreateCustomLineItemCommand.js +3 -10
- package/dist-es/commands/CreatePricingPlanCommand.js +3 -10
- package/dist-es/commands/CreatePricingRuleCommand.js +3 -10
- package/dist-es/commands/DeleteBillingGroupCommand.js +3 -9
- package/dist-es/commands/DeleteCustomLineItemCommand.js +3 -9
- package/dist-es/commands/DeletePricingPlanCommand.js +3 -9
- package/dist-es/commands/DeletePricingRuleCommand.js +3 -9
- package/dist-es/commands/DisassociateAccountsCommand.js +3 -9
- package/dist-es/commands/DisassociatePricingRulesCommand.js +3 -9
- package/dist-es/commands/GetBillingGroupCostReportCommand.js +3 -9
- package/dist-es/commands/ListAccountAssociationsCommand.js +3 -10
- package/dist-es/commands/ListBillingGroupCostReportsCommand.js +3 -9
- package/dist-es/commands/ListBillingGroupsCommand.js +3 -10
- package/dist-es/commands/ListCustomLineItemVersionsCommand.js +3 -10
- package/dist-es/commands/ListCustomLineItemsCommand.js +3 -10
- package/dist-es/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +3 -9
- package/dist-es/commands/ListPricingPlansCommand.js +3 -10
- package/dist-es/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +3 -9
- package/dist-es/commands/ListPricingRulesCommand.js +3 -10
- package/dist-es/commands/ListResourcesAssociatedToCustomLineItemCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateBillingGroupCommand.js +3 -10
- package/dist-es/commands/UpdateCustomLineItemCommand.js +3 -10
- package/dist-es/commands/UpdatePricingPlanCommand.js +3 -10
- package/dist-es/commands/UpdatePricingRuleCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -135
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1464 -0
- package/dist-types/BillingconductorClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -104
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +193 -0
- package/dist-types/ts3.4/BillingconductorClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -78
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +199 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1288
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -290
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -389
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class BillingconductorClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class BillingconductorClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class BillingconductorServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let BillingconductorServiceException$1 = class BillingconductorServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, BillingconductorServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends BillingconductorServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends BillingconductorServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
Message;
|
|
@@ -131,7 +130,7 @@ class AccessDeniedException extends BillingconductorServiceException {
|
|
|
131
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
131
|
this.Message = opts.Message;
|
|
133
132
|
}
|
|
134
|
-
}
|
|
133
|
+
};
|
|
135
134
|
const ConflictExceptionReason = {
|
|
136
135
|
PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT",
|
|
137
136
|
PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT",
|
|
@@ -139,7 +138,7 @@ const ConflictExceptionReason = {
|
|
|
139
138
|
RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT",
|
|
140
139
|
WRITE_CONFLICT_RETRY: "WRITE_CONFLICT_RETRY",
|
|
141
140
|
};
|
|
142
|
-
class ConflictException extends BillingconductorServiceException {
|
|
141
|
+
let ConflictException$1 = class ConflictException extends BillingconductorServiceException$1 {
|
|
143
142
|
name = "ConflictException";
|
|
144
143
|
$fault = "client";
|
|
145
144
|
Message;
|
|
@@ -158,8 +157,8 @@ class ConflictException extends BillingconductorServiceException {
|
|
|
158
157
|
this.ResourceType = opts.ResourceType;
|
|
159
158
|
this.Reason = opts.Reason;
|
|
160
159
|
}
|
|
161
|
-
}
|
|
162
|
-
class InternalServerException extends BillingconductorServiceException {
|
|
160
|
+
};
|
|
161
|
+
let InternalServerException$1 = class InternalServerException extends BillingconductorServiceException$1 {
|
|
163
162
|
name = "InternalServerException";
|
|
164
163
|
$fault = "server";
|
|
165
164
|
Message;
|
|
@@ -174,8 +173,8 @@ class InternalServerException extends BillingconductorServiceException {
|
|
|
174
173
|
this.Message = opts.Message;
|
|
175
174
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
176
175
|
}
|
|
177
|
-
}
|
|
178
|
-
class ResourceNotFoundException extends BillingconductorServiceException {
|
|
176
|
+
};
|
|
177
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends BillingconductorServiceException$1 {
|
|
179
178
|
name = "ResourceNotFoundException";
|
|
180
179
|
$fault = "client";
|
|
181
180
|
Message;
|
|
@@ -192,8 +191,8 @@ class ResourceNotFoundException extends BillingconductorServiceException {
|
|
|
192
191
|
this.ResourceId = opts.ResourceId;
|
|
193
192
|
this.ResourceType = opts.ResourceType;
|
|
194
193
|
}
|
|
195
|
-
}
|
|
196
|
-
class ServiceLimitExceededException extends BillingconductorServiceException {
|
|
194
|
+
};
|
|
195
|
+
let ServiceLimitExceededException$1 = class ServiceLimitExceededException extends BillingconductorServiceException$1 {
|
|
197
196
|
name = "ServiceLimitExceededException";
|
|
198
197
|
$fault = "client";
|
|
199
198
|
Message;
|
|
@@ -214,8 +213,8 @@ class ServiceLimitExceededException extends BillingconductorServiceException {
|
|
|
214
213
|
this.LimitCode = opts.LimitCode;
|
|
215
214
|
this.ServiceCode = opts.ServiceCode;
|
|
216
215
|
}
|
|
217
|
-
}
|
|
218
|
-
class ThrottlingException extends BillingconductorServiceException {
|
|
216
|
+
};
|
|
217
|
+
let ThrottlingException$1 = class ThrottlingException extends BillingconductorServiceException$1 {
|
|
219
218
|
name = "ThrottlingException";
|
|
220
219
|
$fault = "client";
|
|
221
220
|
Message;
|
|
@@ -230,7 +229,7 @@ class ThrottlingException extends BillingconductorServiceException {
|
|
|
230
229
|
this.Message = opts.Message;
|
|
231
230
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
232
231
|
}
|
|
233
|
-
}
|
|
232
|
+
};
|
|
234
233
|
const ValidationExceptionReason = {
|
|
235
234
|
ACCOUNTS_ALREADY_ASSOCIATED: "ACCOUNTS_ALREADY_ASSOCIATED",
|
|
236
235
|
ACCOUNTS_NOT_ASSOCIATED: "ACCOUNTS_NOT_ASSOCIATED",
|
|
@@ -297,7 +296,7 @@ const ValidationExceptionReason = {
|
|
|
297
296
|
TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST: "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST",
|
|
298
297
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
299
298
|
};
|
|
300
|
-
class ValidationException extends BillingconductorServiceException {
|
|
299
|
+
let ValidationException$1 = class ValidationException extends BillingconductorServiceException$1 {
|
|
301
300
|
name = "ValidationException";
|
|
302
301
|
$fault = "client";
|
|
303
302
|
Message;
|
|
@@ -314,7 +313,7 @@ class ValidationException extends BillingconductorServiceException {
|
|
|
314
313
|
this.Reason = opts.Reason;
|
|
315
314
|
this.Fields = opts.Fields;
|
|
316
315
|
}
|
|
317
|
-
}
|
|
316
|
+
};
|
|
318
317
|
const AssociateResourceErrorReason = {
|
|
319
318
|
ILLEGAL_CUSTOMLINEITEM: "ILLEGAL_CUSTOMLINEITEM",
|
|
320
319
|
INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION",
|
|
@@ -365,1437 +364,1461 @@ const PricingRuleType = {
|
|
|
365
364
|
MARKUP: "MARKUP",
|
|
366
365
|
TIERING: "TIERING",
|
|
367
366
|
};
|
|
368
|
-
const AccountAssociationsListElementFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
...(obj.AccountName && { AccountName: smithyClient.SENSITIVE_STRING }),
|
|
371
|
-
...(obj.AccountEmail && { AccountEmail: smithyClient.SENSITIVE_STRING }),
|
|
372
|
-
});
|
|
373
|
-
const CreateBillingGroupInputFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
376
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
377
|
-
});
|
|
378
|
-
const BillingGroupListElementFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
381
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
382
|
-
});
|
|
383
|
-
const ListBillingGroupsOutputFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
...(obj.BillingGroups && {
|
|
386
|
-
BillingGroups: obj.BillingGroups.map((item) => BillingGroupListElementFilterSensitiveLog(item)),
|
|
387
|
-
}),
|
|
388
|
-
});
|
|
389
|
-
const UpdateBillingGroupInputFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
392
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
393
|
-
});
|
|
394
|
-
const UpdateBillingGroupOutputFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
397
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
398
|
-
});
|
|
399
|
-
const CreateCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
402
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
403
|
-
});
|
|
404
|
-
const ListCustomLineItemsFilterFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
...(obj.Names && { Names: smithyClient.SENSITIVE_STRING }),
|
|
407
|
-
});
|
|
408
|
-
const ListCustomLineItemsInputFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
...(obj.Filters && { Filters: ListCustomLineItemsFilterFilterSensitiveLog(obj.Filters) }),
|
|
411
|
-
});
|
|
412
|
-
const CustomLineItemListElementFilterSensitiveLog = (obj) => ({
|
|
413
|
-
...obj,
|
|
414
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
415
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
416
|
-
});
|
|
417
|
-
const ListCustomLineItemsOutputFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
...(obj.CustomLineItems && {
|
|
420
|
-
CustomLineItems: obj.CustomLineItems.map((item) => CustomLineItemListElementFilterSensitiveLog(item)),
|
|
421
|
-
}),
|
|
422
|
-
});
|
|
423
|
-
const CustomLineItemVersionListElementFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
426
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
427
|
-
});
|
|
428
|
-
const ListCustomLineItemVersionsOutputFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
...(obj.CustomLineItemVersions && {
|
|
431
|
-
CustomLineItemVersions: obj.CustomLineItemVersions.map((item) => CustomLineItemVersionListElementFilterSensitiveLog(item)),
|
|
432
|
-
}),
|
|
433
|
-
});
|
|
434
|
-
const UpdateCustomLineItemInputFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
437
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
438
|
-
});
|
|
439
|
-
const UpdateCustomLineItemOutputFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
442
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
443
|
-
});
|
|
444
|
-
const ListAccountAssociationsOutputFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
...(obj.LinkedAccounts && {
|
|
447
|
-
LinkedAccounts: obj.LinkedAccounts.map((item) => AccountAssociationsListElementFilterSensitiveLog(item)),
|
|
448
|
-
}),
|
|
449
|
-
});
|
|
450
|
-
const CreatePricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
453
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
454
|
-
});
|
|
455
|
-
const PricingPlanListElementFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
458
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
459
|
-
});
|
|
460
|
-
const ListPricingPlansOutputFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
...(obj.PricingPlans && {
|
|
463
|
-
PricingPlans: obj.PricingPlans.map((item) => PricingPlanListElementFilterSensitiveLog(item)),
|
|
464
|
-
}),
|
|
465
|
-
});
|
|
466
|
-
const UpdatePricingPlanInputFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
469
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
470
|
-
});
|
|
471
|
-
const UpdatePricingPlanOutputFilterSensitiveLog = (obj) => ({
|
|
472
|
-
...obj,
|
|
473
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
474
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
475
|
-
});
|
|
476
|
-
const CreatePricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
479
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
480
|
-
});
|
|
481
|
-
const PricingRuleListElementFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
484
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
485
|
-
});
|
|
486
|
-
const ListPricingRulesOutputFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
...(obj.PricingRules && {
|
|
489
|
-
PricingRules: obj.PricingRules.map((item) => PricingRuleListElementFilterSensitiveLog(item)),
|
|
490
|
-
}),
|
|
491
|
-
});
|
|
492
|
-
const UpdatePricingRuleInputFilterSensitiveLog = (obj) => ({
|
|
493
|
-
...obj,
|
|
494
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
495
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
496
|
-
});
|
|
497
|
-
const UpdatePricingRuleOutputFilterSensitiveLog = (obj) => ({
|
|
498
|
-
...obj,
|
|
499
|
-
...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
|
|
500
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
501
|
-
});
|
|
502
367
|
|
|
503
|
-
const
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
const
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
const
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
const
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
const
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
const
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
const
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
const
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
const
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
const
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
const
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
const
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
const
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
const
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
Arn: [],
|
|
719
|
-
PricingRuleArns: (_) => smithyClient._json(_),
|
|
720
|
-
}));
|
|
721
|
-
b.m("PUT").h(headers).b(body);
|
|
722
|
-
return b.build();
|
|
723
|
-
};
|
|
724
|
-
const se_GetBillingGroupCostReportCommand = async (input, context) => {
|
|
725
|
-
const b = core.requestBuilder(input, context);
|
|
726
|
-
const headers = {
|
|
727
|
-
"content-type": "application/json",
|
|
728
|
-
};
|
|
729
|
-
b.bp("/get-billing-group-cost-report");
|
|
730
|
-
let body;
|
|
731
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
732
|
-
Arn: [],
|
|
733
|
-
BillingPeriodRange: (_) => smithyClient._json(_),
|
|
734
|
-
GroupBy: (_) => smithyClient._json(_),
|
|
735
|
-
MaxResults: [],
|
|
736
|
-
NextToken: [],
|
|
737
|
-
}));
|
|
738
|
-
b.m("POST").h(headers).b(body);
|
|
739
|
-
return b.build();
|
|
740
|
-
};
|
|
741
|
-
const se_ListAccountAssociationsCommand = async (input, context) => {
|
|
742
|
-
const b = core.requestBuilder(input, context);
|
|
743
|
-
const headers = {
|
|
744
|
-
"content-type": "application/json",
|
|
745
|
-
};
|
|
746
|
-
b.bp("/list-account-associations");
|
|
747
|
-
let body;
|
|
748
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
749
|
-
BillingPeriod: [],
|
|
750
|
-
Filters: (_) => smithyClient._json(_),
|
|
751
|
-
NextToken: [],
|
|
752
|
-
}));
|
|
753
|
-
b.m("POST").h(headers).b(body);
|
|
754
|
-
return b.build();
|
|
755
|
-
};
|
|
756
|
-
const se_ListBillingGroupCostReportsCommand = async (input, context) => {
|
|
757
|
-
const b = core.requestBuilder(input, context);
|
|
758
|
-
const headers = {
|
|
759
|
-
"content-type": "application/json",
|
|
760
|
-
};
|
|
761
|
-
b.bp("/list-billing-group-cost-reports");
|
|
762
|
-
let body;
|
|
763
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
764
|
-
BillingPeriod: [],
|
|
765
|
-
Filters: (_) => smithyClient._json(_),
|
|
766
|
-
MaxResults: [],
|
|
767
|
-
NextToken: [],
|
|
768
|
-
}));
|
|
769
|
-
b.m("POST").h(headers).b(body);
|
|
770
|
-
return b.build();
|
|
771
|
-
};
|
|
772
|
-
const se_ListBillingGroupsCommand = async (input, context) => {
|
|
773
|
-
const b = core.requestBuilder(input, context);
|
|
774
|
-
const headers = {
|
|
775
|
-
"content-type": "application/json",
|
|
776
|
-
};
|
|
777
|
-
b.bp("/list-billing-groups");
|
|
778
|
-
let body;
|
|
779
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
780
|
-
BillingPeriod: [],
|
|
781
|
-
Filters: (_) => smithyClient._json(_),
|
|
782
|
-
MaxResults: [],
|
|
783
|
-
NextToken: [],
|
|
784
|
-
}));
|
|
785
|
-
b.m("POST").h(headers).b(body);
|
|
786
|
-
return b.build();
|
|
787
|
-
};
|
|
788
|
-
const se_ListCustomLineItemsCommand = async (input, context) => {
|
|
789
|
-
const b = core.requestBuilder(input, context);
|
|
790
|
-
const headers = {
|
|
791
|
-
"content-type": "application/json",
|
|
792
|
-
};
|
|
793
|
-
b.bp("/list-custom-line-items");
|
|
794
|
-
let body;
|
|
795
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
796
|
-
BillingPeriod: [],
|
|
797
|
-
Filters: (_) => smithyClient._json(_),
|
|
798
|
-
MaxResults: [],
|
|
799
|
-
NextToken: [],
|
|
800
|
-
}));
|
|
801
|
-
b.m("POST").h(headers).b(body);
|
|
802
|
-
return b.build();
|
|
803
|
-
};
|
|
804
|
-
const se_ListCustomLineItemVersionsCommand = async (input, context) => {
|
|
805
|
-
const b = core.requestBuilder(input, context);
|
|
806
|
-
const headers = {
|
|
807
|
-
"content-type": "application/json",
|
|
808
|
-
};
|
|
809
|
-
b.bp("/list-custom-line-item-versions");
|
|
810
|
-
let body;
|
|
811
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
812
|
-
Arn: [],
|
|
813
|
-
Filters: (_) => smithyClient._json(_),
|
|
814
|
-
MaxResults: [],
|
|
815
|
-
NextToken: [],
|
|
816
|
-
}));
|
|
817
|
-
b.m("POST").h(headers).b(body);
|
|
818
|
-
return b.build();
|
|
819
|
-
};
|
|
820
|
-
const se_ListPricingPlansCommand = async (input, context) => {
|
|
821
|
-
const b = core.requestBuilder(input, context);
|
|
822
|
-
const headers = {
|
|
823
|
-
"content-type": "application/json",
|
|
824
|
-
};
|
|
825
|
-
b.bp("/list-pricing-plans");
|
|
826
|
-
let body;
|
|
827
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
828
|
-
BillingPeriod: [],
|
|
829
|
-
Filters: (_) => smithyClient._json(_),
|
|
830
|
-
MaxResults: [],
|
|
831
|
-
NextToken: [],
|
|
832
|
-
}));
|
|
833
|
-
b.m("POST").h(headers).b(body);
|
|
834
|
-
return b.build();
|
|
835
|
-
};
|
|
836
|
-
const se_ListPricingPlansAssociatedWithPricingRuleCommand = async (input, context) => {
|
|
837
|
-
const b = core.requestBuilder(input, context);
|
|
838
|
-
const headers = {
|
|
839
|
-
"content-type": "application/json",
|
|
840
|
-
};
|
|
841
|
-
b.bp("/list-pricing-plans-associated-with-pricing-rule");
|
|
842
|
-
let body;
|
|
843
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
844
|
-
BillingPeriod: [],
|
|
845
|
-
MaxResults: [],
|
|
846
|
-
NextToken: [],
|
|
847
|
-
PricingRuleArn: [],
|
|
848
|
-
}));
|
|
849
|
-
b.m("POST").h(headers).b(body);
|
|
850
|
-
return b.build();
|
|
851
|
-
};
|
|
852
|
-
const se_ListPricingRulesCommand = async (input, context) => {
|
|
853
|
-
const b = core.requestBuilder(input, context);
|
|
854
|
-
const headers = {
|
|
855
|
-
"content-type": "application/json",
|
|
856
|
-
};
|
|
857
|
-
b.bp("/list-pricing-rules");
|
|
858
|
-
let body;
|
|
859
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
860
|
-
BillingPeriod: [],
|
|
861
|
-
Filters: (_) => smithyClient._json(_),
|
|
862
|
-
MaxResults: [],
|
|
863
|
-
NextToken: [],
|
|
864
|
-
}));
|
|
865
|
-
b.m("POST").h(headers).b(body);
|
|
866
|
-
return b.build();
|
|
867
|
-
};
|
|
868
|
-
const se_ListPricingRulesAssociatedToPricingPlanCommand = async (input, context) => {
|
|
869
|
-
const b = core.requestBuilder(input, context);
|
|
870
|
-
const headers = {
|
|
871
|
-
"content-type": "application/json",
|
|
872
|
-
};
|
|
873
|
-
b.bp("/list-pricing-rules-associated-to-pricing-plan");
|
|
874
|
-
let body;
|
|
875
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
876
|
-
BillingPeriod: [],
|
|
877
|
-
MaxResults: [],
|
|
878
|
-
NextToken: [],
|
|
879
|
-
PricingPlanArn: [],
|
|
880
|
-
}));
|
|
881
|
-
b.m("POST").h(headers).b(body);
|
|
882
|
-
return b.build();
|
|
883
|
-
};
|
|
884
|
-
const se_ListResourcesAssociatedToCustomLineItemCommand = async (input, context) => {
|
|
885
|
-
const b = core.requestBuilder(input, context);
|
|
886
|
-
const headers = {
|
|
887
|
-
"content-type": "application/json",
|
|
888
|
-
};
|
|
889
|
-
b.bp("/list-resources-associated-to-custom-line-item");
|
|
890
|
-
let body;
|
|
891
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
892
|
-
Arn: [],
|
|
893
|
-
BillingPeriod: [],
|
|
894
|
-
Filters: (_) => smithyClient._json(_),
|
|
895
|
-
MaxResults: [],
|
|
896
|
-
NextToken: [],
|
|
897
|
-
}));
|
|
898
|
-
b.m("POST").h(headers).b(body);
|
|
899
|
-
return b.build();
|
|
900
|
-
};
|
|
901
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
902
|
-
const b = core.requestBuilder(input, context);
|
|
903
|
-
const headers = {};
|
|
904
|
-
b.bp("/tags/{ResourceArn}");
|
|
905
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
906
|
-
let body;
|
|
907
|
-
b.m("GET").h(headers).b(body);
|
|
908
|
-
return b.build();
|
|
909
|
-
};
|
|
910
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
911
|
-
const b = core.requestBuilder(input, context);
|
|
912
|
-
const headers = {
|
|
913
|
-
"content-type": "application/json",
|
|
914
|
-
};
|
|
915
|
-
b.bp("/tags/{ResourceArn}");
|
|
916
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
917
|
-
let body;
|
|
918
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
919
|
-
Tags: (_) => smithyClient._json(_),
|
|
920
|
-
}));
|
|
921
|
-
b.m("POST").h(headers).b(body);
|
|
922
|
-
return b.build();
|
|
923
|
-
};
|
|
924
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
925
|
-
const b = core.requestBuilder(input, context);
|
|
926
|
-
const headers = {};
|
|
927
|
-
b.bp("/tags/{ResourceArn}");
|
|
928
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
929
|
-
const query = smithyClient.map({
|
|
930
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
931
|
-
});
|
|
932
|
-
let body;
|
|
933
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
934
|
-
return b.build();
|
|
935
|
-
};
|
|
936
|
-
const se_UpdateBillingGroupCommand = async (input, context) => {
|
|
937
|
-
const b = core.requestBuilder(input, context);
|
|
938
|
-
const headers = {
|
|
939
|
-
"content-type": "application/json",
|
|
940
|
-
};
|
|
941
|
-
b.bp("/update-billing-group");
|
|
942
|
-
let body;
|
|
943
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
944
|
-
AccountGrouping: (_) => smithyClient._json(_),
|
|
945
|
-
Arn: [],
|
|
946
|
-
ComputationPreference: (_) => smithyClient._json(_),
|
|
947
|
-
Description: [],
|
|
948
|
-
Name: [],
|
|
949
|
-
Status: [],
|
|
950
|
-
}));
|
|
951
|
-
b.m("POST").h(headers).b(body);
|
|
952
|
-
return b.build();
|
|
953
|
-
};
|
|
954
|
-
const se_UpdateCustomLineItemCommand = async (input, context) => {
|
|
955
|
-
const b = core.requestBuilder(input, context);
|
|
956
|
-
const headers = {
|
|
957
|
-
"content-type": "application/json",
|
|
958
|
-
};
|
|
959
|
-
b.bp("/update-custom-line-item");
|
|
960
|
-
let body;
|
|
961
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
962
|
-
Arn: [],
|
|
963
|
-
BillingPeriodRange: (_) => smithyClient._json(_),
|
|
964
|
-
ChargeDetails: (_) => se_UpdateCustomLineItemChargeDetails(_),
|
|
965
|
-
Description: [],
|
|
966
|
-
Name: [],
|
|
967
|
-
}));
|
|
968
|
-
b.m("POST").h(headers).b(body);
|
|
969
|
-
return b.build();
|
|
970
|
-
};
|
|
971
|
-
const se_UpdatePricingPlanCommand = async (input, context) => {
|
|
972
|
-
const b = core.requestBuilder(input, context);
|
|
973
|
-
const headers = {
|
|
974
|
-
"content-type": "application/json",
|
|
975
|
-
};
|
|
976
|
-
b.bp("/update-pricing-plan");
|
|
977
|
-
let body;
|
|
978
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
979
|
-
Arn: [],
|
|
980
|
-
Description: [],
|
|
981
|
-
Name: [],
|
|
982
|
-
}));
|
|
983
|
-
b.m("PUT").h(headers).b(body);
|
|
984
|
-
return b.build();
|
|
985
|
-
};
|
|
986
|
-
const se_UpdatePricingRuleCommand = async (input, context) => {
|
|
987
|
-
const b = core.requestBuilder(input, context);
|
|
988
|
-
const headers = {
|
|
989
|
-
"content-type": "application/json",
|
|
990
|
-
};
|
|
991
|
-
b.bp("/update-pricing-rule");
|
|
992
|
-
let body;
|
|
993
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
994
|
-
Arn: [],
|
|
995
|
-
Description: [],
|
|
996
|
-
ModifierPercentage: (_) => smithyClient.serializeFloat(_),
|
|
997
|
-
Name: [],
|
|
998
|
-
Tiering: (_) => smithyClient._json(_),
|
|
999
|
-
Type: [],
|
|
1000
|
-
}));
|
|
1001
|
-
b.m("PUT").h(headers).b(body);
|
|
1002
|
-
return b.build();
|
|
1003
|
-
};
|
|
1004
|
-
const de_AssociateAccountsCommand = async (output, context) => {
|
|
1005
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1006
|
-
return de_CommandError(output, context);
|
|
1007
|
-
}
|
|
1008
|
-
const contents = smithyClient.map({
|
|
1009
|
-
$metadata: deserializeMetadata(output),
|
|
1010
|
-
});
|
|
1011
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1012
|
-
const doc = smithyClient.take(data, {
|
|
1013
|
-
Arn: smithyClient.expectString,
|
|
1014
|
-
});
|
|
1015
|
-
Object.assign(contents, doc);
|
|
1016
|
-
return contents;
|
|
1017
|
-
};
|
|
1018
|
-
const de_AssociatePricingRulesCommand = async (output, context) => {
|
|
1019
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1020
|
-
return de_CommandError(output, context);
|
|
1021
|
-
}
|
|
1022
|
-
const contents = smithyClient.map({
|
|
1023
|
-
$metadata: deserializeMetadata(output),
|
|
1024
|
-
});
|
|
1025
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1026
|
-
const doc = smithyClient.take(data, {
|
|
1027
|
-
Arn: smithyClient.expectString,
|
|
1028
|
-
});
|
|
1029
|
-
Object.assign(contents, doc);
|
|
1030
|
-
return contents;
|
|
1031
|
-
};
|
|
1032
|
-
const de_BatchAssociateResourcesToCustomLineItemCommand = async (output, context) => {
|
|
1033
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1034
|
-
return de_CommandError(output, context);
|
|
1035
|
-
}
|
|
1036
|
-
const contents = smithyClient.map({
|
|
1037
|
-
$metadata: deserializeMetadata(output),
|
|
1038
|
-
});
|
|
1039
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1040
|
-
const doc = smithyClient.take(data, {
|
|
1041
|
-
FailedAssociatedResources: smithyClient._json,
|
|
1042
|
-
SuccessfullyAssociatedResources: smithyClient._json,
|
|
1043
|
-
});
|
|
1044
|
-
Object.assign(contents, doc);
|
|
1045
|
-
return contents;
|
|
1046
|
-
};
|
|
1047
|
-
const de_BatchDisassociateResourcesFromCustomLineItemCommand = async (output, context) => {
|
|
1048
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1049
|
-
return de_CommandError(output, context);
|
|
1050
|
-
}
|
|
1051
|
-
const contents = smithyClient.map({
|
|
1052
|
-
$metadata: deserializeMetadata(output),
|
|
1053
|
-
});
|
|
1054
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1055
|
-
const doc = smithyClient.take(data, {
|
|
1056
|
-
FailedDisassociatedResources: smithyClient._json,
|
|
1057
|
-
SuccessfullyDisassociatedResources: smithyClient._json,
|
|
1058
|
-
});
|
|
1059
|
-
Object.assign(contents, doc);
|
|
1060
|
-
return contents;
|
|
1061
|
-
};
|
|
1062
|
-
const de_CreateBillingGroupCommand = async (output, context) => {
|
|
1063
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1064
|
-
return de_CommandError(output, context);
|
|
1065
|
-
}
|
|
1066
|
-
const contents = smithyClient.map({
|
|
1067
|
-
$metadata: deserializeMetadata(output),
|
|
1068
|
-
});
|
|
1069
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1070
|
-
const doc = smithyClient.take(data, {
|
|
1071
|
-
Arn: smithyClient.expectString,
|
|
1072
|
-
});
|
|
1073
|
-
Object.assign(contents, doc);
|
|
1074
|
-
return contents;
|
|
1075
|
-
};
|
|
1076
|
-
const de_CreateCustomLineItemCommand = async (output, context) => {
|
|
1077
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1078
|
-
return de_CommandError(output, context);
|
|
1079
|
-
}
|
|
1080
|
-
const contents = smithyClient.map({
|
|
1081
|
-
$metadata: deserializeMetadata(output),
|
|
1082
|
-
});
|
|
1083
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1084
|
-
const doc = smithyClient.take(data, {
|
|
1085
|
-
Arn: smithyClient.expectString,
|
|
1086
|
-
});
|
|
1087
|
-
Object.assign(contents, doc);
|
|
1088
|
-
return contents;
|
|
1089
|
-
};
|
|
1090
|
-
const de_CreatePricingPlanCommand = async (output, context) => {
|
|
1091
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1092
|
-
return de_CommandError(output, context);
|
|
1093
|
-
}
|
|
1094
|
-
const contents = smithyClient.map({
|
|
1095
|
-
$metadata: deserializeMetadata(output),
|
|
1096
|
-
});
|
|
1097
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1098
|
-
const doc = smithyClient.take(data, {
|
|
1099
|
-
Arn: smithyClient.expectString,
|
|
1100
|
-
});
|
|
1101
|
-
Object.assign(contents, doc);
|
|
1102
|
-
return contents;
|
|
1103
|
-
};
|
|
1104
|
-
const de_CreatePricingRuleCommand = async (output, context) => {
|
|
1105
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1106
|
-
return de_CommandError(output, context);
|
|
1107
|
-
}
|
|
1108
|
-
const contents = smithyClient.map({
|
|
1109
|
-
$metadata: deserializeMetadata(output),
|
|
1110
|
-
});
|
|
1111
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1112
|
-
const doc = smithyClient.take(data, {
|
|
1113
|
-
Arn: smithyClient.expectString,
|
|
1114
|
-
});
|
|
1115
|
-
Object.assign(contents, doc);
|
|
1116
|
-
return contents;
|
|
1117
|
-
};
|
|
1118
|
-
const de_DeleteBillingGroupCommand = async (output, context) => {
|
|
1119
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1120
|
-
return de_CommandError(output, context);
|
|
1121
|
-
}
|
|
1122
|
-
const contents = smithyClient.map({
|
|
1123
|
-
$metadata: deserializeMetadata(output),
|
|
1124
|
-
});
|
|
1125
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1126
|
-
const doc = smithyClient.take(data, {
|
|
1127
|
-
Arn: smithyClient.expectString,
|
|
1128
|
-
});
|
|
1129
|
-
Object.assign(contents, doc);
|
|
1130
|
-
return contents;
|
|
1131
|
-
};
|
|
1132
|
-
const de_DeleteCustomLineItemCommand = async (output, context) => {
|
|
1133
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1134
|
-
return de_CommandError(output, context);
|
|
1135
|
-
}
|
|
1136
|
-
const contents = smithyClient.map({
|
|
1137
|
-
$metadata: deserializeMetadata(output),
|
|
1138
|
-
});
|
|
1139
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1140
|
-
const doc = smithyClient.take(data, {
|
|
1141
|
-
Arn: smithyClient.expectString,
|
|
1142
|
-
});
|
|
1143
|
-
Object.assign(contents, doc);
|
|
1144
|
-
return contents;
|
|
1145
|
-
};
|
|
1146
|
-
const de_DeletePricingPlanCommand = async (output, context) => {
|
|
1147
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1148
|
-
return de_CommandError(output, context);
|
|
1149
|
-
}
|
|
1150
|
-
const contents = smithyClient.map({
|
|
1151
|
-
$metadata: deserializeMetadata(output),
|
|
1152
|
-
});
|
|
1153
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1154
|
-
const doc = smithyClient.take(data, {
|
|
1155
|
-
Arn: smithyClient.expectString,
|
|
1156
|
-
});
|
|
1157
|
-
Object.assign(contents, doc);
|
|
1158
|
-
return contents;
|
|
1159
|
-
};
|
|
1160
|
-
const de_DeletePricingRuleCommand = async (output, context) => {
|
|
1161
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1162
|
-
return de_CommandError(output, context);
|
|
1163
|
-
}
|
|
1164
|
-
const contents = smithyClient.map({
|
|
1165
|
-
$metadata: deserializeMetadata(output),
|
|
1166
|
-
});
|
|
1167
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1168
|
-
const doc = smithyClient.take(data, {
|
|
1169
|
-
Arn: smithyClient.expectString,
|
|
1170
|
-
});
|
|
1171
|
-
Object.assign(contents, doc);
|
|
1172
|
-
return contents;
|
|
1173
|
-
};
|
|
1174
|
-
const de_DisassociateAccountsCommand = async (output, context) => {
|
|
1175
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1176
|
-
return de_CommandError(output, context);
|
|
1177
|
-
}
|
|
1178
|
-
const contents = smithyClient.map({
|
|
1179
|
-
$metadata: deserializeMetadata(output),
|
|
1180
|
-
});
|
|
1181
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1182
|
-
const doc = smithyClient.take(data, {
|
|
1183
|
-
Arn: smithyClient.expectString,
|
|
1184
|
-
});
|
|
1185
|
-
Object.assign(contents, doc);
|
|
1186
|
-
return contents;
|
|
1187
|
-
};
|
|
1188
|
-
const de_DisassociatePricingRulesCommand = async (output, context) => {
|
|
1189
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1190
|
-
return de_CommandError(output, context);
|
|
1191
|
-
}
|
|
1192
|
-
const contents = smithyClient.map({
|
|
1193
|
-
$metadata: deserializeMetadata(output),
|
|
1194
|
-
});
|
|
1195
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1196
|
-
const doc = smithyClient.take(data, {
|
|
1197
|
-
Arn: smithyClient.expectString,
|
|
1198
|
-
});
|
|
1199
|
-
Object.assign(contents, doc);
|
|
1200
|
-
return contents;
|
|
1201
|
-
};
|
|
1202
|
-
const de_GetBillingGroupCostReportCommand = async (output, context) => {
|
|
1203
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1204
|
-
return de_CommandError(output, context);
|
|
1205
|
-
}
|
|
1206
|
-
const contents = smithyClient.map({
|
|
1207
|
-
$metadata: deserializeMetadata(output),
|
|
1208
|
-
});
|
|
1209
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1210
|
-
const doc = smithyClient.take(data, {
|
|
1211
|
-
BillingGroupCostReportResults: smithyClient._json,
|
|
1212
|
-
NextToken: smithyClient.expectString,
|
|
1213
|
-
});
|
|
1214
|
-
Object.assign(contents, doc);
|
|
1215
|
-
return contents;
|
|
1216
|
-
};
|
|
1217
|
-
const de_ListAccountAssociationsCommand = async (output, context) => {
|
|
1218
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1219
|
-
return de_CommandError(output, context);
|
|
1220
|
-
}
|
|
1221
|
-
const contents = smithyClient.map({
|
|
1222
|
-
$metadata: deserializeMetadata(output),
|
|
1223
|
-
});
|
|
1224
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1225
|
-
const doc = smithyClient.take(data, {
|
|
1226
|
-
LinkedAccounts: smithyClient._json,
|
|
1227
|
-
NextToken: smithyClient.expectString,
|
|
1228
|
-
});
|
|
1229
|
-
Object.assign(contents, doc);
|
|
1230
|
-
return contents;
|
|
1231
|
-
};
|
|
1232
|
-
const de_ListBillingGroupCostReportsCommand = async (output, context) => {
|
|
1233
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1234
|
-
return de_CommandError(output, context);
|
|
1235
|
-
}
|
|
1236
|
-
const contents = smithyClient.map({
|
|
1237
|
-
$metadata: deserializeMetadata(output),
|
|
1238
|
-
});
|
|
1239
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1240
|
-
const doc = smithyClient.take(data, {
|
|
1241
|
-
BillingGroupCostReports: smithyClient._json,
|
|
1242
|
-
NextToken: smithyClient.expectString,
|
|
1243
|
-
});
|
|
1244
|
-
Object.assign(contents, doc);
|
|
1245
|
-
return contents;
|
|
1246
|
-
};
|
|
1247
|
-
const de_ListBillingGroupsCommand = async (output, context) => {
|
|
1248
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1249
|
-
return de_CommandError(output, context);
|
|
1250
|
-
}
|
|
1251
|
-
const contents = smithyClient.map({
|
|
1252
|
-
$metadata: deserializeMetadata(output),
|
|
1253
|
-
});
|
|
1254
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1255
|
-
const doc = smithyClient.take(data, {
|
|
1256
|
-
BillingGroups: smithyClient._json,
|
|
1257
|
-
NextToken: smithyClient.expectString,
|
|
1258
|
-
});
|
|
1259
|
-
Object.assign(contents, doc);
|
|
1260
|
-
return contents;
|
|
1261
|
-
};
|
|
1262
|
-
const de_ListCustomLineItemsCommand = async (output, context) => {
|
|
1263
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1264
|
-
return de_CommandError(output, context);
|
|
1265
|
-
}
|
|
1266
|
-
const contents = smithyClient.map({
|
|
1267
|
-
$metadata: deserializeMetadata(output),
|
|
1268
|
-
});
|
|
1269
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1270
|
-
const doc = smithyClient.take(data, {
|
|
1271
|
-
CustomLineItems: (_) => de_CustomLineItemList(_),
|
|
1272
|
-
NextToken: smithyClient.expectString,
|
|
1273
|
-
});
|
|
1274
|
-
Object.assign(contents, doc);
|
|
1275
|
-
return contents;
|
|
1276
|
-
};
|
|
1277
|
-
const de_ListCustomLineItemVersionsCommand = async (output, context) => {
|
|
1278
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1279
|
-
return de_CommandError(output, context);
|
|
1280
|
-
}
|
|
1281
|
-
const contents = smithyClient.map({
|
|
1282
|
-
$metadata: deserializeMetadata(output),
|
|
1283
|
-
});
|
|
1284
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1285
|
-
const doc = smithyClient.take(data, {
|
|
1286
|
-
CustomLineItemVersions: (_) => de_CustomLineItemVersionList(_),
|
|
1287
|
-
NextToken: smithyClient.expectString,
|
|
1288
|
-
});
|
|
1289
|
-
Object.assign(contents, doc);
|
|
1290
|
-
return contents;
|
|
1291
|
-
};
|
|
1292
|
-
const de_ListPricingPlansCommand = async (output, context) => {
|
|
1293
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1294
|
-
return de_CommandError(output, context);
|
|
1295
|
-
}
|
|
1296
|
-
const contents = smithyClient.map({
|
|
1297
|
-
$metadata: deserializeMetadata(output),
|
|
1298
|
-
});
|
|
1299
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1300
|
-
const doc = smithyClient.take(data, {
|
|
1301
|
-
BillingPeriod: smithyClient.expectString,
|
|
1302
|
-
NextToken: smithyClient.expectString,
|
|
1303
|
-
PricingPlans: smithyClient._json,
|
|
1304
|
-
});
|
|
1305
|
-
Object.assign(contents, doc);
|
|
1306
|
-
return contents;
|
|
1307
|
-
};
|
|
1308
|
-
const de_ListPricingPlansAssociatedWithPricingRuleCommand = async (output, context) => {
|
|
1309
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1310
|
-
return de_CommandError(output, context);
|
|
1311
|
-
}
|
|
1312
|
-
const contents = smithyClient.map({
|
|
1313
|
-
$metadata: deserializeMetadata(output),
|
|
1314
|
-
});
|
|
1315
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1316
|
-
const doc = smithyClient.take(data, {
|
|
1317
|
-
BillingPeriod: smithyClient.expectString,
|
|
1318
|
-
NextToken: smithyClient.expectString,
|
|
1319
|
-
PricingPlanArns: smithyClient._json,
|
|
1320
|
-
PricingRuleArn: smithyClient.expectString,
|
|
1321
|
-
});
|
|
1322
|
-
Object.assign(contents, doc);
|
|
1323
|
-
return contents;
|
|
1324
|
-
};
|
|
1325
|
-
const de_ListPricingRulesCommand = async (output, context) => {
|
|
1326
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1327
|
-
return de_CommandError(output, context);
|
|
1328
|
-
}
|
|
1329
|
-
const contents = smithyClient.map({
|
|
1330
|
-
$metadata: deserializeMetadata(output),
|
|
1331
|
-
});
|
|
1332
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1333
|
-
const doc = smithyClient.take(data, {
|
|
1334
|
-
BillingPeriod: smithyClient.expectString,
|
|
1335
|
-
NextToken: smithyClient.expectString,
|
|
1336
|
-
PricingRules: (_) => de_PricingRuleList(_),
|
|
1337
|
-
});
|
|
1338
|
-
Object.assign(contents, doc);
|
|
1339
|
-
return contents;
|
|
1340
|
-
};
|
|
1341
|
-
const de_ListPricingRulesAssociatedToPricingPlanCommand = async (output, context) => {
|
|
1342
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1343
|
-
return de_CommandError(output, context);
|
|
1344
|
-
}
|
|
1345
|
-
const contents = smithyClient.map({
|
|
1346
|
-
$metadata: deserializeMetadata(output),
|
|
1347
|
-
});
|
|
1348
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1349
|
-
const doc = smithyClient.take(data, {
|
|
1350
|
-
BillingPeriod: smithyClient.expectString,
|
|
1351
|
-
NextToken: smithyClient.expectString,
|
|
1352
|
-
PricingPlanArn: smithyClient.expectString,
|
|
1353
|
-
PricingRuleArns: smithyClient._json,
|
|
1354
|
-
});
|
|
1355
|
-
Object.assign(contents, doc);
|
|
1356
|
-
return contents;
|
|
1357
|
-
};
|
|
1358
|
-
const de_ListResourcesAssociatedToCustomLineItemCommand = async (output, context) => {
|
|
1359
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1360
|
-
return de_CommandError(output, context);
|
|
1361
|
-
}
|
|
1362
|
-
const contents = smithyClient.map({
|
|
1363
|
-
$metadata: deserializeMetadata(output),
|
|
1364
|
-
});
|
|
1365
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1366
|
-
const doc = smithyClient.take(data, {
|
|
1367
|
-
Arn: smithyClient.expectString,
|
|
1368
|
-
AssociatedResources: smithyClient._json,
|
|
1369
|
-
NextToken: smithyClient.expectString,
|
|
1370
|
-
});
|
|
1371
|
-
Object.assign(contents, doc);
|
|
1372
|
-
return contents;
|
|
1373
|
-
};
|
|
1374
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1375
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1376
|
-
return de_CommandError(output, context);
|
|
1377
|
-
}
|
|
1378
|
-
const contents = smithyClient.map({
|
|
1379
|
-
$metadata: deserializeMetadata(output),
|
|
1380
|
-
});
|
|
1381
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1382
|
-
const doc = smithyClient.take(data, {
|
|
1383
|
-
Tags: smithyClient._json,
|
|
1384
|
-
});
|
|
1385
|
-
Object.assign(contents, doc);
|
|
1386
|
-
return contents;
|
|
1387
|
-
};
|
|
1388
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1389
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1390
|
-
return de_CommandError(output, context);
|
|
1391
|
-
}
|
|
1392
|
-
const contents = smithyClient.map({
|
|
1393
|
-
$metadata: deserializeMetadata(output),
|
|
1394
|
-
});
|
|
1395
|
-
await smithyClient.collectBody(output.body, context);
|
|
1396
|
-
return contents;
|
|
1397
|
-
};
|
|
1398
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1399
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1400
|
-
return de_CommandError(output, context);
|
|
1401
|
-
}
|
|
1402
|
-
const contents = smithyClient.map({
|
|
1403
|
-
$metadata: deserializeMetadata(output),
|
|
1404
|
-
});
|
|
1405
|
-
await smithyClient.collectBody(output.body, context);
|
|
1406
|
-
return contents;
|
|
1407
|
-
};
|
|
1408
|
-
const de_UpdateBillingGroupCommand = async (output, context) => {
|
|
1409
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1410
|
-
return de_CommandError(output, context);
|
|
1411
|
-
}
|
|
1412
|
-
const contents = smithyClient.map({
|
|
1413
|
-
$metadata: deserializeMetadata(output),
|
|
1414
|
-
});
|
|
1415
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1416
|
-
const doc = smithyClient.take(data, {
|
|
1417
|
-
AccountGrouping: smithyClient._json,
|
|
1418
|
-
Arn: smithyClient.expectString,
|
|
1419
|
-
Description: smithyClient.expectString,
|
|
1420
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1421
|
-
Name: smithyClient.expectString,
|
|
1422
|
-
PricingPlanArn: smithyClient.expectString,
|
|
1423
|
-
PrimaryAccountId: smithyClient.expectString,
|
|
1424
|
-
Size: smithyClient.expectLong,
|
|
1425
|
-
Status: smithyClient.expectString,
|
|
1426
|
-
StatusReason: smithyClient.expectString,
|
|
1427
|
-
});
|
|
1428
|
-
Object.assign(contents, doc);
|
|
1429
|
-
return contents;
|
|
1430
|
-
};
|
|
1431
|
-
const de_UpdateCustomLineItemCommand = async (output, context) => {
|
|
1432
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1433
|
-
return de_CommandError(output, context);
|
|
1434
|
-
}
|
|
1435
|
-
const contents = smithyClient.map({
|
|
1436
|
-
$metadata: deserializeMetadata(output),
|
|
1437
|
-
});
|
|
1438
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1439
|
-
const doc = smithyClient.take(data, {
|
|
1440
|
-
Arn: smithyClient.expectString,
|
|
1441
|
-
AssociationSize: smithyClient.expectLong,
|
|
1442
|
-
BillingGroupArn: smithyClient.expectString,
|
|
1443
|
-
ChargeDetails: (_) => de_ListCustomLineItemChargeDetails(_),
|
|
1444
|
-
Description: smithyClient.expectString,
|
|
1445
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1446
|
-
Name: smithyClient.expectString,
|
|
1447
|
-
});
|
|
1448
|
-
Object.assign(contents, doc);
|
|
1449
|
-
return contents;
|
|
1450
|
-
};
|
|
1451
|
-
const de_UpdatePricingPlanCommand = async (output, context) => {
|
|
1452
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1453
|
-
return de_CommandError(output, context);
|
|
1454
|
-
}
|
|
1455
|
-
const contents = smithyClient.map({
|
|
1456
|
-
$metadata: deserializeMetadata(output),
|
|
1457
|
-
});
|
|
1458
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1459
|
-
const doc = smithyClient.take(data, {
|
|
1460
|
-
Arn: smithyClient.expectString,
|
|
1461
|
-
Description: smithyClient.expectString,
|
|
1462
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1463
|
-
Name: smithyClient.expectString,
|
|
1464
|
-
Size: smithyClient.expectLong,
|
|
1465
|
-
});
|
|
1466
|
-
Object.assign(contents, doc);
|
|
1467
|
-
return contents;
|
|
1468
|
-
};
|
|
1469
|
-
const de_UpdatePricingRuleCommand = async (output, context) => {
|
|
1470
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1471
|
-
return de_CommandError(output, context);
|
|
1472
|
-
}
|
|
1473
|
-
const contents = smithyClient.map({
|
|
1474
|
-
$metadata: deserializeMetadata(output),
|
|
1475
|
-
});
|
|
1476
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1477
|
-
const doc = smithyClient.take(data, {
|
|
1478
|
-
Arn: smithyClient.expectString,
|
|
1479
|
-
AssociatedPricingPlanCount: smithyClient.expectLong,
|
|
1480
|
-
BillingEntity: smithyClient.expectString,
|
|
1481
|
-
Description: smithyClient.expectString,
|
|
1482
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1483
|
-
ModifierPercentage: smithyClient.limitedParseDouble,
|
|
1484
|
-
Name: smithyClient.expectString,
|
|
1485
|
-
Operation: smithyClient.expectString,
|
|
1486
|
-
Scope: smithyClient.expectString,
|
|
1487
|
-
Service: smithyClient.expectString,
|
|
1488
|
-
Tiering: smithyClient._json,
|
|
1489
|
-
Type: smithyClient.expectString,
|
|
1490
|
-
UsageType: smithyClient.expectString,
|
|
1491
|
-
});
|
|
1492
|
-
Object.assign(contents, doc);
|
|
1493
|
-
return contents;
|
|
1494
|
-
};
|
|
1495
|
-
const de_CommandError = async (output, context) => {
|
|
1496
|
-
const parsedOutput = {
|
|
1497
|
-
...output,
|
|
1498
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1499
|
-
};
|
|
1500
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1501
|
-
switch (errorCode) {
|
|
1502
|
-
case "AccessDeniedException":
|
|
1503
|
-
case "com.amazonaws.billingconductor#AccessDeniedException":
|
|
1504
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1505
|
-
case "ConflictException":
|
|
1506
|
-
case "com.amazonaws.billingconductor#ConflictException":
|
|
1507
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1508
|
-
case "InternalServerException":
|
|
1509
|
-
case "com.amazonaws.billingconductor#InternalServerException":
|
|
1510
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1511
|
-
case "ResourceNotFoundException":
|
|
1512
|
-
case "com.amazonaws.billingconductor#ResourceNotFoundException":
|
|
1513
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1514
|
-
case "ServiceLimitExceededException":
|
|
1515
|
-
case "com.amazonaws.billingconductor#ServiceLimitExceededException":
|
|
1516
|
-
throw await de_ServiceLimitExceededExceptionRes(parsedOutput);
|
|
1517
|
-
case "ThrottlingException":
|
|
1518
|
-
case "com.amazonaws.billingconductor#ThrottlingException":
|
|
1519
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1520
|
-
case "ValidationException":
|
|
1521
|
-
case "com.amazonaws.billingconductor#ValidationException":
|
|
1522
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1523
|
-
default:
|
|
1524
|
-
const parsedBody = parsedOutput.body;
|
|
1525
|
-
return throwDefaultError({
|
|
1526
|
-
output,
|
|
1527
|
-
parsedBody,
|
|
1528
|
-
errorCode,
|
|
1529
|
-
});
|
|
1530
|
-
}
|
|
1531
|
-
};
|
|
1532
|
-
const throwDefaultError = smithyClient.withBaseException(BillingconductorServiceException);
|
|
1533
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1534
|
-
const contents = smithyClient.map({});
|
|
1535
|
-
const data = parsedOutput.body;
|
|
1536
|
-
const doc = smithyClient.take(data, {
|
|
1537
|
-
Message: smithyClient.expectString,
|
|
1538
|
-
});
|
|
1539
|
-
Object.assign(contents, doc);
|
|
1540
|
-
const exception = new AccessDeniedException({
|
|
1541
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1542
|
-
...contents,
|
|
1543
|
-
});
|
|
1544
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1545
|
-
};
|
|
1546
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1547
|
-
const contents = smithyClient.map({});
|
|
1548
|
-
const data = parsedOutput.body;
|
|
1549
|
-
const doc = smithyClient.take(data, {
|
|
1550
|
-
Message: smithyClient.expectString,
|
|
1551
|
-
Reason: smithyClient.expectString,
|
|
1552
|
-
ResourceId: smithyClient.expectString,
|
|
1553
|
-
ResourceType: smithyClient.expectString,
|
|
1554
|
-
});
|
|
1555
|
-
Object.assign(contents, doc);
|
|
1556
|
-
const exception = new ConflictException({
|
|
1557
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1558
|
-
...contents,
|
|
1559
|
-
});
|
|
1560
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1561
|
-
};
|
|
1562
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1563
|
-
const contents = smithyClient.map({
|
|
1564
|
-
[_RAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1565
|
-
});
|
|
1566
|
-
const data = parsedOutput.body;
|
|
1567
|
-
const doc = smithyClient.take(data, {
|
|
1568
|
-
Message: smithyClient.expectString,
|
|
1569
|
-
});
|
|
1570
|
-
Object.assign(contents, doc);
|
|
1571
|
-
const exception = new InternalServerException({
|
|
1572
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1573
|
-
...contents,
|
|
1574
|
-
});
|
|
1575
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1576
|
-
};
|
|
1577
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1578
|
-
const contents = smithyClient.map({});
|
|
1579
|
-
const data = parsedOutput.body;
|
|
1580
|
-
const doc = smithyClient.take(data, {
|
|
1581
|
-
Message: smithyClient.expectString,
|
|
1582
|
-
ResourceId: smithyClient.expectString,
|
|
1583
|
-
ResourceType: smithyClient.expectString,
|
|
1584
|
-
});
|
|
1585
|
-
Object.assign(contents, doc);
|
|
1586
|
-
const exception = new ResourceNotFoundException({
|
|
1587
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1588
|
-
...contents,
|
|
1589
|
-
});
|
|
1590
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1591
|
-
};
|
|
1592
|
-
const de_ServiceLimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
1593
|
-
const contents = smithyClient.map({});
|
|
1594
|
-
const data = parsedOutput.body;
|
|
1595
|
-
const doc = smithyClient.take(data, {
|
|
1596
|
-
LimitCode: smithyClient.expectString,
|
|
1597
|
-
Message: smithyClient.expectString,
|
|
1598
|
-
ResourceId: smithyClient.expectString,
|
|
1599
|
-
ResourceType: smithyClient.expectString,
|
|
1600
|
-
ServiceCode: smithyClient.expectString,
|
|
1601
|
-
});
|
|
1602
|
-
Object.assign(contents, doc);
|
|
1603
|
-
const exception = new ServiceLimitExceededException({
|
|
1604
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1605
|
-
...contents,
|
|
1606
|
-
});
|
|
1607
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1608
|
-
};
|
|
1609
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1610
|
-
const contents = smithyClient.map({
|
|
1611
|
-
[_RAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1612
|
-
});
|
|
1613
|
-
const data = parsedOutput.body;
|
|
1614
|
-
const doc = smithyClient.take(data, {
|
|
1615
|
-
Message: smithyClient.expectString,
|
|
1616
|
-
});
|
|
1617
|
-
Object.assign(contents, doc);
|
|
1618
|
-
const exception = new ThrottlingException({
|
|
1619
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1620
|
-
...contents,
|
|
1621
|
-
});
|
|
1622
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1623
|
-
};
|
|
1624
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1625
|
-
const contents = smithyClient.map({});
|
|
1626
|
-
const data = parsedOutput.body;
|
|
1627
|
-
const doc = smithyClient.take(data, {
|
|
1628
|
-
Fields: smithyClient._json,
|
|
1629
|
-
Message: smithyClient.expectString,
|
|
1630
|
-
Reason: smithyClient.expectString,
|
|
1631
|
-
});
|
|
1632
|
-
Object.assign(contents, doc);
|
|
1633
|
-
const exception = new ValidationException({
|
|
1634
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1635
|
-
...contents,
|
|
1636
|
-
});
|
|
1637
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1638
|
-
};
|
|
1639
|
-
const se_CustomLineItemChargeDetails = (input, context) => {
|
|
1640
|
-
return smithyClient.take(input, {
|
|
1641
|
-
Flat: (_) => se_CustomLineItemFlatChargeDetails(_),
|
|
1642
|
-
LineItemFilters: smithyClient._json,
|
|
1643
|
-
Percentage: (_) => se_CustomLineItemPercentageChargeDetails(_),
|
|
1644
|
-
Type: [],
|
|
1645
|
-
});
|
|
1646
|
-
};
|
|
1647
|
-
const se_CustomLineItemFlatChargeDetails = (input, context) => {
|
|
1648
|
-
return smithyClient.take(input, {
|
|
1649
|
-
ChargeValue: smithyClient.serializeFloat,
|
|
1650
|
-
});
|
|
1651
|
-
};
|
|
1652
|
-
const se_CustomLineItemPercentageChargeDetails = (input, context) => {
|
|
1653
|
-
return smithyClient.take(input, {
|
|
1654
|
-
AssociatedValues: smithyClient._json,
|
|
1655
|
-
PercentageValue: smithyClient.serializeFloat,
|
|
1656
|
-
});
|
|
1657
|
-
};
|
|
1658
|
-
const se_UpdateCustomLineItemChargeDetails = (input, context) => {
|
|
1659
|
-
return smithyClient.take(input, {
|
|
1660
|
-
Flat: (_) => se_UpdateCustomLineItemFlatChargeDetails(_),
|
|
1661
|
-
LineItemFilters: smithyClient._json,
|
|
1662
|
-
Percentage: (_) => se_UpdateCustomLineItemPercentageChargeDetails(_),
|
|
1663
|
-
});
|
|
1664
|
-
};
|
|
1665
|
-
const se_UpdateCustomLineItemFlatChargeDetails = (input, context) => {
|
|
1666
|
-
return smithyClient.take(input, {
|
|
1667
|
-
ChargeValue: smithyClient.serializeFloat,
|
|
1668
|
-
});
|
|
1669
|
-
};
|
|
1670
|
-
const se_UpdateCustomLineItemPercentageChargeDetails = (input, context) => {
|
|
1671
|
-
return smithyClient.take(input, {
|
|
1672
|
-
PercentageValue: smithyClient.serializeFloat,
|
|
1673
|
-
});
|
|
1674
|
-
};
|
|
1675
|
-
const de_CustomLineItemList = (output, context) => {
|
|
1676
|
-
const retVal = (output || [])
|
|
1677
|
-
.filter((e) => e != null)
|
|
1678
|
-
.map((entry) => {
|
|
1679
|
-
return de_CustomLineItemListElement(entry);
|
|
1680
|
-
});
|
|
1681
|
-
return retVal;
|
|
1682
|
-
};
|
|
1683
|
-
const de_CustomLineItemListElement = (output, context) => {
|
|
1684
|
-
return smithyClient.take(output, {
|
|
1685
|
-
AccountId: smithyClient.expectString,
|
|
1686
|
-
Arn: smithyClient.expectString,
|
|
1687
|
-
AssociationSize: smithyClient.expectLong,
|
|
1688
|
-
BillingGroupArn: smithyClient.expectString,
|
|
1689
|
-
ChargeDetails: (_) => de_ListCustomLineItemChargeDetails(_),
|
|
1690
|
-
ComputationRule: smithyClient.expectString,
|
|
1691
|
-
CreationTime: smithyClient.expectLong,
|
|
1692
|
-
CurrencyCode: smithyClient.expectString,
|
|
1693
|
-
Description: smithyClient.expectString,
|
|
1694
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1695
|
-
Name: smithyClient.expectString,
|
|
1696
|
-
PresentationDetails: smithyClient._json,
|
|
1697
|
-
ProductCode: smithyClient.expectString,
|
|
1698
|
-
});
|
|
1699
|
-
};
|
|
1700
|
-
const de_CustomLineItemVersionList = (output, context) => {
|
|
1701
|
-
const retVal = (output || [])
|
|
1702
|
-
.filter((e) => e != null)
|
|
1703
|
-
.map((entry) => {
|
|
1704
|
-
return de_CustomLineItemVersionListElement(entry);
|
|
1705
|
-
});
|
|
1706
|
-
return retVal;
|
|
1707
|
-
};
|
|
1708
|
-
const de_CustomLineItemVersionListElement = (output, context) => {
|
|
1709
|
-
return smithyClient.take(output, {
|
|
1710
|
-
AccountId: smithyClient.expectString,
|
|
1711
|
-
Arn: smithyClient.expectString,
|
|
1712
|
-
AssociationSize: smithyClient.expectLong,
|
|
1713
|
-
BillingGroupArn: smithyClient.expectString,
|
|
1714
|
-
ChargeDetails: (_) => de_ListCustomLineItemChargeDetails(_),
|
|
1715
|
-
ComputationRule: smithyClient.expectString,
|
|
1716
|
-
CreationTime: smithyClient.expectLong,
|
|
1717
|
-
CurrencyCode: smithyClient.expectString,
|
|
1718
|
-
Description: smithyClient.expectString,
|
|
1719
|
-
EndBillingPeriod: smithyClient.expectString,
|
|
1720
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1721
|
-
Name: smithyClient.expectString,
|
|
1722
|
-
PresentationDetails: smithyClient._json,
|
|
1723
|
-
ProductCode: smithyClient.expectString,
|
|
1724
|
-
StartBillingPeriod: smithyClient.expectString,
|
|
1725
|
-
StartTime: smithyClient.expectLong,
|
|
1726
|
-
});
|
|
1727
|
-
};
|
|
1728
|
-
const de_ListCustomLineItemChargeDetails = (output, context) => {
|
|
1729
|
-
return smithyClient.take(output, {
|
|
1730
|
-
Flat: (_) => de_ListCustomLineItemFlatChargeDetails(_),
|
|
1731
|
-
LineItemFilters: smithyClient._json,
|
|
1732
|
-
Percentage: (_) => de_ListCustomLineItemPercentageChargeDetails(_),
|
|
1733
|
-
Type: smithyClient.expectString,
|
|
1734
|
-
});
|
|
1735
|
-
};
|
|
1736
|
-
const de_ListCustomLineItemFlatChargeDetails = (output, context) => {
|
|
1737
|
-
return smithyClient.take(output, {
|
|
1738
|
-
ChargeValue: smithyClient.limitedParseDouble,
|
|
1739
|
-
});
|
|
1740
|
-
};
|
|
1741
|
-
const de_ListCustomLineItemPercentageChargeDetails = (output, context) => {
|
|
1742
|
-
return smithyClient.take(output, {
|
|
1743
|
-
PercentageValue: smithyClient.limitedParseDouble,
|
|
1744
|
-
});
|
|
1745
|
-
};
|
|
1746
|
-
const de_PricingRuleList = (output, context) => {
|
|
1747
|
-
const retVal = (output || [])
|
|
1748
|
-
.filter((e) => e != null)
|
|
1749
|
-
.map((entry) => {
|
|
1750
|
-
return de_PricingRuleListElement(entry);
|
|
1751
|
-
});
|
|
1752
|
-
return retVal;
|
|
1753
|
-
};
|
|
1754
|
-
const de_PricingRuleListElement = (output, context) => {
|
|
1755
|
-
return smithyClient.take(output, {
|
|
1756
|
-
Arn: smithyClient.expectString,
|
|
1757
|
-
AssociatedPricingPlanCount: smithyClient.expectLong,
|
|
1758
|
-
BillingEntity: smithyClient.expectString,
|
|
1759
|
-
CreationTime: smithyClient.expectLong,
|
|
1760
|
-
Description: smithyClient.expectString,
|
|
1761
|
-
LastModifiedTime: smithyClient.expectLong,
|
|
1762
|
-
ModifierPercentage: smithyClient.limitedParseDouble,
|
|
1763
|
-
Name: smithyClient.expectString,
|
|
1764
|
-
Operation: smithyClient.expectString,
|
|
1765
|
-
Scope: smithyClient.expectString,
|
|
1766
|
-
Service: smithyClient.expectString,
|
|
1767
|
-
Tiering: smithyClient._json,
|
|
1768
|
-
Type: smithyClient.expectString,
|
|
1769
|
-
UsageType: smithyClient.expectString,
|
|
1770
|
-
});
|
|
1771
|
-
};
|
|
1772
|
-
const deserializeMetadata = (output) => ({
|
|
1773
|
-
httpStatusCode: output.statusCode,
|
|
1774
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1775
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1776
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1777
|
-
});
|
|
1778
|
-
const _CT = "ClientToken";
|
|
368
|
+
const _A = "Arn";
|
|
369
|
+
const _AA = "AutoAssociate";
|
|
370
|
+
const _AAI = "AssociateAccountsInput";
|
|
371
|
+
const _AAL = "AccountAssociationsList";
|
|
372
|
+
const _AALE = "AccountAssociationsListElement";
|
|
373
|
+
const _AAO = "AssociateAccountsOutput";
|
|
374
|
+
const _AAs = "AssociateAccounts";
|
|
375
|
+
const _ADE = "AccessDeniedException";
|
|
376
|
+
const _AE = "AccountEmail";
|
|
377
|
+
const _AG = "AccountGrouping";
|
|
378
|
+
const _AI = "AccountId";
|
|
379
|
+
const _AIc = "AccountIds";
|
|
380
|
+
const _AL = "AttributesList";
|
|
381
|
+
const _AN = "AccountName";
|
|
382
|
+
const _APPC = "AssociatedPricingPlanCount";
|
|
383
|
+
const _APR = "AssociatePricingRules";
|
|
384
|
+
const _APRI = "AssociatePricingRulesInput";
|
|
385
|
+
const _APRO = "AssociatePricingRulesOutput";
|
|
386
|
+
const _AR = "AssociatedResources";
|
|
387
|
+
const _ARE = "AssociateResourceError";
|
|
388
|
+
const _ARRE = "AssociateResourceResponseElement";
|
|
389
|
+
const _ARRL = "AssociateResourcesResponseList";
|
|
390
|
+
const _AS = "AssociationSize";
|
|
391
|
+
const _AV = "AssociatedValues";
|
|
392
|
+
const _AWSC = "AWSCost";
|
|
393
|
+
const _Ac = "Activated";
|
|
394
|
+
const _Ar = "Arns";
|
|
395
|
+
const _As = "Association";
|
|
396
|
+
const _At = "Attribute";
|
|
397
|
+
const _Att = "Attributes";
|
|
398
|
+
const _BARTCLI = "BatchAssociateResourcesToCustomLineItem";
|
|
399
|
+
const _BARTCLII = "BatchAssociateResourcesToCustomLineItemInput";
|
|
400
|
+
const _BARTCLIO = "BatchAssociateResourcesToCustomLineItemOutput";
|
|
401
|
+
const _BDRFCLI = "BatchDisassociateResourcesFromCustomLineItem";
|
|
402
|
+
const _BDRFCLII = "BatchDisassociateResourcesFromCustomLineItemInput";
|
|
403
|
+
const _BDRFCLIO = "BatchDisassociateResourcesFromCustomLineItemOutput";
|
|
404
|
+
const _BE = "BillingEntity";
|
|
405
|
+
const _BG = "BillingGroups";
|
|
406
|
+
const _BGA = "BillingGroupArn";
|
|
407
|
+
const _BGAi = "BillingGroupArns";
|
|
408
|
+
const _BGCR = "BillingGroupCostReports";
|
|
409
|
+
const _BGCRE = "BillingGroupCostReportElement";
|
|
410
|
+
const _BGCRL = "BillingGroupCostReportList";
|
|
411
|
+
const _BGCRR = "BillingGroupCostReportResults";
|
|
412
|
+
const _BGCRRE = "BillingGroupCostReportResultElement";
|
|
413
|
+
const _BGCRRL = "BillingGroupCostReportResultsList";
|
|
414
|
+
const _BGD = "BillingGroupDescription";
|
|
415
|
+
const _BGL = "BillingGroupList";
|
|
416
|
+
const _BGLE = "BillingGroupListElement";
|
|
417
|
+
const _BGN = "BillingGroupName";
|
|
418
|
+
const _BP = "BillingPeriod";
|
|
419
|
+
const _BPR = "BillingPeriodRange";
|
|
420
|
+
const _C = "Currency";
|
|
421
|
+
const _CBG = "CreateBillingGroup";
|
|
422
|
+
const _CBGI = "CreateBillingGroupInput";
|
|
423
|
+
const _CBGO = "CreateBillingGroupOutput";
|
|
424
|
+
const _CC = "CurrencyCode";
|
|
425
|
+
const _CCLI = "CreateCustomLineItem";
|
|
426
|
+
const _CCLII = "CreateCustomLineItemInput";
|
|
427
|
+
const _CCLIO = "CreateCustomLineItemOutput";
|
|
428
|
+
const _CD = "ChargeDetails";
|
|
429
|
+
const _CE = "ConflictException";
|
|
430
|
+
const _CFTC = "CreateFreeTierConfig";
|
|
431
|
+
const _CLI = "CustomLineItems";
|
|
432
|
+
const _CLIBPR = "CustomLineItemBillingPeriodRange";
|
|
433
|
+
const _CLICD = "CustomLineItemChargeDetails";
|
|
434
|
+
const _CLID = "CustomLineItemDescription";
|
|
435
|
+
const _CLIFCD = "CustomLineItemFlatChargeDetails";
|
|
436
|
+
const _CLIL = "CustomLineItemList";
|
|
437
|
+
const _CLILE = "CustomLineItemListElement";
|
|
438
|
+
const _CLIN = "CustomLineItemName";
|
|
439
|
+
const _CLINL = "CustomLineItemNameList";
|
|
440
|
+
const _CLIPCD = "CustomLineItemPercentageChargeDetails";
|
|
441
|
+
const _CLIV = "CustomLineItemVersions";
|
|
442
|
+
const _CLIVL = "CustomLineItemVersionList";
|
|
443
|
+
const _CLIVLE = "CustomLineItemVersionListElement";
|
|
444
|
+
const _CP = "ComputationPreference";
|
|
445
|
+
const _CPP = "CreatePricingPlan";
|
|
446
|
+
const _CPPI = "CreatePricingPlanInput";
|
|
447
|
+
const _CPPO = "CreatePricingPlanOutput";
|
|
448
|
+
const _CPR = "CreatePricingRule";
|
|
449
|
+
const _CPRI = "CreatePricingRuleInput";
|
|
450
|
+
const _CPRO = "CreatePricingRuleOutput";
|
|
451
|
+
const _CR = "ComputationRule";
|
|
452
|
+
const _CT = "CreationTime";
|
|
453
|
+
const _CTI = "CreateTieringInput";
|
|
454
|
+
const _CTl = "ClientToken";
|
|
455
|
+
const _CV = "ChargeValue";
|
|
456
|
+
const _D = "Description";
|
|
457
|
+
const _DA = "DisassociateAccounts";
|
|
458
|
+
const _DAI = "DisassociateAccountsInput";
|
|
459
|
+
const _DAO = "DisassociateAccountsOutput";
|
|
460
|
+
const _DBG = "DeleteBillingGroup";
|
|
461
|
+
const _DBGI = "DeleteBillingGroupInput";
|
|
462
|
+
const _DBGO = "DeleteBillingGroupOutput";
|
|
463
|
+
const _DCLI = "DeleteCustomLineItem";
|
|
464
|
+
const _DCLII = "DeleteCustomLineItemInput";
|
|
465
|
+
const _DCLIO = "DeleteCustomLineItemOutput";
|
|
466
|
+
const _DPP = "DeletePricingPlan";
|
|
467
|
+
const _DPPI = "DeletePricingPlanInput";
|
|
468
|
+
const _DPPO = "DeletePricingPlanOutput";
|
|
469
|
+
const _DPR = "DeletePricingRule";
|
|
470
|
+
const _DPRI = "DeletePricingRuleInput";
|
|
471
|
+
const _DPRIi = "DisassociatePricingRulesInput";
|
|
472
|
+
const _DPRO = "DeletePricingRuleOutput";
|
|
473
|
+
const _DPROi = "DisassociatePricingRulesOutput";
|
|
474
|
+
const _DPRi = "DisassociatePricingRules";
|
|
475
|
+
const _DRRE = "DisassociateResourceResponseElement";
|
|
476
|
+
const _DRRL = "DisassociateResourcesResponseList";
|
|
477
|
+
const _E = "Error";
|
|
478
|
+
const _EBP = "EndBillingPeriod";
|
|
479
|
+
const _EEBP = "ExclusiveEndBillingPeriod";
|
|
480
|
+
const _F = "Flat";
|
|
481
|
+
const _FAR = "FailedAssociatedResources";
|
|
482
|
+
const _FDR = "FailedDisassociatedResources";
|
|
483
|
+
const _FT = "FreeTier";
|
|
484
|
+
const _FTC = "FreeTierConfig";
|
|
485
|
+
const _Fi = "Filters";
|
|
486
|
+
const _Fie = "Fields";
|
|
487
|
+
const _GB = "GroupBy";
|
|
488
|
+
const _GBGCR = "GetBillingGroupCostReport";
|
|
489
|
+
const _GBGCRI = "GetBillingGroupCostReportInput";
|
|
490
|
+
const _GBGCRO = "GetBillingGroupCostReportOutput";
|
|
491
|
+
const _ISBP = "InclusiveStartBillingPeriod";
|
|
492
|
+
const _ISE = "InternalServerException";
|
|
493
|
+
const _K = "Key";
|
|
494
|
+
const _LA = "LinkedAccounts";
|
|
495
|
+
const _LAA = "ListAccountAssociations";
|
|
496
|
+
const _LAAF = "ListAccountAssociationsFilter";
|
|
497
|
+
const _LAAI = "ListAccountAssociationsInput";
|
|
498
|
+
const _LAAO = "ListAccountAssociationsOutput";
|
|
499
|
+
const _LAI = "LinkedAccountIds";
|
|
500
|
+
const _LBG = "ListBillingGroups";
|
|
501
|
+
const _LBGAG = "ListBillingGroupAccountGrouping";
|
|
502
|
+
const _LBGCR = "ListBillingGroupCostReports";
|
|
503
|
+
const _LBGCRF = "ListBillingGroupCostReportsFilter";
|
|
504
|
+
const _LBGCRI = "ListBillingGroupCostReportsInput";
|
|
505
|
+
const _LBGCRO = "ListBillingGroupCostReportsOutput";
|
|
506
|
+
const _LBGF = "ListBillingGroupsFilter";
|
|
507
|
+
const _LBGI = "ListBillingGroupsInput";
|
|
508
|
+
const _LBGO = "ListBillingGroupsOutput";
|
|
509
|
+
const _LC = "LimitCode";
|
|
510
|
+
const _LCLI = "ListCustomLineItems";
|
|
511
|
+
const _LCLICD = "ListCustomLineItemChargeDetails";
|
|
512
|
+
const _LCLIF = "ListCustomLineItemsFilter";
|
|
513
|
+
const _LCLIFCD = "ListCustomLineItemFlatChargeDetails";
|
|
514
|
+
const _LCLII = "ListCustomLineItemsInput";
|
|
515
|
+
const _LCLIO = "ListCustomLineItemsOutput";
|
|
516
|
+
const _LCLIPCD = "ListCustomLineItemPercentageChargeDetails";
|
|
517
|
+
const _LCLIV = "ListCustomLineItemVersions";
|
|
518
|
+
const _LCLIVBPRF = "ListCustomLineItemVersionsBillingPeriodRangeFilter";
|
|
519
|
+
const _LCLIVF = "ListCustomLineItemVersionsFilter";
|
|
520
|
+
const _LCLIVI = "ListCustomLineItemVersionsInput";
|
|
521
|
+
const _LCLIVO = "ListCustomLineItemVersionsOutput";
|
|
522
|
+
const _LIF = "LineItemFilters";
|
|
523
|
+
const _LIFL = "LineItemFiltersList";
|
|
524
|
+
const _LIFi = "LineItemFilter";
|
|
525
|
+
const _LMT = "LastModifiedTime";
|
|
526
|
+
const _LPP = "ListPricingPlans";
|
|
527
|
+
const _LPPAWPR = "ListPricingPlansAssociatedWithPricingRule";
|
|
528
|
+
const _LPPAWPRI = "ListPricingPlansAssociatedWithPricingRuleInput";
|
|
529
|
+
const _LPPAWPRO = "ListPricingPlansAssociatedWithPricingRuleOutput";
|
|
530
|
+
const _LPPF = "ListPricingPlansFilter";
|
|
531
|
+
const _LPPI = "ListPricingPlansInput";
|
|
532
|
+
const _LPPO = "ListPricingPlansOutput";
|
|
533
|
+
const _LPR = "ListPricingRules";
|
|
534
|
+
const _LPRATPP = "ListPricingRulesAssociatedToPricingPlan";
|
|
535
|
+
const _LPRATPPI = "ListPricingRulesAssociatedToPricingPlanInput";
|
|
536
|
+
const _LPRATPPO = "ListPricingRulesAssociatedToPricingPlanOutput";
|
|
537
|
+
const _LPRF = "ListPricingRulesFilter";
|
|
538
|
+
const _LPRI = "ListPricingRulesInput";
|
|
539
|
+
const _LPRO = "ListPricingRulesOutput";
|
|
540
|
+
const _LRATCLI = "ListResourcesAssociatedToCustomLineItem";
|
|
541
|
+
const _LRATCLIF = "ListResourcesAssociatedToCustomLineItemFilter";
|
|
542
|
+
const _LRATCLII = "ListResourcesAssociatedToCustomLineItemInput";
|
|
543
|
+
const _LRATCLIO = "ListResourcesAssociatedToCustomLineItemOutput";
|
|
544
|
+
const _LRATCLIRE = "ListResourcesAssociatedToCustomLineItemResponseElement";
|
|
545
|
+
const _LRATCLIRL = "ListResourcesAssociatedToCustomLineItemResponseList";
|
|
546
|
+
const _LTFR = "ListTagsForResource";
|
|
547
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
548
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
549
|
+
const _M = "Message";
|
|
550
|
+
const _MO = "MatchOption";
|
|
551
|
+
const _MP = "MarginPercentage";
|
|
552
|
+
const _MPo = "ModifierPercentage";
|
|
553
|
+
const _MR = "MaxResults";
|
|
554
|
+
const _Ma = "Margin";
|
|
555
|
+
const _N = "Name";
|
|
556
|
+
const _NT = "NextToken";
|
|
557
|
+
const _Na = "Names";
|
|
558
|
+
const _O = "Operation";
|
|
559
|
+
const _P = "Percentage";
|
|
560
|
+
const _PAI = "PrimaryAccountId";
|
|
561
|
+
const _PC = "ProformaCost";
|
|
562
|
+
const _PCr = "ProductCode";
|
|
563
|
+
const _PD = "PresentationDetails";
|
|
564
|
+
const _PO = "PresentationObject";
|
|
565
|
+
const _PP = "PricingPlan";
|
|
566
|
+
const _PPA = "PricingPlanArn";
|
|
567
|
+
const _PPAr = "PricingPlanArns";
|
|
568
|
+
const _PPD = "PricingPlanDescription";
|
|
569
|
+
const _PPL = "PricingPlanList";
|
|
570
|
+
const _PPLE = "PricingPlanListElement";
|
|
571
|
+
const _PPN = "PricingPlanName";
|
|
572
|
+
const _PPr = "PricingPlans";
|
|
573
|
+
const _PR = "PricingRules";
|
|
574
|
+
const _PRA = "PricingRuleArns";
|
|
575
|
+
const _PRAr = "PricingRuleArn";
|
|
576
|
+
const _PRD = "PricingRuleDescription";
|
|
577
|
+
const _PRL = "PricingRuleList";
|
|
578
|
+
const _PRLE = "PricingRuleListElement";
|
|
579
|
+
const _PRN = "PricingRuleName";
|
|
580
|
+
const _PV = "PercentageValue";
|
|
581
|
+
const _R = "Reason";
|
|
582
|
+
const _RA = "ResourceArns";
|
|
1779
583
|
const _RAS = "RetryAfterSeconds";
|
|
584
|
+
const _RA_ = "Retry-After";
|
|
585
|
+
const _RAe = "ResourceArn";
|
|
586
|
+
const _RI = "ResourceId";
|
|
587
|
+
const _RNFE = "ResourceNotFoundException";
|
|
588
|
+
const _RT = "ResourceType";
|
|
589
|
+
const _Re = "Relationship";
|
|
590
|
+
const _S = "Size";
|
|
591
|
+
const _SAR = "SuccessfullyAssociatedResources";
|
|
592
|
+
const _SBP = "StartBillingPeriod";
|
|
593
|
+
const _SC = "ServiceCode";
|
|
594
|
+
const _SDR = "SuccessfullyDisassociatedResources";
|
|
595
|
+
const _SLEE = "ServiceLimitExceededException";
|
|
596
|
+
const _SR = "StatusReason";
|
|
597
|
+
const _ST = "StartTime";
|
|
598
|
+
const _Sc = "Scope";
|
|
599
|
+
const _Se = "Service";
|
|
600
|
+
const _St = "Status";
|
|
601
|
+
const _Sta = "Statuses";
|
|
602
|
+
const _T = "Tags";
|
|
603
|
+
const _TA = "TargetArn";
|
|
604
|
+
const _TE = "ThrottlingException";
|
|
1780
605
|
const _TK = "TagKeys";
|
|
1781
|
-
const
|
|
606
|
+
const _TR = "TagResource";
|
|
607
|
+
const _TRR = "TagResourceRequest";
|
|
608
|
+
const _TRRa = "TagResourceResponse";
|
|
609
|
+
const _Ti = "Tiering";
|
|
610
|
+
const _Ty = "Type";
|
|
611
|
+
const _UBG = "UpdateBillingGroup";
|
|
612
|
+
const _UBGAG = "UpdateBillingGroupAccountGrouping";
|
|
613
|
+
const _UBGI = "UpdateBillingGroupInput";
|
|
614
|
+
const _UBGO = "UpdateBillingGroupOutput";
|
|
615
|
+
const _UCLI = "UpdateCustomLineItem";
|
|
616
|
+
const _UCLICD = "UpdateCustomLineItemChargeDetails";
|
|
617
|
+
const _UCLIFCD = "UpdateCustomLineItemFlatChargeDetails";
|
|
618
|
+
const _UCLII = "UpdateCustomLineItemInput";
|
|
619
|
+
const _UCLIO = "UpdateCustomLineItemOutput";
|
|
620
|
+
const _UCLIPCD = "UpdateCustomLineItemPercentageChargeDetails";
|
|
621
|
+
const _UFTC = "UpdateFreeTierConfig";
|
|
622
|
+
const _UPP = "UpdatePricingPlan";
|
|
623
|
+
const _UPPI = "UpdatePricingPlanInput";
|
|
624
|
+
const _UPPO = "UpdatePricingPlanOutput";
|
|
625
|
+
const _UPR = "UpdatePricingRule";
|
|
626
|
+
const _UPRI = "UpdatePricingRuleInput";
|
|
627
|
+
const _UPRO = "UpdatePricingRuleOutput";
|
|
628
|
+
const _UR = "UntagResource";
|
|
629
|
+
const _URR = "UntagResourceRequest";
|
|
630
|
+
const _URRn = "UntagResourceResponse";
|
|
631
|
+
const _UT = "UsageType";
|
|
632
|
+
const _UTI = "UpdateTieringInput";
|
|
633
|
+
const _V = "Value";
|
|
634
|
+
const _VE = "ValidationException";
|
|
635
|
+
const _VEF = "ValidationExceptionField";
|
|
636
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
637
|
+
const _Va = "Values";
|
|
638
|
+
const _XACT = "X-Amzn-Client-Token";
|
|
639
|
+
const _c = "client";
|
|
640
|
+
const _e = "error";
|
|
641
|
+
const _h = "http";
|
|
642
|
+
const _hE = "httpError";
|
|
643
|
+
const _hH = "httpHeader";
|
|
644
|
+
const _hQ = "httpQuery";
|
|
645
|
+
const _iT = "idempotencyToken";
|
|
646
|
+
const _s = "server";
|
|
647
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.billingconductor";
|
|
1782
648
|
const _tK = "tagKeys";
|
|
1783
|
-
const
|
|
649
|
+
const n0 = "com.amazonaws.billingconductor";
|
|
650
|
+
var AccountEmail = [0, n0, _AE, 8, 0];
|
|
651
|
+
var AccountName = [0, n0, _AN, 8, 0];
|
|
652
|
+
var BillingGroupDescription = [0, n0, _BGD, 8, 0];
|
|
653
|
+
var BillingGroupName = [0, n0, _BGN, 8, 0];
|
|
654
|
+
var CustomLineItemDescription = [0, n0, _CLID, 8, 0];
|
|
655
|
+
var CustomLineItemName = [0, n0, _CLIN, 8, 0];
|
|
656
|
+
var PricingPlanDescription = [0, n0, _PPD, 8, 0];
|
|
657
|
+
var PricingPlanName = [0, n0, _PPN, 8, 0];
|
|
658
|
+
var PricingRuleDescription = [0, n0, _PRD, 8, 0];
|
|
659
|
+
var PricingRuleName = [0, n0, _PRN, 8, 0];
|
|
660
|
+
var AccessDeniedException = [
|
|
661
|
+
-3,
|
|
662
|
+
n0,
|
|
663
|
+
_ADE,
|
|
664
|
+
{
|
|
665
|
+
[_e]: _c,
|
|
666
|
+
[_hE]: 403,
|
|
667
|
+
},
|
|
668
|
+
[_M],
|
|
669
|
+
[0],
|
|
670
|
+
];
|
|
671
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
672
|
+
var AccountAssociationsListElement = [
|
|
673
|
+
3,
|
|
674
|
+
n0,
|
|
675
|
+
_AALE,
|
|
676
|
+
0,
|
|
677
|
+
[_AI, _BGA, _AN, _AE],
|
|
678
|
+
[0, 0, [() => AccountName, 0], [() => AccountEmail, 0]],
|
|
679
|
+
];
|
|
680
|
+
var AccountGrouping = [3, n0, _AG, 0, [_LAI, _AA], [64 | 0, 2]];
|
|
681
|
+
var AssociateAccountsInput = [3, n0, _AAI, 0, [_A, _AIc], [0, 64 | 0]];
|
|
682
|
+
var AssociateAccountsOutput = [3, n0, _AAO, 0, [_A], [0]];
|
|
683
|
+
var AssociatePricingRulesInput = [3, n0, _APRI, 0, [_A, _PRA], [0, 64 | 0]];
|
|
684
|
+
var AssociatePricingRulesOutput = [3, n0, _APRO, 0, [_A], [0]];
|
|
685
|
+
var AssociateResourceError = [3, n0, _ARE, 0, [_M, _R], [0, 0]];
|
|
686
|
+
var AssociateResourceResponseElement = [
|
|
687
|
+
3,
|
|
688
|
+
n0,
|
|
689
|
+
_ARRE,
|
|
690
|
+
0,
|
|
691
|
+
[_A, _E],
|
|
692
|
+
[0, () => AssociateResourceError],
|
|
693
|
+
];
|
|
694
|
+
var Attribute = [3, n0, _At, 0, [_K, _V], [0, 0]];
|
|
695
|
+
var BatchAssociateResourcesToCustomLineItemInput = [
|
|
696
|
+
3,
|
|
697
|
+
n0,
|
|
698
|
+
_BARTCLII,
|
|
699
|
+
0,
|
|
700
|
+
[_TA, _RA, _BPR],
|
|
701
|
+
[0, 64 | 0, () => CustomLineItemBillingPeriodRange],
|
|
702
|
+
];
|
|
703
|
+
var BatchAssociateResourcesToCustomLineItemOutput = [
|
|
704
|
+
3,
|
|
705
|
+
n0,
|
|
706
|
+
_BARTCLIO,
|
|
707
|
+
0,
|
|
708
|
+
[_SAR, _FAR],
|
|
709
|
+
[() => AssociateResourcesResponseList, () => AssociateResourcesResponseList],
|
|
710
|
+
];
|
|
711
|
+
var BatchDisassociateResourcesFromCustomLineItemInput = [
|
|
712
|
+
3,
|
|
713
|
+
n0,
|
|
714
|
+
_BDRFCLII,
|
|
715
|
+
0,
|
|
716
|
+
[_TA, _RA, _BPR],
|
|
717
|
+
[0, 64 | 0, () => CustomLineItemBillingPeriodRange],
|
|
718
|
+
];
|
|
719
|
+
var BatchDisassociateResourcesFromCustomLineItemOutput = [
|
|
720
|
+
3,
|
|
721
|
+
n0,
|
|
722
|
+
_BDRFCLIO,
|
|
723
|
+
0,
|
|
724
|
+
[_SDR, _FDR],
|
|
725
|
+
[() => DisassociateResourcesResponseList, () => DisassociateResourcesResponseList],
|
|
726
|
+
];
|
|
727
|
+
var BillingGroupCostReportElement = [
|
|
728
|
+
3,
|
|
729
|
+
n0,
|
|
730
|
+
_BGCRE,
|
|
731
|
+
0,
|
|
732
|
+
[_A, _AWSC, _PC, _Ma, _MP, _C],
|
|
733
|
+
[0, 0, 0, 0, 0, 0],
|
|
734
|
+
];
|
|
735
|
+
var BillingGroupCostReportResultElement = [
|
|
736
|
+
3,
|
|
737
|
+
n0,
|
|
738
|
+
_BGCRRE,
|
|
739
|
+
0,
|
|
740
|
+
[_A, _AWSC, _PC, _Ma, _MP, _C, _Att],
|
|
741
|
+
[0, 0, 0, 0, 0, 0, () => AttributesList],
|
|
742
|
+
];
|
|
743
|
+
var BillingGroupListElement = [
|
|
744
|
+
3,
|
|
745
|
+
n0,
|
|
746
|
+
_BGLE,
|
|
747
|
+
0,
|
|
748
|
+
[_N, _A, _D, _PAI, _CP, _S, _CT, _LMT, _St, _SR, _AG],
|
|
749
|
+
[
|
|
750
|
+
[() => BillingGroupName, 0],
|
|
751
|
+
0,
|
|
752
|
+
[() => BillingGroupDescription, 0],
|
|
753
|
+
0,
|
|
754
|
+
() => ComputationPreference,
|
|
755
|
+
1,
|
|
756
|
+
1,
|
|
757
|
+
1,
|
|
758
|
+
0,
|
|
759
|
+
0,
|
|
760
|
+
() => ListBillingGroupAccountGrouping,
|
|
761
|
+
],
|
|
762
|
+
];
|
|
763
|
+
var BillingPeriodRange = [3, n0, _BPR, 0, [_ISBP, _EEBP], [0, 0]];
|
|
764
|
+
var ComputationPreference = [3, n0, _CP, 0, [_PPA], [0]];
|
|
765
|
+
var ConflictException = [
|
|
766
|
+
-3,
|
|
767
|
+
n0,
|
|
768
|
+
_CE,
|
|
769
|
+
{
|
|
770
|
+
[_e]: _c,
|
|
771
|
+
[_hE]: 409,
|
|
772
|
+
},
|
|
773
|
+
[_M, _RI, _RT, _R],
|
|
774
|
+
[0, 0, 0, 0],
|
|
775
|
+
];
|
|
776
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
777
|
+
var CreateBillingGroupInput = [
|
|
778
|
+
3,
|
|
779
|
+
n0,
|
|
780
|
+
_CBGI,
|
|
781
|
+
0,
|
|
782
|
+
[_CTl, _N, _AG, _CP, _PAI, _D, _T],
|
|
783
|
+
[
|
|
784
|
+
[
|
|
785
|
+
0,
|
|
786
|
+
{
|
|
787
|
+
[_hH]: _XACT,
|
|
788
|
+
[_iT]: 1,
|
|
789
|
+
},
|
|
790
|
+
],
|
|
791
|
+
[() => BillingGroupName, 0],
|
|
792
|
+
() => AccountGrouping,
|
|
793
|
+
() => ComputationPreference,
|
|
794
|
+
0,
|
|
795
|
+
[() => BillingGroupDescription, 0],
|
|
796
|
+
128 | 0,
|
|
797
|
+
],
|
|
798
|
+
];
|
|
799
|
+
var CreateBillingGroupOutput = [3, n0, _CBGO, 0, [_A], [0]];
|
|
800
|
+
var CreateCustomLineItemInput = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_CCLII,
|
|
804
|
+
0,
|
|
805
|
+
[_CTl, _N, _D, _BGA, _BPR, _T, _CD, _AI, _CR, _PD],
|
|
806
|
+
[
|
|
807
|
+
[
|
|
808
|
+
0,
|
|
809
|
+
{
|
|
810
|
+
[_hH]: _XACT,
|
|
811
|
+
[_iT]: 1,
|
|
812
|
+
},
|
|
813
|
+
],
|
|
814
|
+
[() => CustomLineItemName, 0],
|
|
815
|
+
[() => CustomLineItemDescription, 0],
|
|
816
|
+
0,
|
|
817
|
+
() => CustomLineItemBillingPeriodRange,
|
|
818
|
+
128 | 0,
|
|
819
|
+
() => CustomLineItemChargeDetails,
|
|
820
|
+
0,
|
|
821
|
+
0,
|
|
822
|
+
() => PresentationObject,
|
|
823
|
+
],
|
|
824
|
+
];
|
|
825
|
+
var CreateCustomLineItemOutput = [3, n0, _CCLIO, 0, [_A], [0]];
|
|
826
|
+
var CreateFreeTierConfig = [3, n0, _CFTC, 0, [_Ac], [2]];
|
|
827
|
+
var CreatePricingPlanInput = [
|
|
828
|
+
3,
|
|
829
|
+
n0,
|
|
830
|
+
_CPPI,
|
|
831
|
+
0,
|
|
832
|
+
[_CTl, _N, _D, _PRA, _T],
|
|
833
|
+
[
|
|
834
|
+
[
|
|
835
|
+
0,
|
|
836
|
+
{
|
|
837
|
+
[_hH]: _XACT,
|
|
838
|
+
[_iT]: 1,
|
|
839
|
+
},
|
|
840
|
+
],
|
|
841
|
+
[() => PricingPlanName, 0],
|
|
842
|
+
[() => PricingPlanDescription, 0],
|
|
843
|
+
64 | 0,
|
|
844
|
+
128 | 0,
|
|
845
|
+
],
|
|
846
|
+
];
|
|
847
|
+
var CreatePricingPlanOutput = [3, n0, _CPPO, 0, [_A], [0]];
|
|
848
|
+
var CreatePricingRuleInput = [
|
|
849
|
+
3,
|
|
850
|
+
n0,
|
|
851
|
+
_CPRI,
|
|
852
|
+
0,
|
|
853
|
+
[_CTl, _N, _D, _Sc, _Ty, _MPo, _Se, _T, _BE, _Ti, _UT, _O],
|
|
854
|
+
[
|
|
855
|
+
[
|
|
856
|
+
0,
|
|
857
|
+
{
|
|
858
|
+
[_hH]: _XACT,
|
|
859
|
+
[_iT]: 1,
|
|
860
|
+
},
|
|
861
|
+
],
|
|
862
|
+
[() => PricingRuleName, 0],
|
|
863
|
+
[() => PricingRuleDescription, 0],
|
|
864
|
+
0,
|
|
865
|
+
0,
|
|
866
|
+
1,
|
|
867
|
+
0,
|
|
868
|
+
128 | 0,
|
|
869
|
+
0,
|
|
870
|
+
() => CreateTieringInput,
|
|
871
|
+
0,
|
|
872
|
+
0,
|
|
873
|
+
],
|
|
874
|
+
];
|
|
875
|
+
var CreatePricingRuleOutput = [3, n0, _CPRO, 0, [_A], [0]];
|
|
876
|
+
var CreateTieringInput = [3, n0, _CTI, 0, [_FT], [() => CreateFreeTierConfig]];
|
|
877
|
+
var CustomLineItemBillingPeriodRange = [3, n0, _CLIBPR, 0, [_ISBP, _EEBP], [0, 0]];
|
|
878
|
+
var CustomLineItemChargeDetails = [
|
|
879
|
+
3,
|
|
880
|
+
n0,
|
|
881
|
+
_CLICD,
|
|
882
|
+
0,
|
|
883
|
+
[_F, _P, _Ty, _LIF],
|
|
884
|
+
[() => CustomLineItemFlatChargeDetails, () => CustomLineItemPercentageChargeDetails, 0, () => LineItemFiltersList],
|
|
885
|
+
];
|
|
886
|
+
var CustomLineItemFlatChargeDetails = [3, n0, _CLIFCD, 0, [_CV], [1]];
|
|
887
|
+
var CustomLineItemListElement = [
|
|
888
|
+
3,
|
|
889
|
+
n0,
|
|
890
|
+
_CLILE,
|
|
891
|
+
0,
|
|
892
|
+
[_A, _N, _CD, _CC, _D, _PCr, _BGA, _CT, _LMT, _AS, _AI, _CR, _PD],
|
|
893
|
+
[
|
|
894
|
+
0,
|
|
895
|
+
[() => CustomLineItemName, 0],
|
|
896
|
+
() => ListCustomLineItemChargeDetails,
|
|
897
|
+
0,
|
|
898
|
+
[() => CustomLineItemDescription, 0],
|
|
899
|
+
0,
|
|
900
|
+
0,
|
|
901
|
+
1,
|
|
902
|
+
1,
|
|
903
|
+
1,
|
|
904
|
+
0,
|
|
905
|
+
0,
|
|
906
|
+
() => PresentationObject,
|
|
907
|
+
],
|
|
908
|
+
];
|
|
909
|
+
var CustomLineItemPercentageChargeDetails = [3, n0, _CLIPCD, 0, [_PV, _AV], [1, 64 | 0]];
|
|
910
|
+
var CustomLineItemVersionListElement = [
|
|
911
|
+
3,
|
|
912
|
+
n0,
|
|
913
|
+
_CLIVLE,
|
|
914
|
+
0,
|
|
915
|
+
[_N, _CD, _CC, _D, _PCr, _BGA, _CT, _LMT, _AS, _SBP, _EBP, _A, _ST, _AI, _CR, _PD],
|
|
916
|
+
[
|
|
917
|
+
[() => CustomLineItemName, 0],
|
|
918
|
+
() => ListCustomLineItemChargeDetails,
|
|
919
|
+
0,
|
|
920
|
+
[() => CustomLineItemDescription, 0],
|
|
921
|
+
0,
|
|
922
|
+
0,
|
|
923
|
+
1,
|
|
924
|
+
1,
|
|
925
|
+
1,
|
|
926
|
+
0,
|
|
927
|
+
0,
|
|
928
|
+
0,
|
|
929
|
+
1,
|
|
930
|
+
0,
|
|
931
|
+
0,
|
|
932
|
+
() => PresentationObject,
|
|
933
|
+
],
|
|
934
|
+
];
|
|
935
|
+
var DeleteBillingGroupInput = [3, n0, _DBGI, 0, [_A], [0]];
|
|
936
|
+
var DeleteBillingGroupOutput = [3, n0, _DBGO, 0, [_A], [0]];
|
|
937
|
+
var DeleteCustomLineItemInput = [
|
|
938
|
+
3,
|
|
939
|
+
n0,
|
|
940
|
+
_DCLII,
|
|
941
|
+
0,
|
|
942
|
+
[_A, _BPR],
|
|
943
|
+
[0, () => CustomLineItemBillingPeriodRange],
|
|
944
|
+
];
|
|
945
|
+
var DeleteCustomLineItemOutput = [3, n0, _DCLIO, 0, [_A], [0]];
|
|
946
|
+
var DeletePricingPlanInput = [3, n0, _DPPI, 0, [_A], [0]];
|
|
947
|
+
var DeletePricingPlanOutput = [3, n0, _DPPO, 0, [_A], [0]];
|
|
948
|
+
var DeletePricingRuleInput = [3, n0, _DPRI, 0, [_A], [0]];
|
|
949
|
+
var DeletePricingRuleOutput = [3, n0, _DPRO, 0, [_A], [0]];
|
|
950
|
+
var DisassociateAccountsInput = [3, n0, _DAI, 0, [_A, _AIc], [0, 64 | 0]];
|
|
951
|
+
var DisassociateAccountsOutput = [3, n0, _DAO, 0, [_A], [0]];
|
|
952
|
+
var DisassociatePricingRulesInput = [3, n0, _DPRIi, 0, [_A, _PRA], [0, 64 | 0]];
|
|
953
|
+
var DisassociatePricingRulesOutput = [3, n0, _DPROi, 0, [_A], [0]];
|
|
954
|
+
var DisassociateResourceResponseElement = [
|
|
955
|
+
3,
|
|
956
|
+
n0,
|
|
957
|
+
_DRRE,
|
|
958
|
+
0,
|
|
959
|
+
[_A, _E],
|
|
960
|
+
[0, () => AssociateResourceError],
|
|
961
|
+
];
|
|
962
|
+
var FreeTierConfig = [3, n0, _FTC, 0, [_Ac], [2]];
|
|
963
|
+
var GetBillingGroupCostReportInput = [
|
|
964
|
+
3,
|
|
965
|
+
n0,
|
|
966
|
+
_GBGCRI,
|
|
967
|
+
0,
|
|
968
|
+
[_A, _BPR, _GB, _MR, _NT],
|
|
969
|
+
[0, () => BillingPeriodRange, 64 | 0, 1, 0],
|
|
970
|
+
];
|
|
971
|
+
var GetBillingGroupCostReportOutput = [
|
|
972
|
+
3,
|
|
973
|
+
n0,
|
|
974
|
+
_GBGCRO,
|
|
975
|
+
0,
|
|
976
|
+
[_BGCRR, _NT],
|
|
977
|
+
[() => BillingGroupCostReportResultsList, 0],
|
|
978
|
+
];
|
|
979
|
+
var InternalServerException = [
|
|
980
|
+
-3,
|
|
981
|
+
n0,
|
|
982
|
+
_ISE,
|
|
983
|
+
{
|
|
984
|
+
[_e]: _s,
|
|
985
|
+
[_hE]: 500,
|
|
986
|
+
},
|
|
987
|
+
[_M, _RAS],
|
|
988
|
+
[
|
|
989
|
+
0,
|
|
990
|
+
[
|
|
991
|
+
1,
|
|
992
|
+
{
|
|
993
|
+
[_hH]: _RA_,
|
|
994
|
+
},
|
|
995
|
+
],
|
|
996
|
+
],
|
|
997
|
+
];
|
|
998
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
999
|
+
var LineItemFilter = [3, n0, _LIFi, 0, [_At, _MO, _Va], [0, 0, 64 | 0]];
|
|
1000
|
+
var ListAccountAssociationsFilter = [3, n0, _LAAF, 0, [_As, _AI, _AIc], [0, 0, 64 | 0]];
|
|
1001
|
+
var ListAccountAssociationsInput = [
|
|
1002
|
+
3,
|
|
1003
|
+
n0,
|
|
1004
|
+
_LAAI,
|
|
1005
|
+
0,
|
|
1006
|
+
[_BP, _Fi, _NT],
|
|
1007
|
+
[0, () => ListAccountAssociationsFilter, 0],
|
|
1008
|
+
];
|
|
1009
|
+
var ListAccountAssociationsOutput = [
|
|
1010
|
+
3,
|
|
1011
|
+
n0,
|
|
1012
|
+
_LAAO,
|
|
1013
|
+
0,
|
|
1014
|
+
[_LA, _NT],
|
|
1015
|
+
[[() => AccountAssociationsList, 0], 0],
|
|
1016
|
+
];
|
|
1017
|
+
var ListBillingGroupAccountGrouping = [3, n0, _LBGAG, 0, [_AA], [2]];
|
|
1018
|
+
var ListBillingGroupCostReportsFilter = [3, n0, _LBGCRF, 0, [_BGAi], [64 | 0]];
|
|
1019
|
+
var ListBillingGroupCostReportsInput = [
|
|
1020
|
+
3,
|
|
1021
|
+
n0,
|
|
1022
|
+
_LBGCRI,
|
|
1023
|
+
0,
|
|
1024
|
+
[_BP, _MR, _NT, _Fi],
|
|
1025
|
+
[0, 1, 0, () => ListBillingGroupCostReportsFilter],
|
|
1026
|
+
];
|
|
1027
|
+
var ListBillingGroupCostReportsOutput = [
|
|
1028
|
+
3,
|
|
1029
|
+
n0,
|
|
1030
|
+
_LBGCRO,
|
|
1031
|
+
0,
|
|
1032
|
+
[_BGCR, _NT],
|
|
1033
|
+
[() => BillingGroupCostReportList, 0],
|
|
1034
|
+
];
|
|
1035
|
+
var ListBillingGroupsFilter = [
|
|
1036
|
+
3,
|
|
1037
|
+
n0,
|
|
1038
|
+
_LBGF,
|
|
1039
|
+
0,
|
|
1040
|
+
[_Ar, _PP, _Sta, _AA],
|
|
1041
|
+
[64 | 0, 0, 64 | 0, 2],
|
|
1042
|
+
];
|
|
1043
|
+
var ListBillingGroupsInput = [
|
|
1044
|
+
3,
|
|
1045
|
+
n0,
|
|
1046
|
+
_LBGI,
|
|
1047
|
+
0,
|
|
1048
|
+
[_BP, _MR, _NT, _Fi],
|
|
1049
|
+
[0, 1, 0, () => ListBillingGroupsFilter],
|
|
1050
|
+
];
|
|
1051
|
+
var ListBillingGroupsOutput = [
|
|
1052
|
+
3,
|
|
1053
|
+
n0,
|
|
1054
|
+
_LBGO,
|
|
1055
|
+
0,
|
|
1056
|
+
[_BG, _NT],
|
|
1057
|
+
[[() => BillingGroupList, 0], 0],
|
|
1058
|
+
];
|
|
1059
|
+
var ListCustomLineItemChargeDetails = [
|
|
1060
|
+
3,
|
|
1061
|
+
n0,
|
|
1062
|
+
_LCLICD,
|
|
1063
|
+
0,
|
|
1064
|
+
[_F, _P, _Ty, _LIF],
|
|
1065
|
+
[
|
|
1066
|
+
() => ListCustomLineItemFlatChargeDetails,
|
|
1067
|
+
() => ListCustomLineItemPercentageChargeDetails,
|
|
1068
|
+
0,
|
|
1069
|
+
() => LineItemFiltersList,
|
|
1070
|
+
],
|
|
1071
|
+
];
|
|
1072
|
+
var ListCustomLineItemFlatChargeDetails = [3, n0, _LCLIFCD, 0, [_CV], [1]];
|
|
1073
|
+
var ListCustomLineItemPercentageChargeDetails = [3, n0, _LCLIPCD, 0, [_PV], [1]];
|
|
1074
|
+
var ListCustomLineItemsFilter = [
|
|
1075
|
+
3,
|
|
1076
|
+
n0,
|
|
1077
|
+
_LCLIF,
|
|
1078
|
+
0,
|
|
1079
|
+
[_Na, _BG, _Ar, _AIc],
|
|
1080
|
+
[[() => CustomLineItemNameList, 0], 64 | 0, 64 | 0, 64 | 0],
|
|
1081
|
+
];
|
|
1082
|
+
var ListCustomLineItemsInput = [
|
|
1083
|
+
3,
|
|
1084
|
+
n0,
|
|
1085
|
+
_LCLII,
|
|
1086
|
+
0,
|
|
1087
|
+
[_BP, _MR, _NT, _Fi],
|
|
1088
|
+
[0, 1, 0, [() => ListCustomLineItemsFilter, 0]],
|
|
1089
|
+
];
|
|
1090
|
+
var ListCustomLineItemsOutput = [
|
|
1091
|
+
3,
|
|
1092
|
+
n0,
|
|
1093
|
+
_LCLIO,
|
|
1094
|
+
0,
|
|
1095
|
+
[_CLI, _NT],
|
|
1096
|
+
[[() => CustomLineItemList, 0], 0],
|
|
1097
|
+
];
|
|
1098
|
+
var ListCustomLineItemVersionsBillingPeriodRangeFilter = [
|
|
1099
|
+
3,
|
|
1100
|
+
n0,
|
|
1101
|
+
_LCLIVBPRF,
|
|
1102
|
+
0,
|
|
1103
|
+
[_SBP, _EBP],
|
|
1104
|
+
[0, 0],
|
|
1105
|
+
];
|
|
1106
|
+
var ListCustomLineItemVersionsFilter = [
|
|
1107
|
+
3,
|
|
1108
|
+
n0,
|
|
1109
|
+
_LCLIVF,
|
|
1110
|
+
0,
|
|
1111
|
+
[_BPR],
|
|
1112
|
+
[() => ListCustomLineItemVersionsBillingPeriodRangeFilter],
|
|
1113
|
+
];
|
|
1114
|
+
var ListCustomLineItemVersionsInput = [
|
|
1115
|
+
3,
|
|
1116
|
+
n0,
|
|
1117
|
+
_LCLIVI,
|
|
1118
|
+
0,
|
|
1119
|
+
[_A, _MR, _NT, _Fi],
|
|
1120
|
+
[0, 1, 0, () => ListCustomLineItemVersionsFilter],
|
|
1121
|
+
];
|
|
1122
|
+
var ListCustomLineItemVersionsOutput = [
|
|
1123
|
+
3,
|
|
1124
|
+
n0,
|
|
1125
|
+
_LCLIVO,
|
|
1126
|
+
0,
|
|
1127
|
+
[_CLIV, _NT],
|
|
1128
|
+
[[() => CustomLineItemVersionList, 0], 0],
|
|
1129
|
+
];
|
|
1130
|
+
var ListPricingPlansAssociatedWithPricingRuleInput = [
|
|
1131
|
+
3,
|
|
1132
|
+
n0,
|
|
1133
|
+
_LPPAWPRI,
|
|
1134
|
+
0,
|
|
1135
|
+
[_BP, _PRAr, _MR, _NT],
|
|
1136
|
+
[0, 0, 1, 0],
|
|
1137
|
+
];
|
|
1138
|
+
var ListPricingPlansAssociatedWithPricingRuleOutput = [
|
|
1139
|
+
3,
|
|
1140
|
+
n0,
|
|
1141
|
+
_LPPAWPRO,
|
|
1142
|
+
0,
|
|
1143
|
+
[_BP, _PRAr, _PPAr, _NT],
|
|
1144
|
+
[0, 0, 64 | 0, 0],
|
|
1145
|
+
];
|
|
1146
|
+
var ListPricingPlansFilter = [3, n0, _LPPF, 0, [_Ar], [64 | 0]];
|
|
1147
|
+
var ListPricingPlansInput = [
|
|
1148
|
+
3,
|
|
1149
|
+
n0,
|
|
1150
|
+
_LPPI,
|
|
1151
|
+
0,
|
|
1152
|
+
[_BP, _Fi, _MR, _NT],
|
|
1153
|
+
[0, () => ListPricingPlansFilter, 1, 0],
|
|
1154
|
+
];
|
|
1155
|
+
var ListPricingPlansOutput = [
|
|
1156
|
+
3,
|
|
1157
|
+
n0,
|
|
1158
|
+
_LPPO,
|
|
1159
|
+
0,
|
|
1160
|
+
[_BP, _PPr, _NT],
|
|
1161
|
+
[0, [() => PricingPlanList, 0], 0],
|
|
1162
|
+
];
|
|
1163
|
+
var ListPricingRulesAssociatedToPricingPlanInput = [
|
|
1164
|
+
3,
|
|
1165
|
+
n0,
|
|
1166
|
+
_LPRATPPI,
|
|
1167
|
+
0,
|
|
1168
|
+
[_BP, _PPA, _MR, _NT],
|
|
1169
|
+
[0, 0, 1, 0],
|
|
1170
|
+
];
|
|
1171
|
+
var ListPricingRulesAssociatedToPricingPlanOutput = [
|
|
1172
|
+
3,
|
|
1173
|
+
n0,
|
|
1174
|
+
_LPRATPPO,
|
|
1175
|
+
0,
|
|
1176
|
+
[_BP, _PPA, _PRA, _NT],
|
|
1177
|
+
[0, 0, 64 | 0, 0],
|
|
1178
|
+
];
|
|
1179
|
+
var ListPricingRulesFilter = [3, n0, _LPRF, 0, [_Ar], [64 | 0]];
|
|
1180
|
+
var ListPricingRulesInput = [
|
|
1181
|
+
3,
|
|
1182
|
+
n0,
|
|
1183
|
+
_LPRI,
|
|
1184
|
+
0,
|
|
1185
|
+
[_BP, _Fi, _MR, _NT],
|
|
1186
|
+
[0, () => ListPricingRulesFilter, 1, 0],
|
|
1187
|
+
];
|
|
1188
|
+
var ListPricingRulesOutput = [
|
|
1189
|
+
3,
|
|
1190
|
+
n0,
|
|
1191
|
+
_LPRO,
|
|
1192
|
+
0,
|
|
1193
|
+
[_BP, _PR, _NT],
|
|
1194
|
+
[0, [() => PricingRuleList, 0], 0],
|
|
1195
|
+
];
|
|
1196
|
+
var ListResourcesAssociatedToCustomLineItemFilter = [3, n0, _LRATCLIF, 0, [_Re], [0]];
|
|
1197
|
+
var ListResourcesAssociatedToCustomLineItemInput = [
|
|
1198
|
+
3,
|
|
1199
|
+
n0,
|
|
1200
|
+
_LRATCLII,
|
|
1201
|
+
0,
|
|
1202
|
+
[_BP, _A, _MR, _NT, _Fi],
|
|
1203
|
+
[0, 0, 1, 0, () => ListResourcesAssociatedToCustomLineItemFilter],
|
|
1204
|
+
];
|
|
1205
|
+
var ListResourcesAssociatedToCustomLineItemOutput = [
|
|
1206
|
+
3,
|
|
1207
|
+
n0,
|
|
1208
|
+
_LRATCLIO,
|
|
1209
|
+
0,
|
|
1210
|
+
[_A, _AR, _NT],
|
|
1211
|
+
[0, () => ListResourcesAssociatedToCustomLineItemResponseList, 0],
|
|
1212
|
+
];
|
|
1213
|
+
var ListResourcesAssociatedToCustomLineItemResponseElement = [
|
|
1214
|
+
3,
|
|
1215
|
+
n0,
|
|
1216
|
+
_LRATCLIRE,
|
|
1217
|
+
0,
|
|
1218
|
+
[_A, _Re, _EBP],
|
|
1219
|
+
[0, 0, 0],
|
|
1220
|
+
];
|
|
1221
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
1222
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
|
|
1223
|
+
var PresentationObject = [3, n0, _PO, 0, [_Se], [0]];
|
|
1224
|
+
var PricingPlanListElement = [
|
|
1225
|
+
3,
|
|
1226
|
+
n0,
|
|
1227
|
+
_PPLE,
|
|
1228
|
+
0,
|
|
1229
|
+
[_N, _A, _D, _S, _CT, _LMT],
|
|
1230
|
+
[[() => PricingPlanName, 0], 0, [() => PricingPlanDescription, 0], 1, 1, 1],
|
|
1231
|
+
];
|
|
1232
|
+
var PricingRuleListElement = [
|
|
1233
|
+
3,
|
|
1234
|
+
n0,
|
|
1235
|
+
_PRLE,
|
|
1236
|
+
0,
|
|
1237
|
+
[_N, _A, _D, _Sc, _Ty, _MPo, _Se, _APPC, _CT, _LMT, _BE, _Ti, _UT, _O],
|
|
1238
|
+
[[() => PricingRuleName, 0], 0, [() => PricingRuleDescription, 0], 0, 0, 1, 0, 1, 1, 1, 0, () => Tiering, 0, 0],
|
|
1239
|
+
];
|
|
1240
|
+
var ResourceNotFoundException = [
|
|
1241
|
+
-3,
|
|
1242
|
+
n0,
|
|
1243
|
+
_RNFE,
|
|
1244
|
+
{
|
|
1245
|
+
[_e]: _c,
|
|
1246
|
+
[_hE]: 404,
|
|
1247
|
+
},
|
|
1248
|
+
[_M, _RI, _RT],
|
|
1249
|
+
[0, 0, 0],
|
|
1250
|
+
];
|
|
1251
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1252
|
+
var ServiceLimitExceededException = [
|
|
1253
|
+
-3,
|
|
1254
|
+
n0,
|
|
1255
|
+
_SLEE,
|
|
1256
|
+
{
|
|
1257
|
+
[_e]: _c,
|
|
1258
|
+
[_hE]: 402,
|
|
1259
|
+
},
|
|
1260
|
+
[_M, _RI, _RT, _LC, _SC],
|
|
1261
|
+
[0, 0, 0, 0, 0],
|
|
1262
|
+
];
|
|
1263
|
+
schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException, ServiceLimitExceededException$1);
|
|
1264
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _T], [[0, 1], 128 | 0]];
|
|
1265
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1266
|
+
var ThrottlingException = [
|
|
1267
|
+
-3,
|
|
1268
|
+
n0,
|
|
1269
|
+
_TE,
|
|
1270
|
+
{
|
|
1271
|
+
[_e]: _c,
|
|
1272
|
+
[_hE]: 429,
|
|
1273
|
+
},
|
|
1274
|
+
[_M, _RAS],
|
|
1275
|
+
[
|
|
1276
|
+
0,
|
|
1277
|
+
[
|
|
1278
|
+
1,
|
|
1279
|
+
{
|
|
1280
|
+
[_hH]: _RA_,
|
|
1281
|
+
},
|
|
1282
|
+
],
|
|
1283
|
+
],
|
|
1284
|
+
];
|
|
1285
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1286
|
+
var Tiering = [3, n0, _Ti, 0, [_FT], [() => FreeTierConfig]];
|
|
1287
|
+
var UntagResourceRequest = [
|
|
1288
|
+
3,
|
|
1289
|
+
n0,
|
|
1290
|
+
_URR,
|
|
1291
|
+
0,
|
|
1292
|
+
[_RAe, _TK],
|
|
1293
|
+
[
|
|
1294
|
+
[0, 1],
|
|
1295
|
+
[
|
|
1296
|
+
64 | 0,
|
|
1297
|
+
{
|
|
1298
|
+
[_hQ]: _tK,
|
|
1299
|
+
},
|
|
1300
|
+
],
|
|
1301
|
+
],
|
|
1302
|
+
];
|
|
1303
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1304
|
+
var UpdateBillingGroupAccountGrouping = [3, n0, _UBGAG, 0, [_AA], [2]];
|
|
1305
|
+
var UpdateBillingGroupInput = [
|
|
1306
|
+
3,
|
|
1307
|
+
n0,
|
|
1308
|
+
_UBGI,
|
|
1309
|
+
0,
|
|
1310
|
+
[_A, _N, _St, _CP, _D, _AG],
|
|
1311
|
+
[
|
|
1312
|
+
0,
|
|
1313
|
+
[() => BillingGroupName, 0],
|
|
1314
|
+
0,
|
|
1315
|
+
() => ComputationPreference,
|
|
1316
|
+
[() => BillingGroupDescription, 0],
|
|
1317
|
+
() => UpdateBillingGroupAccountGrouping,
|
|
1318
|
+
],
|
|
1319
|
+
];
|
|
1320
|
+
var UpdateBillingGroupOutput = [
|
|
1321
|
+
3,
|
|
1322
|
+
n0,
|
|
1323
|
+
_UBGO,
|
|
1324
|
+
0,
|
|
1325
|
+
[_A, _N, _D, _PAI, _PPA, _S, _LMT, _St, _SR, _AG],
|
|
1326
|
+
[
|
|
1327
|
+
0,
|
|
1328
|
+
[() => BillingGroupName, 0],
|
|
1329
|
+
[() => BillingGroupDescription, 0],
|
|
1330
|
+
0,
|
|
1331
|
+
0,
|
|
1332
|
+
1,
|
|
1333
|
+
1,
|
|
1334
|
+
0,
|
|
1335
|
+
0,
|
|
1336
|
+
() => UpdateBillingGroupAccountGrouping,
|
|
1337
|
+
],
|
|
1338
|
+
];
|
|
1339
|
+
var UpdateCustomLineItemChargeDetails = [
|
|
1340
|
+
3,
|
|
1341
|
+
n0,
|
|
1342
|
+
_UCLICD,
|
|
1343
|
+
0,
|
|
1344
|
+
[_F, _P, _LIF],
|
|
1345
|
+
[
|
|
1346
|
+
() => UpdateCustomLineItemFlatChargeDetails,
|
|
1347
|
+
() => UpdateCustomLineItemPercentageChargeDetails,
|
|
1348
|
+
() => LineItemFiltersList,
|
|
1349
|
+
],
|
|
1350
|
+
];
|
|
1351
|
+
var UpdateCustomLineItemFlatChargeDetails = [3, n0, _UCLIFCD, 0, [_CV], [1]];
|
|
1352
|
+
var UpdateCustomLineItemInput = [
|
|
1353
|
+
3,
|
|
1354
|
+
n0,
|
|
1355
|
+
_UCLII,
|
|
1356
|
+
0,
|
|
1357
|
+
[_A, _N, _D, _CD, _BPR],
|
|
1358
|
+
[
|
|
1359
|
+
0,
|
|
1360
|
+
[() => CustomLineItemName, 0],
|
|
1361
|
+
[() => CustomLineItemDescription, 0],
|
|
1362
|
+
() => UpdateCustomLineItemChargeDetails,
|
|
1363
|
+
() => CustomLineItemBillingPeriodRange,
|
|
1364
|
+
],
|
|
1365
|
+
];
|
|
1366
|
+
var UpdateCustomLineItemOutput = [
|
|
1367
|
+
3,
|
|
1368
|
+
n0,
|
|
1369
|
+
_UCLIO,
|
|
1370
|
+
0,
|
|
1371
|
+
[_A, _BGA, _N, _D, _CD, _LMT, _AS],
|
|
1372
|
+
[
|
|
1373
|
+
0,
|
|
1374
|
+
0,
|
|
1375
|
+
[() => CustomLineItemName, 0],
|
|
1376
|
+
[() => CustomLineItemDescription, 0],
|
|
1377
|
+
() => ListCustomLineItemChargeDetails,
|
|
1378
|
+
1,
|
|
1379
|
+
1,
|
|
1380
|
+
],
|
|
1381
|
+
];
|
|
1382
|
+
var UpdateCustomLineItemPercentageChargeDetails = [3, n0, _UCLIPCD, 0, [_PV], [1]];
|
|
1383
|
+
var UpdateFreeTierConfig = [3, n0, _UFTC, 0, [_Ac], [2]];
|
|
1384
|
+
var UpdatePricingPlanInput = [
|
|
1385
|
+
3,
|
|
1386
|
+
n0,
|
|
1387
|
+
_UPPI,
|
|
1388
|
+
0,
|
|
1389
|
+
[_A, _N, _D],
|
|
1390
|
+
[0, [() => PricingPlanName, 0], [() => PricingPlanDescription, 0]],
|
|
1391
|
+
];
|
|
1392
|
+
var UpdatePricingPlanOutput = [
|
|
1393
|
+
3,
|
|
1394
|
+
n0,
|
|
1395
|
+
_UPPO,
|
|
1396
|
+
0,
|
|
1397
|
+
[_A, _N, _D, _S, _LMT],
|
|
1398
|
+
[0, [() => PricingPlanName, 0], [() => PricingPlanDescription, 0], 1, 1],
|
|
1399
|
+
];
|
|
1400
|
+
var UpdatePricingRuleInput = [
|
|
1401
|
+
3,
|
|
1402
|
+
n0,
|
|
1403
|
+
_UPRI,
|
|
1404
|
+
0,
|
|
1405
|
+
[_A, _N, _D, _Ty, _MPo, _Ti],
|
|
1406
|
+
[0, [() => PricingRuleName, 0], [() => PricingRuleDescription, 0], 0, 1, () => UpdateTieringInput],
|
|
1407
|
+
];
|
|
1408
|
+
var UpdatePricingRuleOutput = [
|
|
1409
|
+
3,
|
|
1410
|
+
n0,
|
|
1411
|
+
_UPRO,
|
|
1412
|
+
0,
|
|
1413
|
+
[_A, _N, _D, _Sc, _Ty, _MPo, _Se, _APPC, _LMT, _BE, _Ti, _UT, _O],
|
|
1414
|
+
[
|
|
1415
|
+
0,
|
|
1416
|
+
[() => PricingRuleName, 0],
|
|
1417
|
+
[() => PricingRuleDescription, 0],
|
|
1418
|
+
0,
|
|
1419
|
+
0,
|
|
1420
|
+
1,
|
|
1421
|
+
0,
|
|
1422
|
+
1,
|
|
1423
|
+
1,
|
|
1424
|
+
0,
|
|
1425
|
+
() => UpdateTieringInput,
|
|
1426
|
+
0,
|
|
1427
|
+
0,
|
|
1428
|
+
],
|
|
1429
|
+
];
|
|
1430
|
+
var UpdateTieringInput = [3, n0, _UTI, 0, [_FT], [() => UpdateFreeTierConfig]];
|
|
1431
|
+
var ValidationException = [
|
|
1432
|
+
-3,
|
|
1433
|
+
n0,
|
|
1434
|
+
_VE,
|
|
1435
|
+
{
|
|
1436
|
+
[_e]: _c,
|
|
1437
|
+
[_hE]: 400,
|
|
1438
|
+
},
|
|
1439
|
+
[_M, _R, _Fie],
|
|
1440
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1441
|
+
];
|
|
1442
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1443
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
1444
|
+
var BillingconductorServiceException = [
|
|
1445
|
+
-3,
|
|
1446
|
+
_sm,
|
|
1447
|
+
"BillingconductorServiceException",
|
|
1448
|
+
0,
|
|
1449
|
+
[],
|
|
1450
|
+
[],
|
|
1451
|
+
];
|
|
1452
|
+
schema.TypeRegistry.for(_sm).registerError(BillingconductorServiceException, BillingconductorServiceException$1);
|
|
1453
|
+
var AccountAssociationsList = [1, n0, _AAL, 0, [() => AccountAssociationsListElement, 0]];
|
|
1454
|
+
var AssociateResourcesResponseList = [1, n0, _ARRL, 0, () => AssociateResourceResponseElement];
|
|
1455
|
+
var AttributesList = [1, n0, _AL, 0, () => Attribute];
|
|
1456
|
+
var BillingGroupCostReportList = [1, n0, _BGCRL, 0, () => BillingGroupCostReportElement];
|
|
1457
|
+
var BillingGroupCostReportResultsList = [
|
|
1458
|
+
1,
|
|
1459
|
+
n0,
|
|
1460
|
+
_BGCRRL,
|
|
1461
|
+
0,
|
|
1462
|
+
() => BillingGroupCostReportResultElement,
|
|
1463
|
+
];
|
|
1464
|
+
var BillingGroupList = [1, n0, _BGL, 0, [() => BillingGroupListElement, 0]];
|
|
1465
|
+
var CustomLineItemList = [1, n0, _CLIL, 0, [() => CustomLineItemListElement, 0]];
|
|
1466
|
+
var CustomLineItemNameList = [1, n0, _CLINL, 0, [() => CustomLineItemName, 0]];
|
|
1467
|
+
var CustomLineItemVersionList = [
|
|
1468
|
+
1,
|
|
1469
|
+
n0,
|
|
1470
|
+
_CLIVL,
|
|
1471
|
+
0,
|
|
1472
|
+
[() => CustomLineItemVersionListElement, 0],
|
|
1473
|
+
];
|
|
1474
|
+
var DisassociateResourcesResponseList = [
|
|
1475
|
+
1,
|
|
1476
|
+
n0,
|
|
1477
|
+
_DRRL,
|
|
1478
|
+
0,
|
|
1479
|
+
() => DisassociateResourceResponseElement,
|
|
1480
|
+
];
|
|
1481
|
+
var LineItemFiltersList = [1, n0, _LIFL, 0, () => LineItemFilter];
|
|
1482
|
+
var ListResourcesAssociatedToCustomLineItemResponseList = [
|
|
1483
|
+
1,
|
|
1484
|
+
n0,
|
|
1485
|
+
_LRATCLIRL,
|
|
1486
|
+
0,
|
|
1487
|
+
() => ListResourcesAssociatedToCustomLineItemResponseElement,
|
|
1488
|
+
];
|
|
1489
|
+
var PricingPlanList = [1, n0, _PPL, 0, [() => PricingPlanListElement, 0]];
|
|
1490
|
+
var PricingRuleList = [1, n0, _PRL, 0, [() => PricingRuleListElement, 0]];
|
|
1491
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1492
|
+
var AssociateAccounts = [
|
|
1493
|
+
9,
|
|
1494
|
+
n0,
|
|
1495
|
+
_AAs,
|
|
1496
|
+
{
|
|
1497
|
+
[_h]: ["POST", "/associate-accounts", 200],
|
|
1498
|
+
},
|
|
1499
|
+
() => AssociateAccountsInput,
|
|
1500
|
+
() => AssociateAccountsOutput,
|
|
1501
|
+
];
|
|
1502
|
+
var AssociatePricingRules = [
|
|
1503
|
+
9,
|
|
1504
|
+
n0,
|
|
1505
|
+
_APR,
|
|
1506
|
+
{
|
|
1507
|
+
[_h]: ["PUT", "/associate-pricing-rules", 200],
|
|
1508
|
+
},
|
|
1509
|
+
() => AssociatePricingRulesInput,
|
|
1510
|
+
() => AssociatePricingRulesOutput,
|
|
1511
|
+
];
|
|
1512
|
+
var BatchAssociateResourcesToCustomLineItem = [
|
|
1513
|
+
9,
|
|
1514
|
+
n0,
|
|
1515
|
+
_BARTCLI,
|
|
1516
|
+
{
|
|
1517
|
+
[_h]: ["PUT", "/batch-associate-resources-to-custom-line-item", 200],
|
|
1518
|
+
},
|
|
1519
|
+
() => BatchAssociateResourcesToCustomLineItemInput,
|
|
1520
|
+
() => BatchAssociateResourcesToCustomLineItemOutput,
|
|
1521
|
+
];
|
|
1522
|
+
var BatchDisassociateResourcesFromCustomLineItem = [
|
|
1523
|
+
9,
|
|
1524
|
+
n0,
|
|
1525
|
+
_BDRFCLI,
|
|
1526
|
+
{
|
|
1527
|
+
[_h]: ["PUT", "/batch-disassociate-resources-from-custom-line-item", 200],
|
|
1528
|
+
},
|
|
1529
|
+
() => BatchDisassociateResourcesFromCustomLineItemInput,
|
|
1530
|
+
() => BatchDisassociateResourcesFromCustomLineItemOutput,
|
|
1531
|
+
];
|
|
1532
|
+
var CreateBillingGroup = [
|
|
1533
|
+
9,
|
|
1534
|
+
n0,
|
|
1535
|
+
_CBG,
|
|
1536
|
+
{
|
|
1537
|
+
[_h]: ["POST", "/create-billing-group", 200],
|
|
1538
|
+
},
|
|
1539
|
+
() => CreateBillingGroupInput,
|
|
1540
|
+
() => CreateBillingGroupOutput,
|
|
1541
|
+
];
|
|
1542
|
+
var CreateCustomLineItem = [
|
|
1543
|
+
9,
|
|
1544
|
+
n0,
|
|
1545
|
+
_CCLI,
|
|
1546
|
+
{
|
|
1547
|
+
[_h]: ["POST", "/create-custom-line-item", 200],
|
|
1548
|
+
},
|
|
1549
|
+
() => CreateCustomLineItemInput,
|
|
1550
|
+
() => CreateCustomLineItemOutput,
|
|
1551
|
+
];
|
|
1552
|
+
var CreatePricingPlan = [
|
|
1553
|
+
9,
|
|
1554
|
+
n0,
|
|
1555
|
+
_CPP,
|
|
1556
|
+
{
|
|
1557
|
+
[_h]: ["POST", "/create-pricing-plan", 200],
|
|
1558
|
+
},
|
|
1559
|
+
() => CreatePricingPlanInput,
|
|
1560
|
+
() => CreatePricingPlanOutput,
|
|
1561
|
+
];
|
|
1562
|
+
var CreatePricingRule = [
|
|
1563
|
+
9,
|
|
1564
|
+
n0,
|
|
1565
|
+
_CPR,
|
|
1566
|
+
{
|
|
1567
|
+
[_h]: ["POST", "/create-pricing-rule", 200],
|
|
1568
|
+
},
|
|
1569
|
+
() => CreatePricingRuleInput,
|
|
1570
|
+
() => CreatePricingRuleOutput,
|
|
1571
|
+
];
|
|
1572
|
+
var DeleteBillingGroup = [
|
|
1573
|
+
9,
|
|
1574
|
+
n0,
|
|
1575
|
+
_DBG,
|
|
1576
|
+
{
|
|
1577
|
+
[_h]: ["POST", "/delete-billing-group", 200],
|
|
1578
|
+
},
|
|
1579
|
+
() => DeleteBillingGroupInput,
|
|
1580
|
+
() => DeleteBillingGroupOutput,
|
|
1581
|
+
];
|
|
1582
|
+
var DeleteCustomLineItem = [
|
|
1583
|
+
9,
|
|
1584
|
+
n0,
|
|
1585
|
+
_DCLI,
|
|
1586
|
+
{
|
|
1587
|
+
[_h]: ["POST", "/delete-custom-line-item", 200],
|
|
1588
|
+
},
|
|
1589
|
+
() => DeleteCustomLineItemInput,
|
|
1590
|
+
() => DeleteCustomLineItemOutput,
|
|
1591
|
+
];
|
|
1592
|
+
var DeletePricingPlan = [
|
|
1593
|
+
9,
|
|
1594
|
+
n0,
|
|
1595
|
+
_DPP,
|
|
1596
|
+
{
|
|
1597
|
+
[_h]: ["POST", "/delete-pricing-plan", 200],
|
|
1598
|
+
},
|
|
1599
|
+
() => DeletePricingPlanInput,
|
|
1600
|
+
() => DeletePricingPlanOutput,
|
|
1601
|
+
];
|
|
1602
|
+
var DeletePricingRule = [
|
|
1603
|
+
9,
|
|
1604
|
+
n0,
|
|
1605
|
+
_DPR,
|
|
1606
|
+
{
|
|
1607
|
+
[_h]: ["POST", "/delete-pricing-rule", 200],
|
|
1608
|
+
},
|
|
1609
|
+
() => DeletePricingRuleInput,
|
|
1610
|
+
() => DeletePricingRuleOutput,
|
|
1611
|
+
];
|
|
1612
|
+
var DisassociateAccounts = [
|
|
1613
|
+
9,
|
|
1614
|
+
n0,
|
|
1615
|
+
_DA,
|
|
1616
|
+
{
|
|
1617
|
+
[_h]: ["POST", "/disassociate-accounts", 200],
|
|
1618
|
+
},
|
|
1619
|
+
() => DisassociateAccountsInput,
|
|
1620
|
+
() => DisassociateAccountsOutput,
|
|
1621
|
+
];
|
|
1622
|
+
var DisassociatePricingRules = [
|
|
1623
|
+
9,
|
|
1624
|
+
n0,
|
|
1625
|
+
_DPRi,
|
|
1626
|
+
{
|
|
1627
|
+
[_h]: ["PUT", "/disassociate-pricing-rules", 200],
|
|
1628
|
+
},
|
|
1629
|
+
() => DisassociatePricingRulesInput,
|
|
1630
|
+
() => DisassociatePricingRulesOutput,
|
|
1631
|
+
];
|
|
1632
|
+
var GetBillingGroupCostReport = [
|
|
1633
|
+
9,
|
|
1634
|
+
n0,
|
|
1635
|
+
_GBGCR,
|
|
1636
|
+
{
|
|
1637
|
+
[_h]: ["POST", "/get-billing-group-cost-report", 200],
|
|
1638
|
+
},
|
|
1639
|
+
() => GetBillingGroupCostReportInput,
|
|
1640
|
+
() => GetBillingGroupCostReportOutput,
|
|
1641
|
+
];
|
|
1642
|
+
var ListAccountAssociations = [
|
|
1643
|
+
9,
|
|
1644
|
+
n0,
|
|
1645
|
+
_LAA,
|
|
1646
|
+
{
|
|
1647
|
+
[_h]: ["POST", "/list-account-associations", 200],
|
|
1648
|
+
},
|
|
1649
|
+
() => ListAccountAssociationsInput,
|
|
1650
|
+
() => ListAccountAssociationsOutput,
|
|
1651
|
+
];
|
|
1652
|
+
var ListBillingGroupCostReports = [
|
|
1653
|
+
9,
|
|
1654
|
+
n0,
|
|
1655
|
+
_LBGCR,
|
|
1656
|
+
{
|
|
1657
|
+
[_h]: ["POST", "/list-billing-group-cost-reports", 200],
|
|
1658
|
+
},
|
|
1659
|
+
() => ListBillingGroupCostReportsInput,
|
|
1660
|
+
() => ListBillingGroupCostReportsOutput,
|
|
1661
|
+
];
|
|
1662
|
+
var ListBillingGroups = [
|
|
1663
|
+
9,
|
|
1664
|
+
n0,
|
|
1665
|
+
_LBG,
|
|
1666
|
+
{
|
|
1667
|
+
[_h]: ["POST", "/list-billing-groups", 200],
|
|
1668
|
+
},
|
|
1669
|
+
() => ListBillingGroupsInput,
|
|
1670
|
+
() => ListBillingGroupsOutput,
|
|
1671
|
+
];
|
|
1672
|
+
var ListCustomLineItems = [
|
|
1673
|
+
9,
|
|
1674
|
+
n0,
|
|
1675
|
+
_LCLI,
|
|
1676
|
+
{
|
|
1677
|
+
[_h]: ["POST", "/list-custom-line-items", 200],
|
|
1678
|
+
},
|
|
1679
|
+
() => ListCustomLineItemsInput,
|
|
1680
|
+
() => ListCustomLineItemsOutput,
|
|
1681
|
+
];
|
|
1682
|
+
var ListCustomLineItemVersions = [
|
|
1683
|
+
9,
|
|
1684
|
+
n0,
|
|
1685
|
+
_LCLIV,
|
|
1686
|
+
{
|
|
1687
|
+
[_h]: ["POST", "/list-custom-line-item-versions", 200],
|
|
1688
|
+
},
|
|
1689
|
+
() => ListCustomLineItemVersionsInput,
|
|
1690
|
+
() => ListCustomLineItemVersionsOutput,
|
|
1691
|
+
];
|
|
1692
|
+
var ListPricingPlans = [
|
|
1693
|
+
9,
|
|
1694
|
+
n0,
|
|
1695
|
+
_LPP,
|
|
1696
|
+
{
|
|
1697
|
+
[_h]: ["POST", "/list-pricing-plans", 200],
|
|
1698
|
+
},
|
|
1699
|
+
() => ListPricingPlansInput,
|
|
1700
|
+
() => ListPricingPlansOutput,
|
|
1701
|
+
];
|
|
1702
|
+
var ListPricingPlansAssociatedWithPricingRule = [
|
|
1703
|
+
9,
|
|
1704
|
+
n0,
|
|
1705
|
+
_LPPAWPR,
|
|
1706
|
+
{
|
|
1707
|
+
[_h]: ["POST", "/list-pricing-plans-associated-with-pricing-rule", 200],
|
|
1708
|
+
},
|
|
1709
|
+
() => ListPricingPlansAssociatedWithPricingRuleInput,
|
|
1710
|
+
() => ListPricingPlansAssociatedWithPricingRuleOutput,
|
|
1711
|
+
];
|
|
1712
|
+
var ListPricingRules = [
|
|
1713
|
+
9,
|
|
1714
|
+
n0,
|
|
1715
|
+
_LPR,
|
|
1716
|
+
{
|
|
1717
|
+
[_h]: ["POST", "/list-pricing-rules", 200],
|
|
1718
|
+
},
|
|
1719
|
+
() => ListPricingRulesInput,
|
|
1720
|
+
() => ListPricingRulesOutput,
|
|
1721
|
+
];
|
|
1722
|
+
var ListPricingRulesAssociatedToPricingPlan = [
|
|
1723
|
+
9,
|
|
1724
|
+
n0,
|
|
1725
|
+
_LPRATPP,
|
|
1726
|
+
{
|
|
1727
|
+
[_h]: ["POST", "/list-pricing-rules-associated-to-pricing-plan", 200],
|
|
1728
|
+
},
|
|
1729
|
+
() => ListPricingRulesAssociatedToPricingPlanInput,
|
|
1730
|
+
() => ListPricingRulesAssociatedToPricingPlanOutput,
|
|
1731
|
+
];
|
|
1732
|
+
var ListResourcesAssociatedToCustomLineItem = [
|
|
1733
|
+
9,
|
|
1734
|
+
n0,
|
|
1735
|
+
_LRATCLI,
|
|
1736
|
+
{
|
|
1737
|
+
[_h]: ["POST", "/list-resources-associated-to-custom-line-item", 200],
|
|
1738
|
+
},
|
|
1739
|
+
() => ListResourcesAssociatedToCustomLineItemInput,
|
|
1740
|
+
() => ListResourcesAssociatedToCustomLineItemOutput,
|
|
1741
|
+
];
|
|
1742
|
+
var ListTagsForResource = [
|
|
1743
|
+
9,
|
|
1744
|
+
n0,
|
|
1745
|
+
_LTFR,
|
|
1746
|
+
{
|
|
1747
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 204],
|
|
1748
|
+
},
|
|
1749
|
+
() => ListTagsForResourceRequest,
|
|
1750
|
+
() => ListTagsForResourceResponse,
|
|
1751
|
+
];
|
|
1752
|
+
var TagResource = [
|
|
1753
|
+
9,
|
|
1754
|
+
n0,
|
|
1755
|
+
_TR,
|
|
1756
|
+
{
|
|
1757
|
+
[_h]: ["POST", "/tags/{ResourceArn}", 204],
|
|
1758
|
+
},
|
|
1759
|
+
() => TagResourceRequest,
|
|
1760
|
+
() => TagResourceResponse,
|
|
1761
|
+
];
|
|
1762
|
+
var UntagResource = [
|
|
1763
|
+
9,
|
|
1764
|
+
n0,
|
|
1765
|
+
_UR,
|
|
1766
|
+
{
|
|
1767
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 204],
|
|
1768
|
+
},
|
|
1769
|
+
() => UntagResourceRequest,
|
|
1770
|
+
() => UntagResourceResponse,
|
|
1771
|
+
];
|
|
1772
|
+
var UpdateBillingGroup = [
|
|
1773
|
+
9,
|
|
1774
|
+
n0,
|
|
1775
|
+
_UBG,
|
|
1776
|
+
{
|
|
1777
|
+
[_h]: ["POST", "/update-billing-group", 200],
|
|
1778
|
+
},
|
|
1779
|
+
() => UpdateBillingGroupInput,
|
|
1780
|
+
() => UpdateBillingGroupOutput,
|
|
1781
|
+
];
|
|
1782
|
+
var UpdateCustomLineItem = [
|
|
1783
|
+
9,
|
|
1784
|
+
n0,
|
|
1785
|
+
_UCLI,
|
|
1786
|
+
{
|
|
1787
|
+
[_h]: ["POST", "/update-custom-line-item", 200],
|
|
1788
|
+
},
|
|
1789
|
+
() => UpdateCustomLineItemInput,
|
|
1790
|
+
() => UpdateCustomLineItemOutput,
|
|
1791
|
+
];
|
|
1792
|
+
var UpdatePricingPlan = [
|
|
1793
|
+
9,
|
|
1794
|
+
n0,
|
|
1795
|
+
_UPP,
|
|
1796
|
+
{
|
|
1797
|
+
[_h]: ["PUT", "/update-pricing-plan", 200],
|
|
1798
|
+
},
|
|
1799
|
+
() => UpdatePricingPlanInput,
|
|
1800
|
+
() => UpdatePricingPlanOutput,
|
|
1801
|
+
];
|
|
1802
|
+
var UpdatePricingRule = [
|
|
1803
|
+
9,
|
|
1804
|
+
n0,
|
|
1805
|
+
_UPR,
|
|
1806
|
+
{
|
|
1807
|
+
[_h]: ["PUT", "/update-pricing-rule", 200],
|
|
1808
|
+
},
|
|
1809
|
+
() => UpdatePricingRuleInput,
|
|
1810
|
+
() => UpdatePricingRuleOutput,
|
|
1811
|
+
];
|
|
1784
1812
|
|
|
1785
1813
|
class AssociateAccountsCommand extends smithyClient.Command
|
|
1786
1814
|
.classBuilder()
|
|
1787
1815
|
.ep(commonParams)
|
|
1788
1816
|
.m(function (Command, cs, config, o) {
|
|
1789
|
-
return [
|
|
1790
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1791
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1792
|
-
];
|
|
1817
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1793
1818
|
})
|
|
1794
1819
|
.s("AWSBillingConductor", "AssociateAccounts", {})
|
|
1795
1820
|
.n("BillingconductorClient", "AssociateAccountsCommand")
|
|
1796
|
-
.
|
|
1797
|
-
.ser(se_AssociateAccountsCommand)
|
|
1798
|
-
.de(de_AssociateAccountsCommand)
|
|
1821
|
+
.sc(AssociateAccounts)
|
|
1799
1822
|
.build() {
|
|
1800
1823
|
}
|
|
1801
1824
|
|
|
@@ -1803,16 +1826,11 @@ class AssociatePricingRulesCommand extends smithyClient.Command
|
|
|
1803
1826
|
.classBuilder()
|
|
1804
1827
|
.ep(commonParams)
|
|
1805
1828
|
.m(function (Command, cs, config, o) {
|
|
1806
|
-
return [
|
|
1807
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1808
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1809
|
-
];
|
|
1829
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1810
1830
|
})
|
|
1811
1831
|
.s("AWSBillingConductor", "AssociatePricingRules", {})
|
|
1812
1832
|
.n("BillingconductorClient", "AssociatePricingRulesCommand")
|
|
1813
|
-
.
|
|
1814
|
-
.ser(se_AssociatePricingRulesCommand)
|
|
1815
|
-
.de(de_AssociatePricingRulesCommand)
|
|
1833
|
+
.sc(AssociatePricingRules)
|
|
1816
1834
|
.build() {
|
|
1817
1835
|
}
|
|
1818
1836
|
|
|
@@ -1820,16 +1838,11 @@ class BatchAssociateResourcesToCustomLineItemCommand extends smithyClient.Comman
|
|
|
1820
1838
|
.classBuilder()
|
|
1821
1839
|
.ep(commonParams)
|
|
1822
1840
|
.m(function (Command, cs, config, o) {
|
|
1823
|
-
return [
|
|
1824
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1825
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1826
|
-
];
|
|
1841
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1827
1842
|
})
|
|
1828
1843
|
.s("AWSBillingConductor", "BatchAssociateResourcesToCustomLineItem", {})
|
|
1829
1844
|
.n("BillingconductorClient", "BatchAssociateResourcesToCustomLineItemCommand")
|
|
1830
|
-
.
|
|
1831
|
-
.ser(se_BatchAssociateResourcesToCustomLineItemCommand)
|
|
1832
|
-
.de(de_BatchAssociateResourcesToCustomLineItemCommand)
|
|
1845
|
+
.sc(BatchAssociateResourcesToCustomLineItem)
|
|
1833
1846
|
.build() {
|
|
1834
1847
|
}
|
|
1835
1848
|
|
|
@@ -1837,16 +1850,11 @@ class BatchDisassociateResourcesFromCustomLineItemCommand extends smithyClient.C
|
|
|
1837
1850
|
.classBuilder()
|
|
1838
1851
|
.ep(commonParams)
|
|
1839
1852
|
.m(function (Command, cs, config, o) {
|
|
1840
|
-
return [
|
|
1841
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1842
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1843
|
-
];
|
|
1853
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1844
1854
|
})
|
|
1845
1855
|
.s("AWSBillingConductor", "BatchDisassociateResourcesFromCustomLineItem", {})
|
|
1846
1856
|
.n("BillingconductorClient", "BatchDisassociateResourcesFromCustomLineItemCommand")
|
|
1847
|
-
.
|
|
1848
|
-
.ser(se_BatchDisassociateResourcesFromCustomLineItemCommand)
|
|
1849
|
-
.de(de_BatchDisassociateResourcesFromCustomLineItemCommand)
|
|
1857
|
+
.sc(BatchDisassociateResourcesFromCustomLineItem)
|
|
1850
1858
|
.build() {
|
|
1851
1859
|
}
|
|
1852
1860
|
|
|
@@ -1854,16 +1862,11 @@ class CreateBillingGroupCommand extends smithyClient.Command
|
|
|
1854
1862
|
.classBuilder()
|
|
1855
1863
|
.ep(commonParams)
|
|
1856
1864
|
.m(function (Command, cs, config, o) {
|
|
1857
|
-
return [
|
|
1858
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1859
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1860
|
-
];
|
|
1865
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1861
1866
|
})
|
|
1862
1867
|
.s("AWSBillingConductor", "CreateBillingGroup", {})
|
|
1863
1868
|
.n("BillingconductorClient", "CreateBillingGroupCommand")
|
|
1864
|
-
.
|
|
1865
|
-
.ser(se_CreateBillingGroupCommand)
|
|
1866
|
-
.de(de_CreateBillingGroupCommand)
|
|
1869
|
+
.sc(CreateBillingGroup)
|
|
1867
1870
|
.build() {
|
|
1868
1871
|
}
|
|
1869
1872
|
|
|
@@ -1871,16 +1874,11 @@ class CreateCustomLineItemCommand extends smithyClient.Command
|
|
|
1871
1874
|
.classBuilder()
|
|
1872
1875
|
.ep(commonParams)
|
|
1873
1876
|
.m(function (Command, cs, config, o) {
|
|
1874
|
-
return [
|
|
1875
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1876
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1877
|
-
];
|
|
1877
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1878
1878
|
})
|
|
1879
1879
|
.s("AWSBillingConductor", "CreateCustomLineItem", {})
|
|
1880
1880
|
.n("BillingconductorClient", "CreateCustomLineItemCommand")
|
|
1881
|
-
.
|
|
1882
|
-
.ser(se_CreateCustomLineItemCommand)
|
|
1883
|
-
.de(de_CreateCustomLineItemCommand)
|
|
1881
|
+
.sc(CreateCustomLineItem)
|
|
1884
1882
|
.build() {
|
|
1885
1883
|
}
|
|
1886
1884
|
|
|
@@ -1888,16 +1886,11 @@ class CreatePricingPlanCommand extends smithyClient.Command
|
|
|
1888
1886
|
.classBuilder()
|
|
1889
1887
|
.ep(commonParams)
|
|
1890
1888
|
.m(function (Command, cs, config, o) {
|
|
1891
|
-
return [
|
|
1892
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1893
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1894
|
-
];
|
|
1889
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1895
1890
|
})
|
|
1896
1891
|
.s("AWSBillingConductor", "CreatePricingPlan", {})
|
|
1897
1892
|
.n("BillingconductorClient", "CreatePricingPlanCommand")
|
|
1898
|
-
.
|
|
1899
|
-
.ser(se_CreatePricingPlanCommand)
|
|
1900
|
-
.de(de_CreatePricingPlanCommand)
|
|
1893
|
+
.sc(CreatePricingPlan)
|
|
1901
1894
|
.build() {
|
|
1902
1895
|
}
|
|
1903
1896
|
|
|
@@ -1905,16 +1898,11 @@ class CreatePricingRuleCommand extends smithyClient.Command
|
|
|
1905
1898
|
.classBuilder()
|
|
1906
1899
|
.ep(commonParams)
|
|
1907
1900
|
.m(function (Command, cs, config, o) {
|
|
1908
|
-
return [
|
|
1909
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1910
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1911
|
-
];
|
|
1901
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1912
1902
|
})
|
|
1913
1903
|
.s("AWSBillingConductor", "CreatePricingRule", {})
|
|
1914
1904
|
.n("BillingconductorClient", "CreatePricingRuleCommand")
|
|
1915
|
-
.
|
|
1916
|
-
.ser(se_CreatePricingRuleCommand)
|
|
1917
|
-
.de(de_CreatePricingRuleCommand)
|
|
1905
|
+
.sc(CreatePricingRule)
|
|
1918
1906
|
.build() {
|
|
1919
1907
|
}
|
|
1920
1908
|
|
|
@@ -1922,16 +1910,11 @@ class DeleteBillingGroupCommand extends smithyClient.Command
|
|
|
1922
1910
|
.classBuilder()
|
|
1923
1911
|
.ep(commonParams)
|
|
1924
1912
|
.m(function (Command, cs, config, o) {
|
|
1925
|
-
return [
|
|
1926
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1927
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1928
|
-
];
|
|
1913
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1929
1914
|
})
|
|
1930
1915
|
.s("AWSBillingConductor", "DeleteBillingGroup", {})
|
|
1931
1916
|
.n("BillingconductorClient", "DeleteBillingGroupCommand")
|
|
1932
|
-
.
|
|
1933
|
-
.ser(se_DeleteBillingGroupCommand)
|
|
1934
|
-
.de(de_DeleteBillingGroupCommand)
|
|
1917
|
+
.sc(DeleteBillingGroup)
|
|
1935
1918
|
.build() {
|
|
1936
1919
|
}
|
|
1937
1920
|
|
|
@@ -1939,16 +1922,11 @@ class DeleteCustomLineItemCommand extends smithyClient.Command
|
|
|
1939
1922
|
.classBuilder()
|
|
1940
1923
|
.ep(commonParams)
|
|
1941
1924
|
.m(function (Command, cs, config, o) {
|
|
1942
|
-
return [
|
|
1943
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1944
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1945
|
-
];
|
|
1925
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1946
1926
|
})
|
|
1947
1927
|
.s("AWSBillingConductor", "DeleteCustomLineItem", {})
|
|
1948
1928
|
.n("BillingconductorClient", "DeleteCustomLineItemCommand")
|
|
1949
|
-
.
|
|
1950
|
-
.ser(se_DeleteCustomLineItemCommand)
|
|
1951
|
-
.de(de_DeleteCustomLineItemCommand)
|
|
1929
|
+
.sc(DeleteCustomLineItem)
|
|
1952
1930
|
.build() {
|
|
1953
1931
|
}
|
|
1954
1932
|
|
|
@@ -1956,16 +1934,11 @@ class DeletePricingPlanCommand extends smithyClient.Command
|
|
|
1956
1934
|
.classBuilder()
|
|
1957
1935
|
.ep(commonParams)
|
|
1958
1936
|
.m(function (Command, cs, config, o) {
|
|
1959
|
-
return [
|
|
1960
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1961
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1962
|
-
];
|
|
1937
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1963
1938
|
})
|
|
1964
1939
|
.s("AWSBillingConductor", "DeletePricingPlan", {})
|
|
1965
1940
|
.n("BillingconductorClient", "DeletePricingPlanCommand")
|
|
1966
|
-
.
|
|
1967
|
-
.ser(se_DeletePricingPlanCommand)
|
|
1968
|
-
.de(de_DeletePricingPlanCommand)
|
|
1941
|
+
.sc(DeletePricingPlan)
|
|
1969
1942
|
.build() {
|
|
1970
1943
|
}
|
|
1971
1944
|
|
|
@@ -1973,16 +1946,11 @@ class DeletePricingRuleCommand extends smithyClient.Command
|
|
|
1973
1946
|
.classBuilder()
|
|
1974
1947
|
.ep(commonParams)
|
|
1975
1948
|
.m(function (Command, cs, config, o) {
|
|
1976
|
-
return [
|
|
1977
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1978
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1979
|
-
];
|
|
1949
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1980
1950
|
})
|
|
1981
1951
|
.s("AWSBillingConductor", "DeletePricingRule", {})
|
|
1982
1952
|
.n("BillingconductorClient", "DeletePricingRuleCommand")
|
|
1983
|
-
.
|
|
1984
|
-
.ser(se_DeletePricingRuleCommand)
|
|
1985
|
-
.de(de_DeletePricingRuleCommand)
|
|
1953
|
+
.sc(DeletePricingRule)
|
|
1986
1954
|
.build() {
|
|
1987
1955
|
}
|
|
1988
1956
|
|
|
@@ -1990,16 +1958,11 @@ class DisassociateAccountsCommand extends smithyClient.Command
|
|
|
1990
1958
|
.classBuilder()
|
|
1991
1959
|
.ep(commonParams)
|
|
1992
1960
|
.m(function (Command, cs, config, o) {
|
|
1993
|
-
return [
|
|
1994
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1995
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1996
|
-
];
|
|
1961
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1997
1962
|
})
|
|
1998
1963
|
.s("AWSBillingConductor", "DisassociateAccounts", {})
|
|
1999
1964
|
.n("BillingconductorClient", "DisassociateAccountsCommand")
|
|
2000
|
-
.
|
|
2001
|
-
.ser(se_DisassociateAccountsCommand)
|
|
2002
|
-
.de(de_DisassociateAccountsCommand)
|
|
1965
|
+
.sc(DisassociateAccounts)
|
|
2003
1966
|
.build() {
|
|
2004
1967
|
}
|
|
2005
1968
|
|
|
@@ -2007,16 +1970,11 @@ class DisassociatePricingRulesCommand extends smithyClient.Command
|
|
|
2007
1970
|
.classBuilder()
|
|
2008
1971
|
.ep(commonParams)
|
|
2009
1972
|
.m(function (Command, cs, config, o) {
|
|
2010
|
-
return [
|
|
2011
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2012
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2013
|
-
];
|
|
1973
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2014
1974
|
})
|
|
2015
1975
|
.s("AWSBillingConductor", "DisassociatePricingRules", {})
|
|
2016
1976
|
.n("BillingconductorClient", "DisassociatePricingRulesCommand")
|
|
2017
|
-
.
|
|
2018
|
-
.ser(se_DisassociatePricingRulesCommand)
|
|
2019
|
-
.de(de_DisassociatePricingRulesCommand)
|
|
1977
|
+
.sc(DisassociatePricingRules)
|
|
2020
1978
|
.build() {
|
|
2021
1979
|
}
|
|
2022
1980
|
|
|
@@ -2024,16 +1982,11 @@ class GetBillingGroupCostReportCommand extends smithyClient.Command
|
|
|
2024
1982
|
.classBuilder()
|
|
2025
1983
|
.ep(commonParams)
|
|
2026
1984
|
.m(function (Command, cs, config, o) {
|
|
2027
|
-
return [
|
|
2028
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2029
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2030
|
-
];
|
|
1985
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2031
1986
|
})
|
|
2032
1987
|
.s("AWSBillingConductor", "GetBillingGroupCostReport", {})
|
|
2033
1988
|
.n("BillingconductorClient", "GetBillingGroupCostReportCommand")
|
|
2034
|
-
.
|
|
2035
|
-
.ser(se_GetBillingGroupCostReportCommand)
|
|
2036
|
-
.de(de_GetBillingGroupCostReportCommand)
|
|
1989
|
+
.sc(GetBillingGroupCostReport)
|
|
2037
1990
|
.build() {
|
|
2038
1991
|
}
|
|
2039
1992
|
|
|
@@ -2041,16 +1994,11 @@ class ListAccountAssociationsCommand extends smithyClient.Command
|
|
|
2041
1994
|
.classBuilder()
|
|
2042
1995
|
.ep(commonParams)
|
|
2043
1996
|
.m(function (Command, cs, config, o) {
|
|
2044
|
-
return [
|
|
2045
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2046
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2047
|
-
];
|
|
1997
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2048
1998
|
})
|
|
2049
1999
|
.s("AWSBillingConductor", "ListAccountAssociations", {})
|
|
2050
2000
|
.n("BillingconductorClient", "ListAccountAssociationsCommand")
|
|
2051
|
-
.
|
|
2052
|
-
.ser(se_ListAccountAssociationsCommand)
|
|
2053
|
-
.de(de_ListAccountAssociationsCommand)
|
|
2001
|
+
.sc(ListAccountAssociations)
|
|
2054
2002
|
.build() {
|
|
2055
2003
|
}
|
|
2056
2004
|
|
|
@@ -2058,16 +2006,11 @@ class ListBillingGroupCostReportsCommand extends smithyClient.Command
|
|
|
2058
2006
|
.classBuilder()
|
|
2059
2007
|
.ep(commonParams)
|
|
2060
2008
|
.m(function (Command, cs, config, o) {
|
|
2061
|
-
return [
|
|
2062
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2063
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2064
|
-
];
|
|
2009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2065
2010
|
})
|
|
2066
2011
|
.s("AWSBillingConductor", "ListBillingGroupCostReports", {})
|
|
2067
2012
|
.n("BillingconductorClient", "ListBillingGroupCostReportsCommand")
|
|
2068
|
-
.
|
|
2069
|
-
.ser(se_ListBillingGroupCostReportsCommand)
|
|
2070
|
-
.de(de_ListBillingGroupCostReportsCommand)
|
|
2013
|
+
.sc(ListBillingGroupCostReports)
|
|
2071
2014
|
.build() {
|
|
2072
2015
|
}
|
|
2073
2016
|
|
|
@@ -2075,16 +2018,11 @@ class ListBillingGroupsCommand extends smithyClient.Command
|
|
|
2075
2018
|
.classBuilder()
|
|
2076
2019
|
.ep(commonParams)
|
|
2077
2020
|
.m(function (Command, cs, config, o) {
|
|
2078
|
-
return [
|
|
2079
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2080
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2081
|
-
];
|
|
2021
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2082
2022
|
})
|
|
2083
2023
|
.s("AWSBillingConductor", "ListBillingGroups", {})
|
|
2084
2024
|
.n("BillingconductorClient", "ListBillingGroupsCommand")
|
|
2085
|
-
.
|
|
2086
|
-
.ser(se_ListBillingGroupsCommand)
|
|
2087
|
-
.de(de_ListBillingGroupsCommand)
|
|
2025
|
+
.sc(ListBillingGroups)
|
|
2088
2026
|
.build() {
|
|
2089
2027
|
}
|
|
2090
2028
|
|
|
@@ -2092,16 +2030,11 @@ class ListCustomLineItemsCommand extends smithyClient.Command
|
|
|
2092
2030
|
.classBuilder()
|
|
2093
2031
|
.ep(commonParams)
|
|
2094
2032
|
.m(function (Command, cs, config, o) {
|
|
2095
|
-
return [
|
|
2096
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2097
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2098
|
-
];
|
|
2033
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2099
2034
|
})
|
|
2100
2035
|
.s("AWSBillingConductor", "ListCustomLineItems", {})
|
|
2101
2036
|
.n("BillingconductorClient", "ListCustomLineItemsCommand")
|
|
2102
|
-
.
|
|
2103
|
-
.ser(se_ListCustomLineItemsCommand)
|
|
2104
|
-
.de(de_ListCustomLineItemsCommand)
|
|
2037
|
+
.sc(ListCustomLineItems)
|
|
2105
2038
|
.build() {
|
|
2106
2039
|
}
|
|
2107
2040
|
|
|
@@ -2109,16 +2042,11 @@ class ListCustomLineItemVersionsCommand extends smithyClient.Command
|
|
|
2109
2042
|
.classBuilder()
|
|
2110
2043
|
.ep(commonParams)
|
|
2111
2044
|
.m(function (Command, cs, config, o) {
|
|
2112
|
-
return [
|
|
2113
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2114
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2115
|
-
];
|
|
2045
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2116
2046
|
})
|
|
2117
2047
|
.s("AWSBillingConductor", "ListCustomLineItemVersions", {})
|
|
2118
2048
|
.n("BillingconductorClient", "ListCustomLineItemVersionsCommand")
|
|
2119
|
-
.
|
|
2120
|
-
.ser(se_ListCustomLineItemVersionsCommand)
|
|
2121
|
-
.de(de_ListCustomLineItemVersionsCommand)
|
|
2049
|
+
.sc(ListCustomLineItemVersions)
|
|
2122
2050
|
.build() {
|
|
2123
2051
|
}
|
|
2124
2052
|
|
|
@@ -2126,16 +2054,11 @@ class ListPricingPlansAssociatedWithPricingRuleCommand extends smithyClient.Comm
|
|
|
2126
2054
|
.classBuilder()
|
|
2127
2055
|
.ep(commonParams)
|
|
2128
2056
|
.m(function (Command, cs, config, o) {
|
|
2129
|
-
return [
|
|
2130
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2131
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2132
|
-
];
|
|
2057
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2133
2058
|
})
|
|
2134
2059
|
.s("AWSBillingConductor", "ListPricingPlansAssociatedWithPricingRule", {})
|
|
2135
2060
|
.n("BillingconductorClient", "ListPricingPlansAssociatedWithPricingRuleCommand")
|
|
2136
|
-
.
|
|
2137
|
-
.ser(se_ListPricingPlansAssociatedWithPricingRuleCommand)
|
|
2138
|
-
.de(de_ListPricingPlansAssociatedWithPricingRuleCommand)
|
|
2061
|
+
.sc(ListPricingPlansAssociatedWithPricingRule)
|
|
2139
2062
|
.build() {
|
|
2140
2063
|
}
|
|
2141
2064
|
|
|
@@ -2143,16 +2066,11 @@ class ListPricingPlansCommand extends smithyClient.Command
|
|
|
2143
2066
|
.classBuilder()
|
|
2144
2067
|
.ep(commonParams)
|
|
2145
2068
|
.m(function (Command, cs, config, o) {
|
|
2146
|
-
return [
|
|
2147
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2148
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2149
|
-
];
|
|
2069
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2150
2070
|
})
|
|
2151
2071
|
.s("AWSBillingConductor", "ListPricingPlans", {})
|
|
2152
2072
|
.n("BillingconductorClient", "ListPricingPlansCommand")
|
|
2153
|
-
.
|
|
2154
|
-
.ser(se_ListPricingPlansCommand)
|
|
2155
|
-
.de(de_ListPricingPlansCommand)
|
|
2073
|
+
.sc(ListPricingPlans)
|
|
2156
2074
|
.build() {
|
|
2157
2075
|
}
|
|
2158
2076
|
|
|
@@ -2160,16 +2078,11 @@ class ListPricingRulesAssociatedToPricingPlanCommand extends smithyClient.Comman
|
|
|
2160
2078
|
.classBuilder()
|
|
2161
2079
|
.ep(commonParams)
|
|
2162
2080
|
.m(function (Command, cs, config, o) {
|
|
2163
|
-
return [
|
|
2164
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2165
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2166
|
-
];
|
|
2081
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2167
2082
|
})
|
|
2168
2083
|
.s("AWSBillingConductor", "ListPricingRulesAssociatedToPricingPlan", {})
|
|
2169
2084
|
.n("BillingconductorClient", "ListPricingRulesAssociatedToPricingPlanCommand")
|
|
2170
|
-
.
|
|
2171
|
-
.ser(se_ListPricingRulesAssociatedToPricingPlanCommand)
|
|
2172
|
-
.de(de_ListPricingRulesAssociatedToPricingPlanCommand)
|
|
2085
|
+
.sc(ListPricingRulesAssociatedToPricingPlan)
|
|
2173
2086
|
.build() {
|
|
2174
2087
|
}
|
|
2175
2088
|
|
|
@@ -2177,16 +2090,11 @@ class ListPricingRulesCommand extends smithyClient.Command
|
|
|
2177
2090
|
.classBuilder()
|
|
2178
2091
|
.ep(commonParams)
|
|
2179
2092
|
.m(function (Command, cs, config, o) {
|
|
2180
|
-
return [
|
|
2181
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2182
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2183
|
-
];
|
|
2093
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2184
2094
|
})
|
|
2185
2095
|
.s("AWSBillingConductor", "ListPricingRules", {})
|
|
2186
2096
|
.n("BillingconductorClient", "ListPricingRulesCommand")
|
|
2187
|
-
.
|
|
2188
|
-
.ser(se_ListPricingRulesCommand)
|
|
2189
|
-
.de(de_ListPricingRulesCommand)
|
|
2097
|
+
.sc(ListPricingRules)
|
|
2190
2098
|
.build() {
|
|
2191
2099
|
}
|
|
2192
2100
|
|
|
@@ -2194,16 +2102,11 @@ class ListResourcesAssociatedToCustomLineItemCommand extends smithyClient.Comman
|
|
|
2194
2102
|
.classBuilder()
|
|
2195
2103
|
.ep(commonParams)
|
|
2196
2104
|
.m(function (Command, cs, config, o) {
|
|
2197
|
-
return [
|
|
2198
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2199
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2200
|
-
];
|
|
2105
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2201
2106
|
})
|
|
2202
2107
|
.s("AWSBillingConductor", "ListResourcesAssociatedToCustomLineItem", {})
|
|
2203
2108
|
.n("BillingconductorClient", "ListResourcesAssociatedToCustomLineItemCommand")
|
|
2204
|
-
.
|
|
2205
|
-
.ser(se_ListResourcesAssociatedToCustomLineItemCommand)
|
|
2206
|
-
.de(de_ListResourcesAssociatedToCustomLineItemCommand)
|
|
2109
|
+
.sc(ListResourcesAssociatedToCustomLineItem)
|
|
2207
2110
|
.build() {
|
|
2208
2111
|
}
|
|
2209
2112
|
|
|
@@ -2211,16 +2114,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2211
2114
|
.classBuilder()
|
|
2212
2115
|
.ep(commonParams)
|
|
2213
2116
|
.m(function (Command, cs, config, o) {
|
|
2214
|
-
return [
|
|
2215
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2216
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2217
|
-
];
|
|
2117
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2218
2118
|
})
|
|
2219
2119
|
.s("AWSBillingConductor", "ListTagsForResource", {})
|
|
2220
2120
|
.n("BillingconductorClient", "ListTagsForResourceCommand")
|
|
2221
|
-
.
|
|
2222
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2223
|
-
.de(de_ListTagsForResourceCommand)
|
|
2121
|
+
.sc(ListTagsForResource)
|
|
2224
2122
|
.build() {
|
|
2225
2123
|
}
|
|
2226
2124
|
|
|
@@ -2228,16 +2126,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2228
2126
|
.classBuilder()
|
|
2229
2127
|
.ep(commonParams)
|
|
2230
2128
|
.m(function (Command, cs, config, o) {
|
|
2231
|
-
return [
|
|
2232
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2233
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2234
|
-
];
|
|
2129
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2235
2130
|
})
|
|
2236
2131
|
.s("AWSBillingConductor", "TagResource", {})
|
|
2237
2132
|
.n("BillingconductorClient", "TagResourceCommand")
|
|
2238
|
-
.
|
|
2239
|
-
.ser(se_TagResourceCommand)
|
|
2240
|
-
.de(de_TagResourceCommand)
|
|
2133
|
+
.sc(TagResource)
|
|
2241
2134
|
.build() {
|
|
2242
2135
|
}
|
|
2243
2136
|
|
|
@@ -2245,16 +2138,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2245
2138
|
.classBuilder()
|
|
2246
2139
|
.ep(commonParams)
|
|
2247
2140
|
.m(function (Command, cs, config, o) {
|
|
2248
|
-
return [
|
|
2249
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2250
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2251
|
-
];
|
|
2141
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2252
2142
|
})
|
|
2253
2143
|
.s("AWSBillingConductor", "UntagResource", {})
|
|
2254
2144
|
.n("BillingconductorClient", "UntagResourceCommand")
|
|
2255
|
-
.
|
|
2256
|
-
.ser(se_UntagResourceCommand)
|
|
2257
|
-
.de(de_UntagResourceCommand)
|
|
2145
|
+
.sc(UntagResource)
|
|
2258
2146
|
.build() {
|
|
2259
2147
|
}
|
|
2260
2148
|
|
|
@@ -2262,16 +2150,11 @@ class UpdateBillingGroupCommand extends smithyClient.Command
|
|
|
2262
2150
|
.classBuilder()
|
|
2263
2151
|
.ep(commonParams)
|
|
2264
2152
|
.m(function (Command, cs, config, o) {
|
|
2265
|
-
return [
|
|
2266
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2267
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2268
|
-
];
|
|
2153
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2269
2154
|
})
|
|
2270
2155
|
.s("AWSBillingConductor", "UpdateBillingGroup", {})
|
|
2271
2156
|
.n("BillingconductorClient", "UpdateBillingGroupCommand")
|
|
2272
|
-
.
|
|
2273
|
-
.ser(se_UpdateBillingGroupCommand)
|
|
2274
|
-
.de(de_UpdateBillingGroupCommand)
|
|
2157
|
+
.sc(UpdateBillingGroup)
|
|
2275
2158
|
.build() {
|
|
2276
2159
|
}
|
|
2277
2160
|
|
|
@@ -2279,16 +2162,11 @@ class UpdateCustomLineItemCommand extends smithyClient.Command
|
|
|
2279
2162
|
.classBuilder()
|
|
2280
2163
|
.ep(commonParams)
|
|
2281
2164
|
.m(function (Command, cs, config, o) {
|
|
2282
|
-
return [
|
|
2283
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2284
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2285
|
-
];
|
|
2165
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2286
2166
|
})
|
|
2287
2167
|
.s("AWSBillingConductor", "UpdateCustomLineItem", {})
|
|
2288
2168
|
.n("BillingconductorClient", "UpdateCustomLineItemCommand")
|
|
2289
|
-
.
|
|
2290
|
-
.ser(se_UpdateCustomLineItemCommand)
|
|
2291
|
-
.de(de_UpdateCustomLineItemCommand)
|
|
2169
|
+
.sc(UpdateCustomLineItem)
|
|
2292
2170
|
.build() {
|
|
2293
2171
|
}
|
|
2294
2172
|
|
|
@@ -2296,16 +2174,11 @@ class UpdatePricingPlanCommand extends smithyClient.Command
|
|
|
2296
2174
|
.classBuilder()
|
|
2297
2175
|
.ep(commonParams)
|
|
2298
2176
|
.m(function (Command, cs, config, o) {
|
|
2299
|
-
return [
|
|
2300
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2301
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2302
|
-
];
|
|
2177
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2303
2178
|
})
|
|
2304
2179
|
.s("AWSBillingConductor", "UpdatePricingPlan", {})
|
|
2305
2180
|
.n("BillingconductorClient", "UpdatePricingPlanCommand")
|
|
2306
|
-
.
|
|
2307
|
-
.ser(se_UpdatePricingPlanCommand)
|
|
2308
|
-
.de(de_UpdatePricingPlanCommand)
|
|
2181
|
+
.sc(UpdatePricingPlan)
|
|
2309
2182
|
.build() {
|
|
2310
2183
|
}
|
|
2311
2184
|
|
|
@@ -2313,16 +2186,11 @@ class UpdatePricingRuleCommand extends smithyClient.Command
|
|
|
2313
2186
|
.classBuilder()
|
|
2314
2187
|
.ep(commonParams)
|
|
2315
2188
|
.m(function (Command, cs, config, o) {
|
|
2316
|
-
return [
|
|
2317
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2318
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2319
|
-
];
|
|
2189
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2320
2190
|
})
|
|
2321
2191
|
.s("AWSBillingConductor", "UpdatePricingRule", {})
|
|
2322
2192
|
.n("BillingconductorClient", "UpdatePricingRuleCommand")
|
|
2323
|
-
.
|
|
2324
|
-
.ser(se_UpdatePricingRuleCommand)
|
|
2325
|
-
.de(de_UpdatePricingRuleCommand)
|
|
2193
|
+
.sc(UpdatePricingRule)
|
|
2326
2194
|
.build() {
|
|
2327
2195
|
}
|
|
2328
2196
|
|
|
@@ -2394,34 +2262,26 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2394
2262
|
enumerable: true,
|
|
2395
2263
|
get: function () { return smithyClient.Client; }
|
|
2396
2264
|
});
|
|
2397
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2398
|
-
exports.AccountAssociationsListElementFilterSensitiveLog = AccountAssociationsListElementFilterSensitiveLog;
|
|
2265
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2399
2266
|
exports.AssociateAccountsCommand = AssociateAccountsCommand;
|
|
2400
2267
|
exports.AssociatePricingRulesCommand = AssociatePricingRulesCommand;
|
|
2401
2268
|
exports.AssociateResourceErrorReason = AssociateResourceErrorReason;
|
|
2402
2269
|
exports.BatchAssociateResourcesToCustomLineItemCommand = BatchAssociateResourcesToCustomLineItemCommand;
|
|
2403
2270
|
exports.BatchDisassociateResourcesFromCustomLineItemCommand = BatchDisassociateResourcesFromCustomLineItemCommand;
|
|
2404
|
-
exports.BillingGroupListElementFilterSensitiveLog = BillingGroupListElementFilterSensitiveLog;
|
|
2405
2271
|
exports.BillingGroupStatus = BillingGroupStatus;
|
|
2406
2272
|
exports.Billingconductor = Billingconductor;
|
|
2407
2273
|
exports.BillingconductorClient = BillingconductorClient;
|
|
2408
|
-
exports.BillingconductorServiceException = BillingconductorServiceException;
|
|
2274
|
+
exports.BillingconductorServiceException = BillingconductorServiceException$1;
|
|
2409
2275
|
exports.ComputationRuleEnum = ComputationRuleEnum;
|
|
2410
|
-
exports.ConflictException = ConflictException;
|
|
2276
|
+
exports.ConflictException = ConflictException$1;
|
|
2411
2277
|
exports.ConflictExceptionReason = ConflictExceptionReason;
|
|
2412
2278
|
exports.CreateBillingGroupCommand = CreateBillingGroupCommand;
|
|
2413
|
-
exports.CreateBillingGroupInputFilterSensitiveLog = CreateBillingGroupInputFilterSensitiveLog;
|
|
2414
2279
|
exports.CreateCustomLineItemCommand = CreateCustomLineItemCommand;
|
|
2415
|
-
exports.CreateCustomLineItemInputFilterSensitiveLog = CreateCustomLineItemInputFilterSensitiveLog;
|
|
2416
2280
|
exports.CreatePricingPlanCommand = CreatePricingPlanCommand;
|
|
2417
|
-
exports.CreatePricingPlanInputFilterSensitiveLog = CreatePricingPlanInputFilterSensitiveLog;
|
|
2418
2281
|
exports.CreatePricingRuleCommand = CreatePricingRuleCommand;
|
|
2419
|
-
exports.CreatePricingRuleInputFilterSensitiveLog = CreatePricingRuleInputFilterSensitiveLog;
|
|
2420
2282
|
exports.CurrencyCode = CurrencyCode;
|
|
2421
|
-
exports.CustomLineItemListElementFilterSensitiveLog = CustomLineItemListElementFilterSensitiveLog;
|
|
2422
2283
|
exports.CustomLineItemRelationship = CustomLineItemRelationship;
|
|
2423
2284
|
exports.CustomLineItemType = CustomLineItemType;
|
|
2424
|
-
exports.CustomLineItemVersionListElementFilterSensitiveLog = CustomLineItemVersionListElementFilterSensitiveLog;
|
|
2425
2285
|
exports.DeleteBillingGroupCommand = DeleteBillingGroupCommand;
|
|
2426
2286
|
exports.DeleteCustomLineItemCommand = DeleteCustomLineItemCommand;
|
|
2427
2287
|
exports.DeletePricingPlanCommand = DeletePricingPlanCommand;
|
|
@@ -2430,51 +2290,33 @@ exports.DisassociateAccountsCommand = DisassociateAccountsCommand;
|
|
|
2430
2290
|
exports.DisassociatePricingRulesCommand = DisassociatePricingRulesCommand;
|
|
2431
2291
|
exports.GetBillingGroupCostReportCommand = GetBillingGroupCostReportCommand;
|
|
2432
2292
|
exports.GroupByAttributeName = GroupByAttributeName;
|
|
2433
|
-
exports.InternalServerException = InternalServerException;
|
|
2293
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2434
2294
|
exports.LineItemFilterAttributeName = LineItemFilterAttributeName;
|
|
2435
2295
|
exports.LineItemFilterValue = LineItemFilterValue;
|
|
2436
2296
|
exports.ListAccountAssociationsCommand = ListAccountAssociationsCommand;
|
|
2437
|
-
exports.ListAccountAssociationsOutputFilterSensitiveLog = ListAccountAssociationsOutputFilterSensitiveLog;
|
|
2438
2297
|
exports.ListBillingGroupCostReportsCommand = ListBillingGroupCostReportsCommand;
|
|
2439
2298
|
exports.ListBillingGroupsCommand = ListBillingGroupsCommand;
|
|
2440
|
-
exports.ListBillingGroupsOutputFilterSensitiveLog = ListBillingGroupsOutputFilterSensitiveLog;
|
|
2441
2299
|
exports.ListCustomLineItemVersionsCommand = ListCustomLineItemVersionsCommand;
|
|
2442
|
-
exports.ListCustomLineItemVersionsOutputFilterSensitiveLog = ListCustomLineItemVersionsOutputFilterSensitiveLog;
|
|
2443
2300
|
exports.ListCustomLineItemsCommand = ListCustomLineItemsCommand;
|
|
2444
|
-
exports.ListCustomLineItemsFilterFilterSensitiveLog = ListCustomLineItemsFilterFilterSensitiveLog;
|
|
2445
|
-
exports.ListCustomLineItemsInputFilterSensitiveLog = ListCustomLineItemsInputFilterSensitiveLog;
|
|
2446
|
-
exports.ListCustomLineItemsOutputFilterSensitiveLog = ListCustomLineItemsOutputFilterSensitiveLog;
|
|
2447
2301
|
exports.ListPricingPlansAssociatedWithPricingRuleCommand = ListPricingPlansAssociatedWithPricingRuleCommand;
|
|
2448
2302
|
exports.ListPricingPlansCommand = ListPricingPlansCommand;
|
|
2449
|
-
exports.ListPricingPlansOutputFilterSensitiveLog = ListPricingPlansOutputFilterSensitiveLog;
|
|
2450
2303
|
exports.ListPricingRulesAssociatedToPricingPlanCommand = ListPricingRulesAssociatedToPricingPlanCommand;
|
|
2451
2304
|
exports.ListPricingRulesCommand = ListPricingRulesCommand;
|
|
2452
|
-
exports.ListPricingRulesOutputFilterSensitiveLog = ListPricingRulesOutputFilterSensitiveLog;
|
|
2453
2305
|
exports.ListResourcesAssociatedToCustomLineItemCommand = ListResourcesAssociatedToCustomLineItemCommand;
|
|
2454
2306
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2455
2307
|
exports.MatchOption = MatchOption;
|
|
2456
|
-
exports.PricingPlanListElementFilterSensitiveLog = PricingPlanListElementFilterSensitiveLog;
|
|
2457
|
-
exports.PricingRuleListElementFilterSensitiveLog = PricingRuleListElementFilterSensitiveLog;
|
|
2458
2308
|
exports.PricingRuleScope = PricingRuleScope;
|
|
2459
2309
|
exports.PricingRuleType = PricingRuleType;
|
|
2460
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2461
|
-
exports.ServiceLimitExceededException = ServiceLimitExceededException;
|
|
2310
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2311
|
+
exports.ServiceLimitExceededException = ServiceLimitExceededException$1;
|
|
2462
2312
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2463
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2313
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2464
2314
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2465
2315
|
exports.UpdateBillingGroupCommand = UpdateBillingGroupCommand;
|
|
2466
|
-
exports.UpdateBillingGroupInputFilterSensitiveLog = UpdateBillingGroupInputFilterSensitiveLog;
|
|
2467
|
-
exports.UpdateBillingGroupOutputFilterSensitiveLog = UpdateBillingGroupOutputFilterSensitiveLog;
|
|
2468
2316
|
exports.UpdateCustomLineItemCommand = UpdateCustomLineItemCommand;
|
|
2469
|
-
exports.UpdateCustomLineItemInputFilterSensitiveLog = UpdateCustomLineItemInputFilterSensitiveLog;
|
|
2470
|
-
exports.UpdateCustomLineItemOutputFilterSensitiveLog = UpdateCustomLineItemOutputFilterSensitiveLog;
|
|
2471
2317
|
exports.UpdatePricingPlanCommand = UpdatePricingPlanCommand;
|
|
2472
|
-
exports.UpdatePricingPlanInputFilterSensitiveLog = UpdatePricingPlanInputFilterSensitiveLog;
|
|
2473
|
-
exports.UpdatePricingPlanOutputFilterSensitiveLog = UpdatePricingPlanOutputFilterSensitiveLog;
|
|
2474
2318
|
exports.UpdatePricingRuleCommand = UpdatePricingRuleCommand;
|
|
2475
|
-
exports.
|
|
2476
|
-
exports.UpdatePricingRuleOutputFilterSensitiveLog = UpdatePricingRuleOutputFilterSensitiveLog;
|
|
2477
|
-
exports.ValidationException = ValidationException;
|
|
2319
|
+
exports.ValidationException = ValidationException$1;
|
|
2478
2320
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2479
2321
|
exports.paginateGetBillingGroupCostReport = paginateGetBillingGroupCostReport;
|
|
2480
2322
|
exports.paginateListAccountAssociations = paginateListAccountAssociations;
|