aws-sdk-billingconductor 1.47.0 → 1.48.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44917582493dcb39f844782cfa4956c025560516c6960dbfd7e21dd7e46fc47e
4
- data.tar.gz: 611285ea3fcb2e95880077a5668f9c470723a4d00df7f955f6e5b6d7919f5711
3
+ metadata.gz: 469f1136ccb5cb23b35bb9d07464e05340aff62b3303e67a8d3c072e99146063
4
+ data.tar.gz: 20331173942f92b25c0c4fc547bd3a6298e0b0e800a8d333dcd36193eb750f13
5
5
  SHA512:
6
- metadata.gz: 7b876e65cfed9e02b62b1307f3feb5c0bd0ef7494dd16560900b2600d31759350cbac3d8cfe9afb6d6f75f7d4d757c33397e11a74a5ed26a0f6bd792af584a19
7
- data.tar.gz: 2b64d50eef2fefe8311b360fe9db0e91e833e50258a2c2b6a86bf8d0aa88efb5faf6edc68ce375d669676ecb20accbd4dbd248972b3677b24e33b3b2473f0a2a
6
+ metadata.gz: c858d9461320ec939d2546890525795caac31fe37a0c175e35e341f1360168a204fd26a0afc7efd6eb1538fcb7a21d13386171eeedc6c6b0614ea10d1b290cf6
7
+ data.tar.gz: 413c456870ba0d68c5d198db1960046cd33c7e6f90383cb32fdf93d0489774bdbfc3eb54d4c2e7bf91b9685940a664f27a8b3665c56cf256cf37d841582edff5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2025-11-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor.
8
+
4
9
  1.47.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -689,8 +689,9 @@ module Aws::BillingConductor
689
689
  # client_token: "ClientToken",
690
690
  # name: "BillingGroupName", # required
691
691
  # account_grouping: { # required
692
- # linked_account_ids: ["AccountId"], # required
692
+ # linked_account_ids: ["AccountId"],
693
693
  # auto_associate: false,
694
+ # responsibility_transfer_arn: "ResponsibilityTransferArn",
694
695
  # },
695
696
  # computation_preference: { # required
696
697
  # pricing_plan_arn: "PricingPlanFullArn", # required
@@ -757,10 +758,12 @@ module Aws::BillingConductor
757
758
  # applied to.
758
759
  #
759
760
  # @option params [String] :computation_rule
760
- # The display settings of the custom line item
761
+ # Specifies how the custom line item charges are computed.
761
762
  #
762
763
  # @option params [Types::PresentationObject] :presentation_details
763
- # The presentation configuration of the custom line item
764
+ # Details controlling how the custom line item charges are presented in
765
+ # the bill. Contains specifications for which service the charges will
766
+ # be shown under.
764
767
  #
765
768
  # @return [Types::CreateCustomLineItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
766
769
  #
@@ -1388,8 +1391,17 @@ module Aws::BillingConductor
1388
1391
  # filters: {
1389
1392
  # arns: ["BillingGroupArn"],
1390
1393
  # pricing_plan: "PricingPlanFullArn",
1391
- # statuses: ["ACTIVE"], # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING
1394
+ # statuses: ["ACTIVE"], # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING, PENDING
1392
1395
  # auto_associate: false,
1396
+ # primary_account_ids: ["AccountId"],
1397
+ # billing_group_types: ["STANDARD"], # accepts STANDARD, TRANSFER_BILLING
1398
+ # names: [
1399
+ # {
1400
+ # search_option: "STARTS_WITH", # required, accepts STARTS_WITH
1401
+ # search_value: "SearchValue", # required
1402
+ # },
1403
+ # ],
1404
+ # responsibility_transfer_arns: ["ResponsibilityTransferArn"],
1393
1405
  # },
1394
1406
  # })
1395
1407
  #
@@ -1404,9 +1416,11 @@ module Aws::BillingConductor
1404
1416
  # resp.billing_groups[0].size #=> Integer
1405
1417
  # resp.billing_groups[0].creation_time #=> Integer
1406
1418
  # resp.billing_groups[0].last_modified_time #=> Integer
1407
- # resp.billing_groups[0].status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING"
1419
+ # resp.billing_groups[0].status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING", "PENDING"
1408
1420
  # resp.billing_groups[0].status_reason #=> String
1409
1421
  # resp.billing_groups[0].account_grouping.auto_associate #=> Boolean
1422
+ # resp.billing_groups[0].account_grouping.responsibility_transfer_arn #=> String
1423
+ # resp.billing_groups[0].billing_group_type #=> String, one of "STANDARD", "TRANSFER_BILLING"
1410
1424
  # resp.next_token #=> String
1411
1425
  #
1412
1426
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroups AWS API Documentation
@@ -1978,13 +1992,14 @@ module Aws::BillingConductor
1978
1992
  # resp = client.update_billing_group({
