aws-sdk-billingconductor 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '05783b5b801919d33aebaf135a3bfefa72aa56241fbe65514d8e6f1484267202'
4
- data.tar.gz: d7e756c604bed53d5c51204851f308a6a4c89501febd6518a4a6c344caccf2ff
3
+ metadata.gz: 5bcfbbcbf1e6510586ed4afe3169d2dbaf9af53368b268cffa421413c956a3a5
4
+ data.tar.gz: ae2bf99cf08ae54c58cbd81980a2b18889a568964f76fe9ca053c4f09097af6b
5
5
  SHA512:
6
- metadata.gz: f084857b8bd364ec031feec06f6d1adbde66bdf2a4f52129be449240987bbc9536dd54ddacff6d37935485970ef1f72adfbc2678abbc5f4295711268962275d6
7
- data.tar.gz: 2131683af1fc460842d81c195fdafda86458e9b279aa7a086a2fcdc48a8d4e3701e9432745f68f4fc4788f1d225eeafd860c02934d6ef02e429a185a8d9400fa
6
+ metadata.gz: 34c61a52fad45d484e93b282a60621d73d0faf7264594516552c4039ca2212176f8bb77bba10a4e171fa5fb826e613a79cc1e9547070ab74b850628a0232106c
7
+ data.tar.gz: 44a05f1528385f3ab02a27b2e7fe473bce24212a9de2ee28703264719f5d936af9c7c55a7c5454648f228311a8da124c0cc5766de47efe51e4fe32e7c3ce4fb5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2022-11-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds the Recurring Custom Line Item feature along with a new API ListCustomLineItemVersions.
8
+
4
9
  1.1.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.0
@@ -463,7 +463,7 @@ module Aws::BillingConductor
463
463
  # resource_arns: ["CustomLineItemAssociationElement"], # required
464
464
  # billing_period_range: {
465
465
  # inclusive_start_billing_period: "BillingPeriod", # required
466
- # exclusive_end_billing_period: "BillingPeriod", # required
466
+ # exclusive_end_billing_period: "BillingPeriod",
467
467
  # },
468
468
  # })
469
469
  #
@@ -472,11 +472,11 @@ module Aws::BillingConductor
472
472
  # resp.successfully_associated_resources #=> Array
473
473
  # resp.successfully_associated_resources[0].arn #=> String
474
474
  # resp.successfully_associated_resources[0].error.message #=> String
475
- # resp.successfully_associated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION"
475
+ # resp.successfully_associated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION", "INVALID_BILLING_PERIOD_RANGE"
476
476
  # resp.failed_associated_resources #=> Array
477
477
  # resp.failed_associated_resources[0].arn #=> String
478
478
  # resp.failed_associated_resources[0].error.message #=> String
479
- # resp.failed_associated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION"
479
+ # resp.failed_associated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION", "INVALID_BILLING_PERIOD_RANGE"
480
480
  #
481
481
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/BatchAssociateResourcesToCustomLineItem AWS API Documentation
482
482
  #
@@ -511,7 +511,7 @@ module Aws::BillingConductor
511
511
  # resource_arns: ["CustomLineItemAssociationElement"], # required
512
512
  # billing_period_range: {
513
513
  # inclusive_start_billing_period: "BillingPeriod", # required
514
- # exclusive_end_billing_period: "BillingPeriod", # required
514
+ # exclusive_end_billing_period: "BillingPeriod",
515
515
  # },
516
516
  # })
517
517
  #
@@ -520,11 +520,11 @@ module Aws::BillingConductor
520
520
  # resp.successfully_disassociated_resources #=> Array
521
521
  # resp.successfully_disassociated_resources[0].arn #=> String
522
522
  # resp.successfully_disassociated_resources[0].error.message #=> String
523
- # resp.successfully_disassociated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION"
523
+ # resp.successfully_disassociated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION", "INVALID_BILLING_PERIOD_RANGE"
524
524
  # resp.failed_disassociated_resources #=> Array
525
525
  # resp.failed_disassociated_resources[0].arn #=> String
526
526
  # resp.failed_disassociated_resources[0].error.message #=> String
527
- # resp.failed_disassociated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION"
527
+ # resp.failed_disassociated_resources[0].error.reason #=> String, one of "INVALID_ARN", "SERVICE_LIMIT_EXCEEDED", "ILLEGAL_CUSTOMLINEITEM", "INTERNAL_SERVER_EXCEPTION", "INVALID_BILLING_PERIOD_RANGE"
528
528
  #
529
529
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/BatchDisassociateResourcesFromCustomLineItem AWS API Documentation
530
530
  #
@@ -561,7 +561,7 @@ module Aws::BillingConductor
561
561
  # The account ID that serves as the main account in a billing group.
562
562
  #
563
563
  # @option params [String] :description
564
- # The billing group description.
564
+ # The description of the billing group.
565
565
  #
566
566
  # @option params [Hash<String,String>] :tags
567
567
  # A map that contains tag keys and tag values that are attached to a
@@ -649,7 +649,7 @@ module Aws::BillingConductor
649
649
  # billing_group_arn: "BillingGroupArn", # required
650
650
  # billing_period_range: {
651
651
  # inclusive_start_billing_period: "BillingPeriod", # required
