@aws-sdk/client-billingconductor 3.181.0 → 3.183.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/Billingconductor.js +122 -129
  3. package/dist-es/BillingconductorClient.js +22 -28
  4. package/dist-es/commands/AssociateAccountsCommand.js +21 -28
  5. package/dist-es/commands/AssociatePricingRulesCommand.js +21 -28
  6. package/dist-es/commands/BatchAssociateResourcesToCustomLineItemCommand.js +21 -28
  7. package/dist-es/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +21 -28
  8. package/dist-es/commands/CreateBillingGroupCommand.js +21 -28
  9. package/dist-es/commands/CreateCustomLineItemCommand.js +21 -28
  10. package/dist-es/commands/CreatePricingPlanCommand.js +21 -28
  11. package/dist-es/commands/CreatePricingRuleCommand.js +21 -28
  12. package/dist-es/commands/DeleteBillingGroupCommand.js +21 -28
  13. package/dist-es/commands/DeleteCustomLineItemCommand.js +21 -28
  14. package/dist-es/commands/DeletePricingPlanCommand.js +21 -28
  15. package/dist-es/commands/DeletePricingRuleCommand.js +21 -28
  16. package/dist-es/commands/DisassociateAccountsCommand.js +21 -28
  17. package/dist-es/commands/DisassociatePricingRulesCommand.js +21 -28
  18. package/dist-es/commands/ListAccountAssociationsCommand.js +21 -28
  19. package/dist-es/commands/ListBillingGroupCostReportsCommand.js +21 -28
  20. package/dist-es/commands/ListBillingGroupsCommand.js +21 -28
  21. package/dist-es/commands/ListCustomLineItemsCommand.js +21 -28
  22. package/dist-es/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +21 -28
  23. package/dist-es/commands/ListPricingPlansCommand.js +21 -28
  24. package/dist-es/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +21 -28
  25. package/dist-es/commands/ListPricingRulesCommand.js +21 -28
  26. package/dist-es/commands/ListResourcesAssociatedToCustomLineItemCommand.js +21 -28
  27. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  28. package/dist-es/commands/TagResourceCommand.js +21 -28
  29. package/dist-es/commands/UntagResourceCommand.js +21 -28
  30. package/dist-es/commands/UpdateBillingGroupCommand.js +21 -28
  31. package/dist-es/commands/UpdateCustomLineItemCommand.js +21 -28
  32. package/dist-es/commands/UpdatePricingPlanCommand.js +21 -28
  33. package/dist-es/commands/UpdatePricingRuleCommand.js +21 -28
  34. package/dist-es/endpoints.js +8 -8
  35. package/dist-es/models/BillingconductorServiceException.js +5 -10
  36. package/dist-es/models/models_0.js +417 -197
  37. package/dist-es/pagination/ListAccountAssociationsPaginator.js +24 -67
  38. package/dist-es/pagination/ListBillingGroupCostReportsPaginator.js +25 -68
  39. package/dist-es/pagination/ListBillingGroupsPaginator.js +25 -68
  40. package/dist-es/pagination/ListCustomLineItemsPaginator.js +25 -68
  41. package/dist-es/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +25 -68
  42. package/dist-es/pagination/ListPricingPlansPaginator.js +25 -68
  43. package/dist-es/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +25 -68
  44. package/dist-es/pagination/ListPricingRulesPaginator.js +25 -68
  45. package/dist-es/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +25 -68
  46. package/dist-es/protocols/Aws_restJson1.js +2512 -3363
  47. package/dist-es/runtimeConfig.browser.js +26 -12
  48. package/dist-es/runtimeConfig.js +30 -12
  49. package/dist-es/runtimeConfig.native.js +8 -5
  50. package/dist-es/runtimeConfig.shared.js +8 -11
  51. package/package.json +33 -33
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { AssociateAccountsInputFilterSensitiveLog, AssociateAccountsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1AssociateAccountsCommand, serializeAws_restJson1AssociateAccountsCommand, } from "../protocols/Aws_restJson1";
6
- var AssociateAccountsCommand = (function (_super) {
7
- __extends(AssociateAccountsCommand, _super);
8
- function AssociateAccountsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class AssociateAccountsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- AssociateAccountsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "AssociateAccountsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "AssociateAccountsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: AssociateAccountsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: AssociateAccountsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- AssociateAccountsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1AssociateAccountsCommand(input, context);
33
- };
34
- AssociateAccountsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1AssociateAccountsCommand(output, context);
36
- };
37
- return AssociateAccountsCommand;
38
- }($Command));
39
- export { AssociateAccountsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { AssociatePricingRulesInputFilterSensitiveLog, AssociatePricingRulesOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1AssociatePricingRulesCommand, serializeAws_restJson1AssociatePricingRulesCommand, } from "../protocols/Aws_restJson1";
6
- var AssociatePricingRulesCommand = (function (_super) {
7
- __extends(AssociatePricingRulesCommand, _super);
8
- function AssociatePricingRulesCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class AssociatePricingRulesCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- AssociatePricingRulesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "AssociatePricingRulesCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "AssociatePricingRulesCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: AssociatePricingRulesInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: AssociatePricingRulesOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- AssociatePricingRulesCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1AssociatePricingRulesCommand(input, context);
33
- };
34
- AssociatePricingRulesCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1AssociatePricingRulesCommand(output, context);
36
- };
37
- return AssociatePricingRulesCommand;
38
- }($Command));
39
- export { AssociatePricingRulesCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog, BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1BatchAssociateResourcesToCustomLineItemCommand, serializeAws_restJson1BatchAssociateResourcesToCustomLineItemCommand, } from "../protocols/Aws_restJson1";
6
- var BatchAssociateResourcesToCustomLineItemCommand = (function (_super) {
7
- __extends(BatchAssociateResourcesToCustomLineItemCommand, _super);
8
- function BatchAssociateResourcesToCustomLineItemCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchAssociateResourcesToCustomLineItemCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchAssociateResourcesToCustomLineItemCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "BatchAssociateResourcesToCustomLineItemCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "BatchAssociateResourcesToCustomLineItemCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchAssociateResourcesToCustomLineItemCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1BatchAssociateResourcesToCustomLineItemCommand(input, context);
33
- };
34
- BatchAssociateResourcesToCustomLineItemCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1BatchAssociateResourcesToCustomLineItemCommand(output, context);
36
- };
37
- return BatchAssociateResourcesToCustomLineItemCommand;
38
- }($Command));
39
- export { BatchAssociateResourcesToCustomLineItemCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog, BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1BatchDisassociateResourcesFromCustomLineItemCommand, serializeAws_restJson1BatchDisassociateResourcesFromCustomLineItemCommand, } from "../protocols/Aws_restJson1";
6
- var BatchDisassociateResourcesFromCustomLineItemCommand = (function (_super) {
7
- __extends(BatchDisassociateResourcesFromCustomLineItemCommand, _super);
8
- function BatchDisassociateResourcesFromCustomLineItemCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchDisassociateResourcesFromCustomLineItemCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchDisassociateResourcesFromCustomLineItemCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "BatchDisassociateResourcesFromCustomLineItemCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "BatchDisassociateResourcesFromCustomLineItemCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchDisassociateResourcesFromCustomLineItemCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1BatchDisassociateResourcesFromCustomLineItemCommand(input, context);
33
- };
34
- BatchDisassociateResourcesFromCustomLineItemCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1BatchDisassociateResourcesFromCustomLineItemCommand(output, context);
36
- };
37
- return BatchDisassociateResourcesFromCustomLineItemCommand;
38
- }($Command));
39
- export { BatchDisassociateResourcesFromCustomLineItemCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateBillingGroupInputFilterSensitiveLog, CreateBillingGroupOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBillingGroupCommand, serializeAws_restJson1CreateBillingGroupCommand, } from "../protocols/Aws_restJson1";
6
- var CreateBillingGroupCommand = (function (_super) {
7
- __extends(CreateBillingGroupCommand, _super);
8
- function CreateBillingGroupCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBillingGroupCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBillingGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "CreateBillingGroupCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "CreateBillingGroupCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBillingGroupInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBillingGroupOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBillingGroupCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreateBillingGroupCommand(input, context);
33
- };
34
- CreateBillingGroupCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBillingGroupCommand(output, context);
36
- };
37
- return CreateBillingGroupCommand;
38
- }($Command));
39
- export { CreateBillingGroupCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateCustomLineItemInputFilterSensitiveLog, CreateCustomLineItemOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateCustomLineItemCommand, serializeAws_restJson1CreateCustomLineItemCommand, } from "../protocols/Aws_restJson1";
6
- var CreateCustomLineItemCommand = (function (_super) {
7
- __extends(CreateCustomLineItemCommand, _super);
8
- function CreateCustomLineItemCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateCustomLineItemCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateCustomLineItemCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "CreateCustomLineItemCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "CreateCustomLineItemCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateCustomLineItemInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateCustomLineItemOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateCustomLineItemCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreateCustomLineItemCommand(input, context);
33
- };
34
- CreateCustomLineItemCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateCustomLineItemCommand(output, context);
36
- };
37
- return CreateCustomLineItemCommand;
38
- }($Command));
39
- export { CreateCustomLineItemCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreatePricingPlanInputFilterSensitiveLog, CreatePricingPlanOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreatePricingPlanCommand, serializeAws_restJson1CreatePricingPlanCommand, } from "../protocols/Aws_restJson1";
6
- var CreatePricingPlanCommand = (function (_super) {
7
- __extends(CreatePricingPlanCommand, _super);
8
- function CreatePricingPlanCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreatePricingPlanCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreatePricingPlanCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "CreatePricingPlanCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "CreatePricingPlanCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreatePricingPlanInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreatePricingPlanOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreatePricingPlanCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreatePricingPlanCommand(input, context);
33
- };
34
- CreatePricingPlanCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreatePricingPlanCommand(output, context);
36
- };
37
- return CreatePricingPlanCommand;
38
- }($Command));
39
- export { CreatePricingPlanCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreatePricingRuleInputFilterSensitiveLog, CreatePricingRuleOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreatePricingRuleCommand, serializeAws_restJson1CreatePricingRuleCommand, } from "../protocols/Aws_restJson1";
6
- var CreatePricingRuleCommand = (function (_super) {
7
- __extends(CreatePricingRuleCommand, _super);
8
- function CreatePricingRuleCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreatePricingRuleCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreatePricingRuleCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "CreatePricingRuleCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "CreatePricingRuleCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreatePricingRuleInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreatePricingRuleOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreatePricingRuleCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreatePricingRuleCommand(input, context);
33
- };
34
- CreatePricingRuleCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreatePricingRuleCommand(output, context);
36
- };
37
- return CreatePricingRuleCommand;
38
- }($Command));
39
- export { CreatePricingRuleCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DeleteBillingGroupInputFilterSensitiveLog, DeleteBillingGroupOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteBillingGroupCommand, serializeAws_restJson1DeleteBillingGroupCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteBillingGroupCommand = (function (_super) {
7
- __extends(DeleteBillingGroupCommand, _super);
8
- function DeleteBillingGroupCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteBillingGroupCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteBillingGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "DeleteBillingGroupCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "DeleteBillingGroupCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteBillingGroupInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteBillingGroupOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteBillingGroupCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DeleteBillingGroupCommand(input, context);
33
- };
34
- DeleteBillingGroupCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteBillingGroupCommand(output, context);
36
- };
37
- return DeleteBillingGroupCommand;
38
- }($Command));
39
- export { DeleteBillingGroupCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DeleteCustomLineItemInputFilterSensitiveLog, DeleteCustomLineItemOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteCustomLineItemCommand, serializeAws_restJson1DeleteCustomLineItemCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteCustomLineItemCommand = (function (_super) {
7
- __extends(DeleteCustomLineItemCommand, _super);
8
- function DeleteCustomLineItemCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteCustomLineItemCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteCustomLineItemCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "BillingconductorClient";
18
- var commandName = "DeleteCustomLineItemCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "BillingconductorClient";
15
+ const commandName = "DeleteCustomLineItemCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteCustomLineItemInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteCustomLineItemOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteCustomLineItemCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DeleteCustomLineItemCommand(input, context);
33
- };
34
- DeleteCustomLineItemCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteCustomLineItemCommand(output, context);
36
- };
37
- return DeleteCustomLineItemCommand;
38
- }($Command));
39
- export { DeleteCustomLineItemCommand };
31
+ }
32
+ }