1979
1993
  # arn: "BillingGroupArn", # required
1980
1994
  # name: "BillingGroupName",
1981
- # status: "ACTIVE", # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING
1995
+ # status: "ACTIVE", # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING, PENDING
1982
1996
  # computation_preference: {
1983
1997
  # pricing_plan_arn: "PricingPlanFullArn", # required
1984
1998
  # },
1985
1999
  # description: "BillingGroupDescription",
1986
2000
  # account_grouping: {
1987
2001
  # auto_associate: false,
2002
+ # responsibility_transfer_arn: "ResponsibilityTransferArn",
1988
2003
  # },
1989
2004
  # })
1990
2005
  #
@@ -1997,9 +2012,10 @@ module Aws::BillingConductor
1997
2012
  # resp.pricing_plan_arn #=> String
1998
2013
  # resp.size #=> Integer
1999
2014
  # resp.last_modified_time #=> Integer
2000
- # resp.status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING"
2015
+ # resp.status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING", "PENDING"
2001
2016
  # resp.status_reason #=> String
2002
2017
  # resp.account_grouping.auto_associate #=> Boolean
2018
+ # resp.account_grouping.responsibility_transfer_arn #=> String
2003
2019
  #
2004
2020
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroup AWS API Documentation
2005
2021
  #
@@ -2235,7 +2251,7 @@ module Aws::BillingConductor
2235
2251
  tracer: tracer
2236
2252
  )
2237
2253
  context[:gem_name] = 'aws-sdk-billingconductor'
2238
- context[:gem_version] = '1.47.0'
2254
+ context[:gem_version] = '1.48.0'
2239
2255
  Seahorse::Client::Request.new(handlers, context)
2240
2256
  end
2241
2257
 
@@ -55,6 +55,8 @@ module Aws::BillingConductor
55
55
  BillingGroupStatus = Shapes::StringShape.new(name: 'BillingGroupStatus')
56
56
  BillingGroupStatusList = Shapes::ListShape.new(name: 'BillingGroupStatusList')
57
57
  BillingGroupStatusReason = Shapes::StringShape.new(name: 'BillingGroupStatusReason')
58
+ BillingGroupType = Shapes::StringShape.new(name: 'BillingGroupType')
59
+ BillingGroupTypeList = Shapes::ListShape.new(name: 'BillingGroupTypeList')
58
60
  BillingPeriod = Shapes::StringShape.new(name: 'BillingPeriod')
59
61
  BillingPeriodRange = Shapes::StructureShape.new(name: 'BillingPeriodRange')
60
62
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
@@ -192,12 +194,19 @@ module Aws::BillingConductor
192
194
  PricingRuleName = Shapes::StringShape.new(name: 'PricingRuleName')
193
195
  PricingRuleScope = Shapes::StringShape.new(name: 'PricingRuleScope')
194
196
  PricingRuleType = Shapes::StringShape.new(name: 'PricingRuleType')
197
+ PrimaryAccountIdList = Shapes::ListShape.new(name: 'PrimaryAccountIdList')
195
198
  ProformaCost = Shapes::StringShape.new(name: 'ProformaCost')
196
199
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
200
+ ResponsibilityTransferArn = Shapes::StringShape.new(name: 'ResponsibilityTransferArn')
201
+ ResponsibilityTransferArnsList = Shapes::ListShape.new(name: 'ResponsibilityTransferArnsList')
197
202
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
203
+ SearchOption = Shapes::StringShape.new(name: 'SearchOption')
204
+ SearchValue = Shapes::StringShape.new(name: 'SearchValue')
198
205
  Service = Shapes::StringShape.new(name: 'Service')
199
206
  ServiceLimitExceededException = Shapes::StructureShape.new(name: 'ServiceLimitExceededException')
200
207
  String = Shapes::StringShape.new(name: 'String')
208
+ StringSearch = Shapes::StructureShape.new(name: 'StringSearch')
209
+ StringSearches = Shapes::ListShape.new(name: 'StringSearches')
201
210
  TagKey = Shapes::StringShape.new(name: 'TagKey')
202
211
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
203
212
  TagMap = Shapes::MapShape.new(name: 'TagMap')
@@ -241,8 +250,9 @@ module Aws::BillingConductor
241
250
  AccountAssociationsListElement.add_member(:account_email, Shapes::ShapeRef.new(shape: AccountEmail, location_name: "AccountEmail"))
242
251
  AccountAssociationsListElement.struct_class = Types::AccountAssociationsListElement
243
252
 
244
- AccountGrouping.add_member(:linked_account_ids, Shapes::ShapeRef.new(shape: AccountIdList, required: true, location_name: "LinkedAccountIds"))
253
+ AccountGrouping.add_member(:linked_account_ids, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "LinkedAccountIds"))
245
254
  AccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