652
- # exclusive_end_billing_period: "BillingPeriod", # required
652
+ # exclusive_end_billing_period: "BillingPeriod",
653
653
  # },
654
654
  # tags: {
655
655
  # "TagKey" => "TagValue",
@@ -690,10 +690,11 @@ module Aws::BillingConductor
690
690
  # not need to pass this option.**
691
691
  #
692
692
  # @option params [required, String] :name
693
- # The pricing plan name. The names must be unique to each pricing plan.
693
+ # The name of the pricing plan. The names must be unique to each pricing
694
+ # plan.
694
695
  #
695
696
  # @option params [String] :description
696
- # The pricing plan description.
697
+ # The description of the pricing plan.
697
698
  #
698
699
  # @option params [Array<String>] :pricing_rule_arns
699
700
  # A list of Amazon Resource Names (ARNs) that define the pricing plan
@@ -736,7 +737,7 @@ module Aws::BillingConductor
736
737
  # of pricing plans.
737
738
  #
738
739
  # @option params [String] :client_token
739
- # The token that is needed to support idempotency. Idempotency isn't
740
+ # The token that's needed to support idempotency. Idempotency isn't
740
741
  # currently supported, but will be implemented in a future update.
741
742
  #
742
743
  # **A suitable default value is auto-generated.** You should normally
@@ -749,14 +750,14 @@ module Aws::BillingConductor
749
750
  # The pricing rule description.
750
751
  #
751
752
  # @option params [required, String] :scope
752
- # The scope of pricing rule that indicates if it is globally applicable,
753
- # or is service-specific.
753
+ # The scope of pricing rule that indicates if it's globally applicable,
754
+ # or it's service-specific.
754
755
  #
755
756
  # @option params [required, String] :type
756
757
  # The type of pricing rule.
757
758
  #
758
759
  # @option params [required, Float] :modifier_percentage
759
- # A percentage modifier applied on the public pricing rates.
760
+ # A percentage modifier that's applied on the public pricing rates.
760
761
  #
761
762
  # @option params [String] :service
762
763
  # If the `Scope` attribute is set to `SERVICE`, the attribute indicates
@@ -801,7 +802,8 @@ module Aws::BillingConductor
801
802
  # Deletes a billing group.
802
803
  #
803
804
  # @option params [required, String] :arn
804
- # The Amazon Resource Name (ARN) of the billing group you're deleting.
805
+ # The Amazon Resource Name (ARN) of the billing group that you're
806
+ # deleting.
805
807
  #
806
808
  # @return [Types::DeleteBillingGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
807
809
  #
@@ -846,7 +848,7 @@ module Aws::BillingConductor
846
848
  # arn: "CustomLineItemArn", # required
847
849
  # billing_period_range: {
848
850
  # inclusive_start_billing_period: "BillingPeriod", # required
849
- # exclusive_end_billing_period: "BillingPeriod", # required
851
+ # exclusive_end_billing_period: "BillingPeriod",
850
852
  # },
851
853
  # })
852
854
  #
@@ -867,7 +869,8 @@ module Aws::BillingConductor
867
869
  # any billing groups to delete successfully.
868
870
  #
869
871
  # @option params [required, String] :arn
870
- # The Amazon Resource Name (ARN) of the pricing plan you're deleting.
872
+ # The Amazon Resource Name (ARN) of the pricing plan that you're
873
+ # deleting.
871
874
  #
872
875
  # @return [Types::DeletePricingPlanOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
873
876
  #
@@ -892,11 +895,12 @@ module Aws::BillingConductor
892
895
  req.send_request(options)
893
896
  end
894
897
 
895
- # Deletes the pricing rule identified by the input Amazon Resource Name
896
- # (ARN).
898
+ # Deletes the pricing rule that's identified by the input Amazon
899
+ # Resource Name (ARN).
897
900
  #
898
901
  # @option params [required, String] :arn
899
- # The Amazon Resource Name (ARN) of the pricing rule you are deleting.
902
+ # The Amazon Resource Name (ARN) of the pricing rule that you are
903
+ # deleting.
900
904
  #
901
905
  # @return [Types::DeletePricingRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
902
906
  #
@@ -989,17 +993,11 @@ module Aws::BillingConductor
989
993
  req.send_request(options)
990
994
  end
991
995
 
992
- # <i> <b>Amazon Web Services Billing Conductor is in beta release and is
993
- # subject to change. Your use of Amazon Web Services Billing Conductor
994
- # is subject to the Beta Service Participation terms of the <a
995
- # href="https://aws.amazon.com/service-terms/">Amazon Web Services
996
- # Service Terms</a> (Section 1.10).</b> </i>
997
- #
998
996
  # This is a paginated call to list linked accounts that are linked to
999
997
  # the payer account for the specified time period. If no information is
1000
998
  # provided, the current billing period is used. The response will
1001
- # optionally include the billing group associated with the linked
1002
- # account.
999
+ # optionally include the billing group that's associated with the
1000
+ # linked account.
1003
1001
  #
1004
1002
  # @option params [String] :billing_period
1005
1003
  # The preferred billing period to get account associations.
@@ -1010,14 +1008,15 @@ module Aws::BillingConductor
1010
1008
  #
1011
1009
  # `MONITORED`\: linked accounts that are associated to billing groups.
