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