255
+ AccountGrouping.add_member(:responsibility_transfer_arn, Shapes::ShapeRef.new(shape: ResponsibilityTransferArn, location_name: "ResponsibilityTransferArn"))
246
256
  AccountGrouping.struct_class = Types::AccountGrouping
247
257
 
248
258
  AccountIdFilterList.member = Shapes::ShapeRef.new(shape: AccountId)
@@ -333,10 +343,13 @@ module Aws::BillingConductor
333
343
  BillingGroupListElement.add_member(:status, Shapes::ShapeRef.new(shape: BillingGroupStatus, location_name: "Status"))
334
344
  BillingGroupListElement.add_member(:status_reason, Shapes::ShapeRef.new(shape: BillingGroupStatusReason, location_name: "StatusReason"))
335
345
  BillingGroupListElement.add_member(:account_grouping, Shapes::ShapeRef.new(shape: ListBillingGroupAccountGrouping, location_name: "AccountGrouping"))
346
+ BillingGroupListElement.add_member(:billing_group_type, Shapes::ShapeRef.new(shape: BillingGroupType, location_name: "BillingGroupType"))
336
347
  BillingGroupListElement.struct_class = Types::BillingGroupListElement
337
348
 
338
349
  BillingGroupStatusList.member = Shapes::ShapeRef.new(shape: BillingGroupStatus)
339
350
 
351
+ BillingGroupTypeList.member = Shapes::ShapeRef.new(shape: BillingGroupType)
352
+
340
353
  BillingPeriodRange.add_member(:inclusive_start_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, required: true, location_name: "InclusiveStartBillingPeriod"))
341
354
  BillingPeriodRange.add_member(:exclusive_end_billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, required: true, location_name: "ExclusiveEndBillingPeriod"))
342
355
  BillingPeriodRange.struct_class = Types::BillingPeriodRange
@@ -563,6 +576,7 @@ module Aws::BillingConductor
563
576
  ListAccountAssociationsOutput.struct_class = Types::ListAccountAssociationsOutput
564
577
 
565
578
  ListBillingGroupAccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
579
+ ListBillingGroupAccountGrouping.add_member(:responsibility_transfer_arn, Shapes::ShapeRef.new(shape: ResponsibilityTransferArn, location_name: "ResponsibilityTransferArn"))
566
580
  ListBillingGroupAccountGrouping.struct_class = Types::ListBillingGroupAccountGrouping
567
581
 
568
582
  ListBillingGroupCostReportsFilter.add_member(:billing_group_arns, Shapes::ShapeRef.new(shape: BillingGroupArnList, location_name: "BillingGroupArns"))
@@ -582,6 +596,10 @@ module Aws::BillingConductor
582
596
  ListBillingGroupsFilter.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlanFullArn, location_name: "PricingPlan"))
583
597
  ListBillingGroupsFilter.add_member(:statuses, Shapes::ShapeRef.new(shape: BillingGroupStatusList, location_name: "Statuses"))
584
598
  ListBillingGroupsFilter.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
599
+ ListBillingGroupsFilter.add_member(:primary_account_ids, Shapes::ShapeRef.new(shape: PrimaryAccountIdList, location_name: "PrimaryAccountIds"))
600
+ ListBillingGroupsFilter.add_member(:billing_group_types, Shapes::ShapeRef.new(shape: BillingGroupTypeList, location_name: "BillingGroupTypes"))
601
+ ListBillingGroupsFilter.add_member(:names, Shapes::ShapeRef.new(shape: StringSearches, location_name: "Names"))
602
+ ListBillingGroupsFilter.add_member(:responsibility_transfer_arns, Shapes::ShapeRef.new(shape: ResponsibilityTransferArnsList, location_name: "ResponsibilityTransferArns"))
585
603
  ListBillingGroupsFilter.struct_class = Types::ListBillingGroupsFilter
586
604
 
587
605
  ListBillingGroupsInput.add_member(:billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "BillingPeriod"))
@@ -758,11 +776,15 @@ module Aws::BillingConductor
758
776
  PricingRuleListElement.add_member(:operation, Shapes::ShapeRef.new(shape: Operation, location_name: "Operation"))
759
777
  PricingRuleListElement.struct_class = Types::PricingRuleListElement
760
778
 
779
+ PrimaryAccountIdList.member = Shapes::ShapeRef.new(shape: AccountId)
780
+
761
781
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
762
782
  ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
763
783
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceType"))
764
784
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
765
785
 
786
+ ResponsibilityTransferArnsList.member = Shapes::ShapeRef.new(shape: ResponsibilityTransferArn)
787
+
766
788
  ServiceLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
767
789
  ServiceLimitExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
768
790
  ServiceLimitExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
@@ -770,6 +792,12 @@ module Aws::BillingConductor
770
792
  ServiceLimitExceededException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