1012
1010
  #
1013
- # `UNMONITORED`\: linked accounts that are not associated to billing
1011
+ # `UNMONITORED`\: linked accounts that aren't associated to billing
1014
1012
  # groups.
1015
1013
  #
1016
1014
  # `Billing Group Arn`\: linked accounts that are associated to the
1017
1015
  # provided billing group Arn.
1018
1016
  #
1019
1017
  # @option params [String] :next_token
1020
- # The pagination token used on subsequent calls to retrieve accounts.
1018
+ # The pagination token that's used on subsequent calls to retrieve
1019
+ # accounts.
1021
1020
  #
1022
1021
  # @return [Types::ListAccountAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1023
1022
  #
@@ -1066,7 +1065,7 @@ module Aws::BillingConductor
1066
1065
  # The maximum number of reports to retrieve.
1067
1066
  #
1068
1067
  # @option params [String] :next_token
1069
- # The pagination token used on subsequent calls to get reports.
1068
+ # The pagination token that's used on subsequent calls to get reports.
1070
1069
  #
1071
1070
  # @option params [Types::ListBillingGroupCostReportsFilter] :filters
1072
1071
  # A `ListBillingGroupCostReportsFilter` to specify billing groups to
@@ -1121,7 +1120,8 @@ module Aws::BillingConductor
1121
1120
  # The maximum number of billing groups to retrieve.
1122
1121
  #
1123
1122
  # @option params [String] :next_token
1124
- # The pagination token used on subsequent calls to get billing groups.
1123
+ # The pagination token that's used on subsequent calls to get billing
1124
+ # groups.
1125
1125
  #
1126
1126
  # @option params [Types::ListBillingGroupsFilter] :filters
1127
1127
  # A `ListBillingGroupsFilter` that specifies the billing group and
@@ -1170,6 +1170,70 @@ module Aws::BillingConductor
1170
1170
  req.send_request(options)
1171
1171
  end
1172
1172
 
1173
+ # A paginated call to get a list of all custom line item versions.
1174
+ #
1175
+ # @option params [required, String] :arn
1176
+ # The Amazon Resource Name (ARN) for the custom line item.
1177
+ #
1178
+ # @option params [Integer] :max_results
1179
+ # The maximum number of custom line item versions to retrieve.
1180
+ #
1181
+ # @option params [String] :next_token
1182
+ # The pagination token that's used on subsequent calls to retrieve
1183
+ # custom line item versions.
1184
+ #
1185
+ # @option params [Types::ListCustomLineItemVersionsFilter] :filters
1186
+ # A `ListCustomLineItemVersionsFilter` that specifies the billing period
1187
+ # range in which the custom line item versions are applied.
1188
+ #
1189
+ # @return [Types::ListCustomLineItemVersionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1190
+ #
1191
+ # * {Types::ListCustomLineItemVersionsOutput#custom_line_item_versions #custom_line_item_versions} => Array&lt;Types::CustomLineItemVersionListElement&gt;
1192
+ # * {Types::ListCustomLineItemVersionsOutput#next_token #next_token} => String
1193
+ #
1194
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1195
+ #
1196
+ # @example Request syntax with placeholder values
1197
+ #
1198
+ # resp = client.list_custom_line_item_versions({
1199
+ # arn: "CustomLineItemArn", # required
1200
+ # max_results: 1,
1201
+ # next_token: "Token",
1202
+ # filters: {
1203
+ # billing_period_range: {
1204
+ # start_billing_period: "BillingPeriod",
1205
+ # end_billing_period: "BillingPeriod",
1206
+ # },
1207
+ # },
1208
+ # })
1209
+ #
1210
+ # @example Response structure
1211
+ #
1212
+ # resp.custom_line_item_versions #=> Array
1213
+ # resp.custom_line_item_versions[0].name #=> String
1214
+ # resp.custom_line_item_versions[0].charge_details.flat.charge_value #=> Float
1215
+ # resp.custom_line_item_versions[0].charge_details.percentage.percentage_value #=> Float
1216
+ # resp.custom_line_item_versions[0].charge_details.type #=> String, one of "CREDIT", "FEE"
1217
+ # resp.custom_line_item_versions[0].currency_code #=> String, one of "USD", "CNY"
1218
+ # resp.custom_line_item_versions[0].description #=> String
1219
+ # resp.custom_line_item_versions[0].product_code #=> String
1220
+ # resp.custom_line_item_versions[0].billing_group_arn #=> String
1221
+ # resp.custom_line_item_versions[0].creation_time #=> Integer
1222
+ # resp.custom_line_item_versions[0].last_modified_time #=> Integer
1223
+ # resp.custom_line_item_versions[0].association_size #=> Integer
1224
+ # resp.custom_line_item_versions[0].start_billing_period #=> String
1225
+ # resp.custom_line_item_versions[0].end_billing_period #=> String
1226
+ # resp.next_token #=> String
1227
+ #
1228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListCustomLineItemVersions AWS API Documentation
1229
+ #
1230
+ # @overload list_custom_line_item_versions(params = {})
1231
+ # @param [Hash] params ({})
1232
+ def list_custom_line_item_versions(params = {}, options = {})
1233
+ req = build_request(:list_custom_line_item_versions, params)
1234
+ req.send_request(options)
1235
+ end
1236
+
1173
1237
  # A paginated call to get a list of all custom line items (FFLIs) for
1174
1238
  # the given billing period. If you don't provide a billing period, the
1175
1239
  # current billing period is used.
@@ -1181,8 +1245,8 @@ module Aws::BillingConductor
1181
1245
  # The maximum number of billing groups to retrieve.
1182
1246
  #
1183
1247
  # @option params [String] :next_token
1184
- # The pagination token used on subsequent calls to get custom line items
1185
- # (FFLIs).
1248
+ # The pagination token that's used on subsequent calls to get custom
1249
+ # line items (FFLIs).
1186
1250
  #
1187
1251
  # @option params [Types::ListCustomLineItemsFilter] :filters
1188
1252
  # A `ListCustomLineItemsFilter` that specifies the custom line item
@@ -1250,7 +1314,8 @@ module Aws::BillingConductor
1250
1314
  # The maximum number of pricing plans to retrieve.
1251
1315
  #
1252
1316
  # @option params [String] :next_token
1253
- # The pagination token used on subsequent call to get pricing plans.
1317
+ # The pagination token that's used on subsequent call to get pricing
1318
+ # plans.
1254
1319
  #
1255
1320
  # @return [Types::ListPricingPlansOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1256
1321
  #
@@ -1292,7 +1357,7 @@ module Aws::BillingConductor
1292
1357
  req.send_request(options)
1293
1358
  end
1294
1359
 
1295
- # A list of the pricing plans associated with a pricing rule.
1360
+ # A list of the pricing plans that are associated with a pricing rule.
1296
1361
  #
1297
1362
  # @option params [String] :billing_period
1298
1363
  # The pricing plan billing period for which associations will be listed.
@@ -1356,7 +1421,8 @@ module Aws::BillingConductor
1356
1421
  # The maximum number of pricing rules to retrieve.
1357
1422
  #
1358
1423
  # @option params [String] :next_token
1359
- # The pagination token used on subsequent call to get pricing rules.
1424
+ # The pagination token that's used on subsequent call to get pricing
1425
+ # rules.
1360
1426
  #
1361
1427
  # @return [Types::ListPricingRulesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1362
1428
  #
@@ -1402,7 +1468,7 @@ module Aws::BillingConductor
1402
1468
  req.send_request(options)
1403
1469
  end
1404
1470
 
1405
- # Lists the pricing rules associated with a pricing plan.
1471
+ # Lists the pricing rules that are associated with a pricing plan.
1406
1472
  #
1407
1473
  # @option params [String] :billing_period
1408
1474
  # The billing period for which the pricing rule associations are to be
@@ -1453,7 +1519,7 @@ module Aws::BillingConductor
1453
1519
  req.send_request(options)
1454
1520
  end
1455
1521
 
1456
- # List the resources associated to a custom line item.
1522
+ # List the resources that are associated to a custom line item.
1457
1523
  #
1458
1524
  # @option params [String] :billing_period
1459
1525
  # The billing period for which the resource associations will be listed.
@@ -1467,7 +1533,8 @@ module Aws::BillingConductor
1467
1533
  # retrieved.
1468
1534
  #
1469
1535
  # @option params [String] :next_token
1470
- # (Optional) The pagination token returned by a previous request.
1536
+ # (Optional) The pagination token that's returned by a previous
1537
+ # request.
1471
1538
  #
1472
1539
  # @option params [Types::ListResourcesAssociatedToCustomLineItemFilter] :filters
1473
1540
  # (Optional) A `ListResourcesAssociatedToCustomLineItemFilter` that can
@@ -1499,6 +1566,7 @@ module Aws::BillingConductor
1499
1566
  # resp.associated_resources #=> Array
1500
1567
  # resp.associated_resources[0].arn #=> String
1501
1568
  # resp.associated_resources[0].relationship #=> String, one of "PARENT", "CHILD"
1569
+ # resp.associated_resources[0].end_billing_period #=> String
1502
1570
  # resp.next_token #=> String
1503
1571
  #
1504
1572
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListResourcesAssociatedToCustomLineItem AWS API Documentation
@@ -1696,7 +1764,7 @@ module Aws::BillingConductor
1696
1764
  #
1697
1765
  # resp = client.update_custom_line_item({
1698
1766
  # arn: "CustomLineItemArn", # required
1699
- # name: "BillingGroupName",
1767
+ # name: "CustomLineItemName",
1700
1768
  # description: "CustomLineItemDescription",
1701
1769
  # charge_details: {
1702
1770
  # flat: {
@@ -1708,7 +1776,7 @@ module Aws::BillingConductor
1708
1776
  # },
1709
1777
  # billing_period_range: {
1710
1778
  # inclusive_start_billing_period: "BillingPeriod", # required
1711
- # exclusive_end_billing_period: "BillingPeriod", # required
1779
+ # exclusive_end_billing_period: "BillingPeriod",
1712
1780
  # },
1713
1781
  # })
1714
1782
  #
@@ -1736,14 +1804,15 @@ module Aws::BillingConductor
1736
1804
  # This updates an existing pricing plan.
1737
1805
  #
1738
1806
  # @option params [required, String] :arn