771
793
  ServiceLimitExceededException.struct_class = Types::ServiceLimitExceededException
772
794
 
795
+ StringSearch.add_member(:search_option, Shapes::ShapeRef.new(shape: SearchOption, required: true, location_name: "SearchOption"))
796
+ StringSearch.add_member(:search_value, Shapes::ShapeRef.new(shape: SearchValue, required: true, location_name: "SearchValue"))
797
+ StringSearch.struct_class = Types::StringSearch
798
+
799
+ StringSearches.member = Shapes::ShapeRef.new(shape: StringSearch)
800
+
773
801
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
774
802
 
775
803
  TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
@@ -795,6 +823,7 @@ module Aws::BillingConductor
795
823
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
796
824
 
797
825
  UpdateBillingGroupAccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
826
+ UpdateBillingGroupAccountGrouping.add_member(:responsibility_transfer_arn, Shapes::ShapeRef.new(shape: ResponsibilityTransferArn, location_name: "ResponsibilityTransferArn"))
798
827
  UpdateBillingGroupAccountGrouping.struct_class = Types::UpdateBillingGroupAccountGrouping
799
828
 
800
829
  UpdateBillingGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: BillingGroupArn, required: true, location_name: "Arn"))
@@ -68,11 +68,18 @@ module Aws::BillingConductor
68
68
  # billing family.
69
69
  # @return [Boolean]
70
70
  #
71
+ # @!attribute [rw] responsibility_transfer_arn
72
+ # The Amazon Resource Name (ARN) that identifies the transfer
73
+ # relationship owned by the Bill Transfer account (caller account).
74
+ # When specified, the PrimaryAccountId is no longer required.
75
+ # @return [String]
76
+ #
71
77
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/AccountGrouping AWS API Documentation
72
78
  #
73
79
  class AccountGrouping < Struct.new(
74
80
  :linked_account_ids,
75
- :auto_associate)
81
+ :auto_associate,
82
+ :responsibility_transfer_arn)
76
83
  SENSITIVE = []
77
84
  include Aws::Structure
78
85
  end
@@ -430,6 +437,10 @@ module Aws::BillingConductor
430
437
  # (`AutoAssociate`) enabled.
431
438
  # @return [Types::ListBillingGroupAccountGrouping]
432
439
  #
440
+ # @!attribute [rw] billing_group_type
441
+ # The type of billing group.
442
+ # @return [String]
443
+ #
433
444
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/BillingGroupListElement AWS API Documentation
434
445
  #
435
446
  class BillingGroupListElement < Struct.new(
@@ -443,7 +454,8 @@ module Aws::BillingConductor
443
454
  :last_modified_time,
444
455
  :status,
445
456
  :status_reason,
446
- :account_grouping)
457
+ :account_grouping,
458
+ :billing_group_type)
447
459
  SENSITIVE = [:name, :description]
448
460
  include Aws::Structure
449
461
  end
@@ -627,11 +639,13 @@ module Aws::BillingConductor
627
639
  # @return [String]
628
640
  #
629
641
  # @!attribute [rw] computation_rule
630
- # The display settings of the custom line item
642
+ # Specifies how the custom line item charges are computed.
631
643
  # @return [String]
632
644
  #
633
645
  # @!attribute [rw] presentation_details
634
- # The presentation configuration of the custom line item
646
+ # Details controlling how the custom line item charges are presented
647
+ # in the bill. Contains specifications for which service the charges
648
+ # will be shown under.
635
649
  # @return [Types::PresentationObject]
636
650
  #
637
651
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreateCustomLineItemInput AWS API Documentation
@@ -972,11 +986,13 @@ module Aws::BillingConductor
972
986
  # @return [String]
973
987
  #
974
988
  # @!attribute [rw] computation_rule
975
- # The display settings of the custom line item
989
+ # The computation rule that determines how the custom line item
990
+ # charges are computed and reflected in the bill.
976
991
  # @return [String]
977
992
  #
978
993
  # @!attribute [rw] presentation_details
979
- # The presentation configuration of the custom line item
994
+ # Configuration details specifying how the custom line item charges
995
+ # are presented, including which service the charges are shown under.
980
996
  # @return [Types::PresentationObject]
981
997
  #
982
998
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CustomLineItemListElement AWS API Documentation
@@ -1085,11 +1101,13 @@ module Aws::BillingConductor
1085
1101
  # @return [String]
1086
1102
  #
1087
1103
  # @!attribute [rw] computation_rule
1088
- # The display settings of the custom line item
1104
+ # The computation rule for a specific version of a custom line item,
1105
+ # determining how charges are computed and reflected in the bill.
1089
1106
  # @return [String]
1090
1107
  #
1091
1108
  # @!attribute [rw] presentation_details
1092
- # The presentation configuration of the custom line item
1109
+ # Presentation configuration for a specific version of a custom line
1110
+ # item, specifying how charges are displayed in the bill.
1093
1111
  # @return [Types::PresentationObject]