1739
- # The Amazon Resource Name (ARN) of the pricing plan you're updating.
1807
+ # The Amazon Resource Name (ARN) of the pricing plan that you're
1808
+ # updating.
1740
1809
  #
1741
1810
  # @option params [String] :name
1742
1811
  # The name of the pricing plan. The name must be unique to each pricing
1743
1812
  # plan.
1744
1813
  #
1745
1814
  # @option params [String] :description
1746
- # The pricing plan description.
1815
+ # The description of the pricing plan.
1747
1816
  #
1748
1817
  # @return [Types::UpdatePricingPlanOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1749
1818
  #
@@ -1852,7 +1921,7 @@ module Aws::BillingConductor
1852
1921
  params: params,
1853
1922
  config: config)
1854
1923
  context[:gem_name] = 'aws-sdk-billingconductor'
1855
- context[:gem_version] = '1.1.0'
1924
+ context[:gem_version] = '1.2.0'
1856
1925
  Seahorse::Client::Request.new(handlers, context)
1857
1926
  end
1858
1927
 
@@ -51,6 +51,7 @@ module Aws::BillingConductor
51
51
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
52
52
  ComputationPreference = Shapes::StructureShape.new(name: 'ComputationPreference')
53
53
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
54
+ ConflictExceptionReason = Shapes::StringShape.new(name: 'ConflictExceptionReason')
54
55
  CreateBillingGroupInput = Shapes::StructureShape.new(name: 'CreateBillingGroupInput')
55
56
  CreateBillingGroupOutput = Shapes::StructureShape.new(name: 'CreateBillingGroupOutput')
56
57
  CreateCustomLineItemInput = Shapes::StructureShape.new(name: 'CreateCustomLineItemInput')
@@ -81,6 +82,8 @@ module Aws::BillingConductor
81
82
  CustomLineItemProductCode = Shapes::StringShape.new(name: 'CustomLineItemProductCode')
82
83
  CustomLineItemRelationship = Shapes::StringShape.new(name: 'CustomLineItemRelationship')
83
84
  CustomLineItemType = Shapes::StringShape.new(name: 'CustomLineItemType')
85
+ CustomLineItemVersionList = Shapes::ListShape.new(name: 'CustomLineItemVersionList')
86
+ CustomLineItemVersionListElement = Shapes::StructureShape.new(name: 'CustomLineItemVersionListElement')
84
87
  DeleteBillingGroupInput = Shapes::StructureShape.new(name: 'DeleteBillingGroupInput')
85
88
  DeleteBillingGroupOutput = Shapes::StructureShape.new(name: 'DeleteBillingGroupOutput')
86
89
  DeleteCustomLineItemInput = Shapes::StructureShape.new(name: 'DeleteCustomLineItemInput')
@@ -109,6 +112,10 @@ module Aws::BillingConductor
109
112
  ListCustomLineItemChargeDetails = Shapes::StructureShape.new(name: 'ListCustomLineItemChargeDetails')
110
113
  ListCustomLineItemFlatChargeDetails = Shapes::StructureShape.new(name: 'ListCustomLineItemFlatChargeDetails')
111
114
  ListCustomLineItemPercentageChargeDetails = Shapes::StructureShape.new(name: 'ListCustomLineItemPercentageChargeDetails')
115
+ ListCustomLineItemVersionsBillingPeriodRangeFilter = Shapes::StructureShape.new(name: 'ListCustomLineItemVersionsBillingPeriodRangeFilter')
116
+ ListCustomLineItemVersionsFilter = Shapes::StructureShape.new(name: 'ListCustomLineItemVersionsFilter')
117
+ ListCustomLineItemVersionsInput = Shapes::StructureShape.new(name: 'ListCustomLineItemVersionsInput')
118
+ ListCustomLineItemVersionsOutput = Shapes::StructureShape.new(name: 'ListCustomLineItemVersionsOutput')
112
119
  ListCustomLineItemsFilter = Shapes::StructureShape.new(name: 'ListCustomLineItemsFilter')
113
120
  ListCustomLineItemsInput = Shapes::StructureShape.new(name: 'ListCustomLineItemsInput')
114
121
  ListCustomLineItemsOutput = Shapes::StructureShape.new(name: 'ListCustomLineItemsOutput')
@@ -223,7 +230,7 @@ module Aws::BillingConductor
223
230
  AssociateResourceError.add_member(:reason, Shapes::ShapeRef.new(shape: AssociateResourceErrorReason, location_name: "Reason"))
224
231
  AssociateResourceError.struct_class = Types::AssociateResourceError
225
232
 
226
- AssociateResourceResponseElement.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemArn, location_name: "Arn"))
233
+ AssociateResourceResponseElement.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemAssociationElement, location_name: "Arn"))
227
234
  AssociateResourceResponseElement.add_member(:error, Shapes::ShapeRef.new(shape: AssociateResourceError, location_name: "Error"))
228
235
  AssociateResourceResponseElement.struct_class = Types::AssociateResourceResponseElement
229
236
 
@@ -279,6 +286,7 @@ module Aws::BillingConductor
279
286
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
280
287
  ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
281
288
  ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceType"))
289
+ ConflictException.add_member(:reason, Shapes::ShapeRef.new(shape: ConflictExceptionReason, location_name: "Reason"))
282
290
  ConflictException.struct_class = Types::ConflictException
283
291
 