1094
1112
  #
1095
1113
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CustomLineItemVersionListElement AWS API Documentation
@@ -1393,7 +1411,8 @@ module Aws::BillingConductor
1393
1411
  # You can use line item filters to include or exclude specific resource
1394
1412
  # values from the billing group's total cost. For example, if you
1395
1413
  # create a custom line item and you want to filter out a value, such as
1396
- # Savings Plan discounts, you can update `LineItemFilter` to exclude it.
1414
+ # Savings Plans discounts, you can update `LineItemFilter` to exclude
1415
+ # it.
1397
1416
  #
1398
1417
  # @!attribute [rw] attribute
1399
1418
  # The attribute of the line item filter. This specifies what attribute
@@ -1408,7 +1427,7 @@ module Aws::BillingConductor
1408
1427
  #
1409
1428
  # @!attribute [rw] values
1410
1429
  # The values of the line item filter. This specifies the values to
1411
- # filter on. Currently, you can only exclude Savings Plan discounts.
1430
+ # filter on. Currently, you can only exclude Savings Plans discounts.
1412
1431
  # @return [Array<String>]
1413
1432
  #
1414
1433
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/LineItemFilter AWS API Documentation
@@ -1519,10 +1538,16 @@ module Aws::BillingConductor
1519
1538
  # billing family.
1520
1539
  # @return [Boolean]
1521
1540
  #
1541
+ # @!attribute [rw] responsibility_transfer_arn
1542
+ # The Amazon Resource Name (ARN) that identifies the transfer
1543
+ # relationship for the billing group.
1544
+ # @return [String]
1545
+ #
1522
1546
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroupAccountGrouping AWS API Documentation
1523
1547
  #
1524
1548
  class ListBillingGroupAccountGrouping < Struct.new(
1525
- :auto_associate)
1549
+ :auto_associate,
1550
+ :responsibility_transfer_arn)
1526
1551
  SENSITIVE = []
1527
1552
  include Aws::Structure
1528
1553
  end
@@ -1613,13 +1638,33 @@ module Aws::BillingConductor
1613
1638
  # billing family.
1614
1639
  # @return [Boolean]
1615
1640
  #
1641
+ # @!attribute [rw] primary_account_ids
1642
+ # A list of primary account IDs to filter the billing groups.
1643
+ # @return [Array<String>]
1644
+ #
1645
+ # @!attribute [rw] billing_group_types
1646
+ # Filter billing groups by their type.
1647
+ # @return [Array<String>]
1648
+ #
1649
+ # @!attribute [rw] names
1650
+ # Filter billing groups by their names.
1651
+ # @return [Array<Types::StringSearch>]
1652
+ #
1653
+ # @!attribute [rw] responsibility_transfer_arns
1654
+ # Filter billing groups by their responsibility transfer ARNs.
1655
+ # @return [Array<String>]
1656
+ #
1616
1657
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroupsFilter AWS API Documentation
1617
1658
  #
1618
1659
  class ListBillingGroupsFilter < Struct.new(
1619
1660
  :arns,
1620
1661
  :pricing_plan,
1621
1662
  :statuses,
1622
- :auto_associate)
1663
+ :auto_associate,
1664
+ :primary_account_ids,
1665
+ :billing_group_types,
1666
+ :names,
1667
+ :responsibility_transfer_arns)
1623
1668
  SENSITIVE = []
1624
1669
  include Aws::Structure
1625
1670
  end
@@ -2286,10 +2331,13 @@ module Aws::BillingConductor
2286
2331
  include Aws::Structure
2287
2332
  end
2288
2333
 
2289
- # The presentation configuration of the custom line item
2334
+ # An object that defines how custom line item charges are presented in
2335
+ # the bill, containing specifications for service presentation.
2290
2336
  #
2291
2337
  # @!attribute [rw] service
2292
- # This defines the service of where the custom line item is presented
2338
+ # The service under which the custom line item charges will be
2339
+ # presented. Must be a string between 1 and 128 characters matching
2340
+ # the pattern "`^[a-zA-Z0-9]+$`".
2293
2341
  # @return [String]
2294
2342
  #
2295
2343
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/PresentationObject AWS API Documentation
@@ -2494,6 +2542,25 @@ module Aws::BillingConductor
2494
2542
  include Aws::Structure
2495
2543
  end
2496
2544
 
2545
+ # A structure that defines string search parameters.
2546
+ #
2547
+ # @!attribute [rw] search_option
2548
+ # The search option to be applied when performing the string search.
2549
+ # @return [String]
2550
+ #
2551
+ # @!attribute [rw] search_value
2552
+ # The value to search for within the specified string field.
2553
+ # @return [String]
2554
+ #
2555
+ # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/StringSearch AWS API Documentation
2556
+ #
2557
+ class StringSearch < Struct.new(
2558
+ :search_option,
2559
+ :search_value)
2560
+ SENSITIVE = []
2561
+ include Aws::Structure
2562
+ end
2563
+
2497
2564
  # @!attribute [rw] resource_arn