284
292
  CreateBillingGroupInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amzn-Client-Token", metadata: {"idempotencyToken"=>true}))
@@ -337,7 +345,7 @@ module Aws::BillingConductor
337
345
  CustomLineItemBatchDisassociationsList.member = Shapes::ShapeRef.new(shape: CustomLineItemAssociationElement)
338
346
 
339
347
  CustomLineItemBillingPeriodRange.add_member(:inclusive_start_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, required: true, location_name: "InclusiveStartBillingPeriod"))
340
- CustomLineItemBillingPeriodRange.add_member(:exclusive_end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, required: true, location_name: "ExclusiveEndBillingPeriod"))
348
+ CustomLineItemBillingPeriodRange.add_member(:exclusive_end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "ExclusiveEndBillingPeriod"))
341
349
  CustomLineItemBillingPeriodRange.struct_class = Types::CustomLineItemBillingPeriodRange
342
350
 
343
351
  CustomLineItemChargeDetails.add_member(:flat, Shapes::ShapeRef.new(shape: CustomLineItemFlatChargeDetails, location_name: "Flat"))
@@ -368,6 +376,21 @@ module Aws::BillingConductor
368
376
  CustomLineItemPercentageChargeDetails.add_member(:associated_values, Shapes::ShapeRef.new(shape: CustomLineItemAssociationsList, location_name: "AssociatedValues"))
369
377
  CustomLineItemPercentageChargeDetails.struct_class = Types::CustomLineItemPercentageChargeDetails
370
378
 
379
+ CustomLineItemVersionList.member = Shapes::ShapeRef.new(shape: CustomLineItemVersionListElement)
380
+
381
+ CustomLineItemVersionListElement.add_member(:name, Shapes::ShapeRef.new(shape: CustomLineItemName, location_name: "Name"))
382
+ CustomLineItemVersionListElement.add_member(:charge_details, Shapes::ShapeRef.new(shape: ListCustomLineItemChargeDetails, location_name: "ChargeDetails"))
383
+ CustomLineItemVersionListElement.add_member(:currency_code, Shapes::ShapeRef.new(shape: CurrencyCode, location_name: "CurrencyCode"))
384
+ CustomLineItemVersionListElement.add_member(:description, Shapes::ShapeRef.new(shape: CustomLineItemDescription, location_name: "Description"))
385
+ CustomLineItemVersionListElement.add_member(:product_code, Shapes::ShapeRef.new(shape: CustomLineItemProductCode, location_name: "ProductCode"))
386
+ CustomLineItemVersionListElement.add_member(:billing_group_arn, Shapes::ShapeRef.new(shape: BillingGroupArn, location_name: "BillingGroupArn"))
387
+ CustomLineItemVersionListElement.add_member(:creation_time, Shapes::ShapeRef.new(shape: Instant, location_name: "CreationTime"))
388
+ CustomLineItemVersionListElement.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Instant, location_name: "LastModifiedTime"))
389
+ CustomLineItemVersionListElement.add_member(:association_size, Shapes::ShapeRef.new(shape: NumberOfAssociations, location_name: "AssociationSize"))
390
+ CustomLineItemVersionListElement.add_member(:start_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "StartBillingPeriod"))
391
+ CustomLineItemVersionListElement.add_member(:end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "EndBillingPeriod"))
392
+ CustomLineItemVersionListElement.struct_class = Types::CustomLineItemVersionListElement
393
+
371
394
  DeleteBillingGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: BillingGroupArn, required: true, location_name: "Arn"))
372
395
  DeleteBillingGroupInput.struct_class = Types::DeleteBillingGroupInput
373
396
 
@@ -407,7 +430,7 @@ module Aws::BillingConductor
407
430
  DisassociatePricingRulesOutput.add_member(:arn, Shapes::ShapeRef.new(shape: PricingPlanArn, location_name: "Arn"))
408
431
  DisassociatePricingRulesOutput.struct_class = Types::DisassociatePricingRulesOutput
409
432
 
410
- DisassociateResourceResponseElement.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemArn, location_name: "Arn"))
433
+ DisassociateResourceResponseElement.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemAssociationElement, location_name: "Arn"))
411
434
  DisassociateResourceResponseElement.add_member(:error, Shapes::ShapeRef.new(shape: AssociateResourceError, location_name: "Error"))
412
435
  DisassociateResourceResponseElement.struct_class = Types::DisassociateResourceResponseElement
413
436
 
@@ -468,13 +491,30 @@ module Aws::BillingConductor
468
491
  ListCustomLineItemPercentageChargeDetails.add_member(:percentage_value, Shapes::ShapeRef.new(shape: CustomLineItemPercentageChargeValue, required: true, location_name: "PercentageValue"))
469
492
  ListCustomLineItemPercentageChargeDetails.struct_class = Types::ListCustomLineItemPercentageChargeDetails
470
493
 
494
+ ListCustomLineItemVersionsBillingPeriodRangeFilter.add_member(:start_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "StartBillingPeriod"))
495
+ ListCustomLineItemVersionsBillingPeriodRangeFilter.add_member(:end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "EndBillingPeriod"))
496
+ ListCustomLineItemVersionsBillingPeriodRangeFilter.struct_class = Types::ListCustomLineItemVersionsBillingPeriodRangeFilter
497
+
498
+ ListCustomLineItemVersionsFilter.add_member(:billing_period_range, Shapes::ShapeRef.new(shape: ListCustomLineItemVersionsBillingPeriodRangeFilter, location_name: "BillingPeriodRange"))
499
+ ListCustomLineItemVersionsFilter.struct_class = Types::ListCustomLineItemVersionsFilter
500
+
501
+ ListCustomLineItemVersionsInput.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemArn, required: true, location_name: "Arn"))
502
+ ListCustomLineItemVersionsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxCustomLineItemResults, location_name: "MaxResults"))
503
+ ListCustomLineItemVersionsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
504
+ ListCustomLineItemVersionsInput.add_member(:filters, Shapes::ShapeRef.new(shape: ListCustomLineItemVersionsFilter, location_name: "Filters"))
505
+ ListCustomLineItemVersionsInput.struct_class = Types::ListCustomLineItemVersionsInput
506
+
507
+ ListCustomLineItemVersionsOutput.add_member(:custom_line_item_versions, Shapes::ShapeRef.new(shape: CustomLineItemVersionList, location_name: "CustomLineItemVersions"))
508
+ ListCustomLineItemVersionsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
509
+ ListCustomLineItemVersionsOutput.struct_class = Types::ListCustomLineItemVersionsOutput
510
+
471
511
  ListCustomLineItemsFilter.add_member(:names, Shapes::ShapeRef.new(shape: CustomLineItemNameList, location_name: "Names"))
472
512
  ListCustomLineItemsFilter.add_member(:billing_groups, Shapes::ShapeRef.new(shape: BillingGroupArnList, location_name: "BillingGroups"))
473
513
  ListCustomLineItemsFilter.add_member(:arns, Shapes::ShapeRef.new(shape: CustomLineItemArns, location_name: "Arns"))
474
514
  ListCustomLineItemsFilter.struct_class = Types::ListCustomLineItemsFilter
475
515
 
476
516
  ListCustomLineItemsInput.add_member(:billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "BillingPeriod"))
477
- ListCustomLineItemsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxBillingGroupResults, location_name: "MaxResults"))
517
+ ListCustomLineItemsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxCustomLineItemResults, location_name: "MaxResults"))
478
518
  ListCustomLineItemsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
479
519
  ListCustomLineItemsInput.add_member(:filters, Shapes::ShapeRef.new(shape: ListCustomLineItemsFilter, location_name: "Filters"))
480
520
  ListCustomLineItemsInput.struct_class = Types::ListCustomLineItemsInput
@@ -552,6 +592,7 @@ module Aws::BillingConductor
552
592
 
553
593
  ListResourcesAssociatedToCustomLineItemResponseElement.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemAssociationElement, location_name: "Arn"))
554
594
  ListResourcesAssociatedToCustomLineItemResponseElement.add_member(:relationship, Shapes::ShapeRef.new(shape: CustomLineItemRelationship, location_name: "Relationship"))
595
+ ListResourcesAssociatedToCustomLineItemResponseElement.add_member(:end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "EndBillingPeriod"))
555
596
  ListResourcesAssociatedToCustomLineItemResponseElement.struct_class = Types::ListResourcesAssociatedToCustomLineItemResponseElement
556
597
 
557
598
  ListResourcesAssociatedToCustomLineItemResponseList.member = Shapes::ShapeRef.new(shape: ListResourcesAssociatedToCustomLineItemResponseElement)
@@ -653,7 +694,7 @@ module Aws::BillingConductor
653
694
  UpdateCustomLineItemFlatChargeDetails.struct_class = Types::UpdateCustomLineItemFlatChargeDetails
654
695
 
655
696
  UpdateCustomLineItemInput.add_member(:arn, Shapes::ShapeRef.new(shape: CustomLineItemArn, required: true, location_name: "Arn"))
656
- UpdateCustomLineItemInput.add_member(:name, Shapes::ShapeRef.new(shape: BillingGroupName, location_name: "Name"))
697
+ UpdateCustomLineItemInput.add_member(:name, Shapes::ShapeRef.new(shape: CustomLineItemName, location_name: "Name"))
657
698
  UpdateCustomLineItemInput.add_member(:description, Shapes::ShapeRef.new(shape: CustomLineItemDescription, location_name: "Description"))
658
699
  UpdateCustomLineItemInput.add_member(:charge_details, Shapes::ShapeRef.new(shape: UpdateCustomLineItemChargeDetails, location_name: "ChargeDetails"))
659
700
  UpdateCustomLineItemInput.add_member(:billing_period_range, Shapes::ShapeRef.new(shape: CustomLineItemBillingPeriodRange, location_name: "BillingPeriodRange"))
@@ -981,6 +1022,24 @@ module Aws::BillingConductor
981
1022
  )
982
1023
  end)
983
1024
 