2498
2565
  # The Amazon Resource Name (ARN) of the resource to which to add tags.
2499
2566
  # @return [String]
@@ -2577,10 +2644,17 @@ module Aws::BillingConductor
2577
2644
  # billing family.
2578
2645
  # @return [Boolean]
2579
2646
  #
2647
+ # @!attribute [rw] responsibility_transfer_arn
2648
+ # The Amazon Resource Name (ARN) that identifies the transfer
2649
+ # relationship. Note: Modifications to the ResponsibilityTransferArn
2650
+ # are not permitted for existing billing groups.
2651
+ # @return [String]
2652
+ #
2580
2653
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroupAccountGrouping AWS API Documentation
2581
2654
  #
2582
2655
  class UpdateBillingGroupAccountGrouping < Struct.new(
2583
- :auto_associate)
2656
+ :auto_associate,
2657
+ :responsibility_transfer_arn)
2584
2658
  SENSITIVE = []
2585
2659
  include Aws::Structure
2586
2660
  end
@@ -55,7 +55,7 @@ module Aws::BillingConductor
55
55
  autoload :EndpointProvider, 'aws-sdk-billingconductor/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-billingconductor/endpoints'
57
57
 
58
- GEM_VERSION = '1.47.0'
58
+ GEM_VERSION = '1.48.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -141,8 +141,9 @@ module Aws
141
141
  ?client_token: ::String,
142
142
  name: ::String,
143
143
  account_grouping: {
144
- linked_account_ids: Array[::String],
145
- auto_associate: bool?
144
+ linked_account_ids: Array[::String]?,
145
+ auto_associate: bool?,
146
+ responsibility_transfer_arn: ::String?
146
147
  },
147
148
  computation_preference: {
148
149
  pricing_plan_arn: ::String
@@ -362,8 +363,17 @@ module Aws
362
363
  ?filters: {
363
364
  arns: Array[::String]?,
364
365
  pricing_plan: ::String?,
365
- statuses: Array[("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")]?,
366
- auto_associate: bool?
366
+ statuses: Array[("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")]?,
367
+ auto_associate: bool?,
368
+ primary_account_ids: Array[::String]?,
369
+ billing_group_types: Array[("STANDARD" | "TRANSFER_BILLING")]?,
370
+ names: Array[
371
+ {
372
+ search_option: ("STARTS_WITH"),
373
+ search_value: ::String
374
+ },
375
+ ]?,
376
+ responsibility_transfer_arns: Array[::String]?
367
377
  }
368
378
  ) -> _ListBillingGroupsResponseSuccess
369
379
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBillingGroupsResponseSuccess
@@ -529,7 +539,7 @@ module Aws
529
539
  def pricing_plan_arn: () -> ::String
530
540
  def size: () -> ::Integer
531
541
  def last_modified_time: () -> ::Integer
532
- def status: () -> ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")
542
+ def status: () -> ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")
533
543
  def status_reason: () -> ::String
534
544
  def account_grouping: () -> Types::UpdateBillingGroupAccountGrouping
535
545
  end
@@ -537,13 +547,14 @@ module Aws
537
547
  def update_billing_group: (
538
548
  arn: ::String,
539
549
  ?name: ::String,
540
- ?status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING"),
550
+ ?status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING"),
541
551
  ?computation_preference: {
542
552
  pricing_plan_arn: ::String
543
553
  },
544
554
  ?description: ::String,
545
555
  ?account_grouping: {
546
- auto_associate: bool?
556
+ auto_associate: bool?,
557
+ responsibility_transfer_arn: ::String?
547
558
  }
548
559
  ) -> _UpdateBillingGroupResponseSuccess
549
560
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBillingGroupResponseSuccess
data/sig/types.rbs CHANGED
@@ -24,6 +24,7 @@ module Aws::BillingConductor
24
24
  class AccountGrouping
25
25
  attr_accessor linked_account_ids: ::Array[::String]
26
26
  attr_accessor auto_associate: bool
27
+ attr_accessor responsibility_transfer_arn: ::String
27
28
  SENSITIVE: []
28
29
  end
29
30
 
@@ -123,9 +124,10 @@ module Aws::BillingConductor
123
124
  attr_accessor size: ::Integer
124
125
  attr_accessor creation_time: ::Integer
125
126
  attr_accessor last_modified_time: ::Integer
126
- attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")
127
+ attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")
127
128
  attr_accessor status_reason: ::String
128
129
  attr_accessor account_grouping: Types::ListBillingGroupAccountGrouping
130
+ attr_accessor billing_group_type: ("STANDARD" | "TRANSFER_BILLING")
129
131
  SENSITIVE: [:name, :description]
130
132
  end
131
133
 
@@ -414,6 +416,7 @@ module Aws::BillingConductor
414
416
 
415
417
  class ListBillingGroupAccountGrouping
416
418
  attr_accessor auto_associate: bool
419
+ attr_accessor responsibility_transfer_arn: ::String
417
420
  SENSITIVE: []
418
421
  end
419
422
 
@@ -439,8 +442,12 @@ module Aws::BillingConductor
439
442
  class ListBillingGroupsFilter
440
443
  attr_accessor arns: ::Array[::String]
441
444
  attr_accessor pricing_plan: ::String
442
- attr_accessor statuses: ::Array[("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")]
445
+ attr_accessor statuses: ::Array[("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")]
443
446
  attr_accessor auto_associate: bool
447
+ attr_accessor primary_account_ids: ::Array[::String]
448
+ attr_accessor billing_group_types: ::Array[("STANDARD" | "TRANSFER_BILLING")]
449
+ attr_accessor names: ::Array[Types::StringSearch]
450
+ attr_accessor responsibility_transfer_arns: ::Array[::String]
444
451
  SENSITIVE: []
445
452
  end
446
453
 
@@ -682,6 +689,12 @@ module Aws::BillingConductor
682
689
  SENSITIVE: []
683
690
  end
684
691
 
692
+ class StringSearch
693
+ attr_accessor search_option: ("STARTS_WITH")
694
+ attr_accessor search_value: ::String
695
+ SENSITIVE: []
696
+ end
697
+
685
698
  class TagResourceRequest
686
699
  attr_accessor resource_arn: ::String
687
700
  attr_accessor tags: ::Hash[::String, ::String]
@@ -713,13 +726,14 @@ module Aws::BillingConductor
713
726
 
714
727
  class UpdateBillingGroupAccountGrouping
715
728
  attr_accessor auto_associate: bool
729
+ attr_accessor responsibility_transfer_arn: ::String
716
730
  SENSITIVE: []
717
731
  end
718
732
 
719
733
  class UpdateBillingGroupInput
720
734
  attr_accessor arn: ::String
721
735
  attr_accessor name: ::String
722
- attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")
736
+ attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")
723
737
  attr_accessor computation_preference: Types::ComputationPreference
724
738
  attr_accessor description: ::String
725
739
  attr_accessor account_grouping: Types::UpdateBillingGroupAccountGrouping
@@ -734,7 +748,7 @@ module Aws::BillingConductor
734
748
  attr_accessor pricing_plan_arn: ::String
735
749
  attr_accessor size: ::Integer
736
750
  attr_accessor last_modified_time: ::Integer
737
- attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING")
751
+ attr_accessor status: ("ACTIVE" | "PRIMARY_ACCOUNT_MISSING" | "PENDING")
738
752
  attr_accessor status_reason: ::String
739
753
  attr_accessor account_grouping: Types::UpdateBillingGroupAccountGrouping
740
754
  SENSITIVE: [:name, :description]
@@ -832,7 +846,7 @@ module Aws::BillingConductor
832
846
 
833
847
  class ValidationException
834
848
  attr_accessor message: ::String