1025
+ api.add_operation(:list_custom_line_item_versions, Seahorse::Model::Operation.new.tap do |o|
1026
+ o.name = "ListCustomLineItemVersions"
1027
+ o.http_method = "POST"
1028
+ o.http_request_uri = "/list-custom-line-item-versions"
1029
+ o.input = Shapes::ShapeRef.new(shape: ListCustomLineItemVersionsInput)
1030
+ o.output = Shapes::ShapeRef.new(shape: ListCustomLineItemVersionsOutput)
1031
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1032
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1033
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1034
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1035
+ o[:pager] = Aws::Pager.new(
1036
+ limit_key: "max_results",
1037
+ tokens: {
1038
+ "next_token" => "next_token"
1039
+ }
1040
+ )
1041
+ end)
1042
+
984
1043
  api.add_operation(:list_custom_line_items, Seahorse::Model::Operation.new.tap do |o|
985
1044
  o.name = "ListCustomLineItems"
986
1045
  o.http_method = "POST"
@@ -78,8 +78,8 @@ YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
78
78
  cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
79
79
  dCI6eyJ1cmwiOiJodHRwczovL2JpbGxpbmdjb25kdWN0b3ItZmlwcy57UmVn
80
80
  aW9ufS5hcGkuYXdzIiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3si
81
- bmFtZSI6InNpZ3Y0Iiwic2lnbmluZ05hbWUiOiJiaWxsaW5nY29uZHVjdG9y
82
- Iiwic2lnbmluZ1JlZ2lvbiI6InVzLWVhc3QtMSJ9XX0sImhlYWRlcnMiOnt9
81
+ bmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InVzLWVhc3QtMSIsInNp
82
+ Z25pbmdOYW1lIjoiYmlsbGluZ2NvbmR1Y3RvciJ9XX0sImhlYWRlcnMiOnt9
83
83
  fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
84
84
  ciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMg
85
85
  cGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBl
@@ -91,8 +91,8 @@ W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19
91
91
  XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVu
92
92
  ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYmlsbGluZ2NvbmR1Y3Rvci1maXBz
93
93
  LntSZWdpb259LmFtYXpvbmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7ImF1dGhT
94
- Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6ImJpbGxp
95
- bmdjb25kdWN0b3IiLCJzaWduaW5nUmVnaW9uIjoidXMtZWFzdC0xIn1dfSwi
94
+ Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoidXMt
95
+ ZWFzdC0xIiwic2lnbmluZ05hbWUiOiJiaWxsaW5nY29uZHVjdG9yIn1dfSwi
96
96
  aGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9u
97
97
  cyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRp
98
98
  dGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19
@@ -104,16 +104,16 @@ OiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0s
104
104
  InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRw
105
105
  b2ludCI6eyJ1cmwiOiJodHRwczovL2JpbGxpbmdjb25kdWN0b3Iue1JlZ2lv
106
106
  bn0uYXBpLmF3cyIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5h
107
- bWUiOiJzaWd2NCIsInNpZ25pbmdOYW1lIjoiYmlsbGluZ2NvbmR1Y3RvciIs
108
- InNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0s
107
+ bWUiOiJzaWd2NCIsInNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0LTEiLCJzaWdu
108
+ aW5nTmFtZSI6ImJpbGxpbmdjb25kdWN0b3IifV19LCJoZWFkZXJzIjp7fX0s
109
109
  InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
110
110
  OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
111
111
  cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
112
112
  Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYmls
113
113
  bGluZ2NvbmR1Y3Rvci51cy1lYXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3Bl
114
114
  cnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2NCIsInNpZ25p
115
- bmdOYW1lIjoiYmlsbGluZ2NvbmR1Y3RvciIsInNpZ25pbmdSZWdpb24iOiJ1
116
- cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
115
+ bmdSZWdpb24iOiJ1cy1lYXN0LTEiLCJzaWduaW5nTmFtZSI6ImJpbGxpbmdj
116
+ b25kdWN0b3IifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
117
117
  XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2
118
118
  IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsiZm4iOiJib29sZWFuRXF1
119
119
  YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwi
@@ -158,8 +158,8 @@ aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJS
158
158
  ZWdpb24ifSwiYXdzLWdsb2JhbCJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
159
159
  dHBzOi8vYmlsbGluZ2NvbmR1Y3Rvci51cy1lYXN0LTEuYW1hem9uYXdzLmNv
160
160
  bSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2
161
- NCIsInNpZ25pbmdOYW1lIjoiYmlsbGluZ2NvbmR1Y3RvciIsInNpZ25pbmdS
162
- ZWdpb24iOiJ1cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
161
+ NCIsInNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0LTEiLCJzaWduaW5nTmFtZSI6
162
+ ImJpbGxpbmdjb25kdWN0b3IifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
163
163
  bmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
164
164
  Imh0dHBzOi8vYmlsbGluZ2NvbmR1Y3Rvci57UmVnaW9ufS57UGFydGl0aW9u
165
165
  UmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
@@ -249,6 +249,20 @@ module Aws::BillingConductor
249
249
  end
250
250
  end
251
251
 
252
+ class ListCustomLineItemVersions
253
+ def self.build(context)
254
+ unless context.config.regional_endpoint
255
+ endpoint = context.config.endpoint.to_s
256
+ end
257
+ Aws::BillingConductor::EndpointParameters.new(
258
+ region: context.config.region,
259
+ use_dual_stack: context.config.use_dualstack_endpoint,
260
+ use_fips: context.config.use_fips_endpoint,
261
+ endpoint: endpoint,
262
+ )
263
+ end
264
+ end
265
+
252
266
  class ListCustomLineItems
253
267
  def self.build(context)
254
268
  unless context.config.regional_endpoint