835
- attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER" | "PRIMARY_NOT_ASSOCIATED" | "PRIMARY_CANNOT_DISASSOCIATE" | "ACCOUNTS_NOT_ASSOCIATED" | "ACCOUNTS_ALREADY_ASSOCIATED" | "ILLEGAL_PRIMARY_ACCOUNT" | "ILLEGAL_ACCOUNTS" | "MISMATCHED_BILLINGGROUP_ARN" | "MISSING_BILLINGGROUP" | "MISMATCHED_CUSTOMLINEITEM_ARN" | "ILLEGAL_BILLING_PERIOD" | "ILLEGAL_BILLING_PERIOD_RANGE" | "TOO_MANY_ACCOUNTS_IN_REQUEST" | "DUPLICATE_ACCOUNT" | "INVALID_BILLING_GROUP_STATUS" | "MISMATCHED_PRICINGPLAN_ARN" | "MISSING_PRICINGPLAN" | "MISMATCHED_PRICINGRULE_ARN" | "DUPLICATE_PRICINGRULE_ARNS" | "MISSING_COSTCATEGORY" | "ILLEGAL_EXPRESSION" | "ILLEGAL_SCOPE" | "ILLEGAL_SERVICE" | "PRICINGRULES_NOT_EXIST" | "PRICINGRULES_ALREADY_ASSOCIATED" | "PRICINGRULES_NOT_ASSOCIATED" | "INVALID_TIME_RANGE" | "INVALID_BILLINGVIEW_ARN" | "MISMATCHED_BILLINGVIEW_ARN" | "ILLEGAL_CUSTOMLINEITEM" | "MISSING_CUSTOMLINEITEM" | "ILLEGAL_CUSTOMLINEITEM_UPDATE" | "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST" | "ILLEGAL_CHARGE_DETAILS" | "ILLEGAL_UPDATE_CHARGE_DETAILS" | "INVALID_ARN" | "ILLEGAL_RESOURCE_ARNS" | "ILLEGAL_CUSTOMLINEITEM_MODIFICATION" | "MISSING_LINKED_ACCOUNT_IDS" | "MULTIPLE_LINKED_ACCOUNT_IDS" | "MISSING_PRICING_PLAN_ARN" | "MULTIPLE_PRICING_PLAN_ARN" | "ILLEGAL_CHILD_ASSOCIATE_RESOURCE" | "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS" | "INVALID_BILLING_GROUP" | "INVALID_BILLING_PERIOD_FOR_OPERATION" | "ILLEGAL_BILLING_ENTITY" | "ILLEGAL_MODIFIER_PERCENTAGE" | "ILLEGAL_TYPE" | "ILLEGAL_ENDED_BILLINGGROUP" | "ILLEGAL_TIERING_INPUT" | "ILLEGAL_OPERATION" | "ILLEGAL_USAGE_TYPE" | "INVALID_SKU_COMBO" | "INVALID_FILTER" | "TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS" | "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP" | "ILLEGAL_ACCOUNT_ID" | "BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD" | "ILLEGAL_COMPUTATION_RULE" | "ILLEGAL_LINE_ITEM_FILTER")
849
+ attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER" | "PRIMARY_NOT_ASSOCIATED" | "PRIMARY_CANNOT_DISASSOCIATE" | "ACCOUNTS_NOT_ASSOCIATED" | "ACCOUNTS_ALREADY_ASSOCIATED" | "ILLEGAL_PRIMARY_ACCOUNT" | "ILLEGAL_ACCOUNTS" | "MISMATCHED_BILLINGGROUP_ARN" | "MISSING_BILLINGGROUP" | "MISMATCHED_CUSTOMLINEITEM_ARN" | "ILLEGAL_BILLING_PERIOD" | "ILLEGAL_BILLING_PERIOD_RANGE" | "TOO_MANY_ACCOUNTS_IN_REQUEST" | "DUPLICATE_ACCOUNT" | "INVALID_BILLING_GROUP_STATUS" | "MISMATCHED_PRICINGPLAN_ARN" | "MISSING_PRICINGPLAN" | "MISMATCHED_PRICINGRULE_ARN" | "DUPLICATE_PRICINGRULE_ARNS" | "MISSING_COSTCATEGORY" | "ILLEGAL_EXPRESSION" | "ILLEGAL_SCOPE" | "ILLEGAL_SERVICE" | "PRICINGRULES_NOT_EXIST" | "PRICINGRULES_ALREADY_ASSOCIATED" | "PRICINGRULES_NOT_ASSOCIATED" | "INVALID_TIME_RANGE" | "INVALID_BILLINGVIEW_ARN" | "MISMATCHED_BILLINGVIEW_ARN" | "ILLEGAL_CUSTOMLINEITEM" | "MISSING_CUSTOMLINEITEM" | "ILLEGAL_CUSTOMLINEITEM_UPDATE" | "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST" | "ILLEGAL_CHARGE_DETAILS" | "ILLEGAL_UPDATE_CHARGE_DETAILS" | "INVALID_ARN" | "ILLEGAL_RESOURCE_ARNS" | "ILLEGAL_CUSTOMLINEITEM_MODIFICATION" | "MISSING_LINKED_ACCOUNT_IDS" | "MULTIPLE_LINKED_ACCOUNT_IDS" | "MISSING_PRICING_PLAN_ARN" | "MULTIPLE_PRICING_PLAN_ARN" | "ILLEGAL_CHILD_ASSOCIATE_RESOURCE" | "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS" | "INVALID_BILLING_GROUP" | "INVALID_BILLING_PERIOD_FOR_OPERATION" | "ILLEGAL_BILLING_ENTITY" | "ILLEGAL_MODIFIER_PERCENTAGE" | "ILLEGAL_TYPE" | "ILLEGAL_BILLING_GROUP_TYPE" | "ILLEGAL_ENDED_BILLINGGROUP" | "ILLEGAL_TIERING_INPUT" | "ILLEGAL_OPERATION" | "ILLEGAL_USAGE_TYPE" | "INVALID_SKU_COMBO" | "INVALID_FILTER" | "TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS" | "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP" | "ILLEGAL_ACCOUNT_ID" | "BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD" | "ILLEGAL_COMPUTATION_RULE" | "ILLEGAL_LINE_ITEM_FILTER")
836
850
  attr_accessor fields: ::Array[Types::ValidationExceptionField]
837
851
  SENSITIVE: []
838
852
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-billingconductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services