aws-sdk-billingconductor 1.12.0 → 1.13.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: 3b66c83b05cda190f01d4bcf9813906051d31884fc46cc1a65fc0adb4eb43ac1
4
- data.tar.gz: b8c3b33abd8e5d139fb004d339a8398b5e9f28a3f46cd2470aee0261122a9199
3
+ metadata.gz: 93bf9edb287a63b05b54b389ab67a02af89a110d0be4b83e7d961719b0fa1de5
4
+ data.tar.gz: b4cc215e35bbadaa96431c4a0073e6dca1a10089ed871750edda1cd77a680cc6
5
5
  SHA512:
6
- metadata.gz: 19236b8964a863f5e2a1ee740454e10a8918b9530a2306c7b5de013b9e9ffb079737f0051d6bc599bb59e216ab541c0cadbcd0b40c0808839a9d01fbf3b5a3ef
7
- data.tar.gz: cfa1c814fd01b3c0d34768a5ad637a52491979ae93bfec160be6a7caad343b8f39634d058ab0932d2c65ddab3c6979f339904875cc5102c6f03372d2bf474d2d
6
+ metadata.gz: df8fee38f6d4b20182a0a653ce2a9bd0bd75a3506e144999c6cef4a20a1ad913aab91592604d61a5be06f0555aeaa262d814457637a8caf8da8b47c39c715859
7
+ data.tar.gz: 970e303bc5ab4fc2191523e02802cbc79456e8015d6be1347f6fde7f6631e668661dda5309cecb902b953fc87cb56ea2aba737fdf91c8504415e05014bce733d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2023-07-25)
5
+ ------------------
6
+
7
+ * Feature - Added support for Auto-Assocate Billing Groups for CreateBillingGroup, UpdateBillingGroup, and ListBillingGroups.
8
+
4
9
  1.12.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -571,7 +571,8 @@ module Aws::BillingConductor
571
571
  #
572
572
  # @option params [required, Types::AccountGrouping] :account_grouping
573
573
  # The set of accounts that will be under the billing group. The set of
574
- # accounts resemble the linked accounts in a consolidated family.
574
+ # accounts resemble the linked accounts in a consolidated billing
575
+ # family.
575
576
  #
576
577
  # @option params [required, Types::ComputationPreference] :computation_preference
577
578
  # The preferences and settings that will be used to compute the Amazon
@@ -598,6 +599,7 @@ module Aws::BillingConductor
598
599
  # name: "BillingGroupName", # required
599
600
  # account_grouping: { # required
600
601
  # linked_account_ids: ["AccountId"], # required
602
+ # auto_associate: false,
601
603
  # },
602
604
  # computation_preference: { # required
603
605
  # pricing_plan_arn: "PricingPlanFullArn", # required
@@ -1199,6 +1201,7 @@ module Aws::BillingConductor
1199
1201
  # arns: ["BillingGroupArn"],
1200
1202
  # pricing_plan: "PricingPlanFullArn",
1201
1203
  # statuses: ["ACTIVE"], # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING
1204
+ # auto_associate: false,
1202
1205
  # },
1203
1206
  # })
1204
1207
  #
@@ -1215,6 +1218,7 @@ module Aws::BillingConductor
1215
1218
  # resp.billing_groups[0].last_modified_time #=> Integer
1216
1219
  # resp.billing_groups[0].status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING"
1217
1220
  # resp.billing_groups[0].status_reason #=> String
1221
+ # resp.billing_groups[0].account_grouping.auto_associate #=> Boolean
1218
1222
  # resp.next_token #=> String
1219
1223
  #
1220
1224
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroups AWS API Documentation
@@ -1747,6 +1751,10 @@ module Aws::BillingConductor
1747
1751
  # @option params [String] :description
1748
1752
  # A description of the billing group.
1749
1753
  #
1754
+ # @option params [Types::UpdateBillingGroupAccountGrouping] :account_grouping
1755
+ # Specifies if the billing group has automatic account association
1756
+ # (`AutoAssociate`) enabled.
1757
+ #
1750
1758
  # @return [Types::UpdateBillingGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1751
1759
  #
1752
1760
  # * {Types::UpdateBillingGroupOutput#arn #arn} => String
@@ -1758,6 +1766,7 @@ module Aws::BillingConductor
1758
1766
  # * {Types::UpdateBillingGroupOutput#last_modified_time #last_modified_time} => Integer
1759
1767
  # * {Types::UpdateBillingGroupOutput#status #status} => String
1760
1768
  # * {Types::UpdateBillingGroupOutput#status_reason #status_reason} => String
1769
+ # * {Types::UpdateBillingGroupOutput#account_grouping #account_grouping} => Types::UpdateBillingGroupAccountGrouping
1761
1770
  #
1762
1771
  # @example Request syntax with placeholder values
1763
1772
  #
@@ -1769,6 +1778,9 @@ module Aws::BillingConductor
1769
1778
  # pricing_plan_arn: "PricingPlanFullArn", # required
1770
1779
  # },
1771
1780
  # description: "BillingGroupDescription",
1781
+ # account_grouping: {
1782
+ # auto_associate: false,
1783
+ # },
1772
1784
  # })
1773
1785
  #
1774
1786
  # @example Response structure
@@ -1782,6 +1794,7 @@ module Aws::BillingConductor
1782
1794
  # resp.last_modified_time #=> Integer
1783
1795
  # resp.status #=> String, one of "ACTIVE", "PRIMARY_ACCOUNT_MISSING"
1784
1796
  # resp.status_reason #=> String
1797
+ # resp.account_grouping.auto_associate #=> Boolean
1785
1798
  #
1786
1799
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroup AWS API Documentation
1787
1800
  #
@@ -1999,7 +2012,7 @@ module Aws::BillingConductor
1999
2012
  params: params,
2000
2013
  config: config)
2001
2014
  context[:gem_name] = 'aws-sdk-billingconductor'
2002
- context[:gem_version] = '1.12.0'
2015
+ context[:gem_version] = '1.13.0'
2003
2016
  Seahorse::Client::Request.new(handlers, context)
2004
2017
  end
2005
2018
 
@@ -51,6 +51,7 @@ module Aws::BillingConductor
51
51
  BillingGroupStatusList = Shapes::ListShape.new(name: 'BillingGroupStatusList')
52
52
  BillingGroupStatusReason = Shapes::StringShape.new(name: 'BillingGroupStatusReason')
53
53
  BillingPeriod = Shapes::StringShape.new(name: 'BillingPeriod')
54
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
54
55
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
55
56
  ComputationPreference = Shapes::StructureShape.new(name: 'ComputationPreference')
56
57
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
@@ -109,6 +110,7 @@ module Aws::BillingConductor
109
110
  ListAccountAssociationsFilter = Shapes::StructureShape.new(name: 'ListAccountAssociationsFilter')
110
111
  ListAccountAssociationsInput = Shapes::StructureShape.new(name: 'ListAccountAssociationsInput')
111
112
  ListAccountAssociationsOutput = Shapes::StructureShape.new(name: 'ListAccountAssociationsOutput')
113
+ ListBillingGroupAccountGrouping = Shapes::StructureShape.new(name: 'ListBillingGroupAccountGrouping')
112
114
  ListBillingGroupCostReportsFilter = Shapes::StructureShape.new(name: 'ListBillingGroupCostReportsFilter')
113
115
  ListBillingGroupCostReportsInput = Shapes::StructureShape.new(name: 'ListBillingGroupCostReportsInput')
114
116
  ListBillingGroupCostReportsOutput = Shapes::StructureShape.new(name: 'ListBillingGroupCostReportsOutput')
@@ -189,6 +191,7 @@ module Aws::BillingConductor
189
191
  Token = Shapes::StringShape.new(name: 'Token')
190
192
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
191
193
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
194
+ UpdateBillingGroupAccountGrouping = Shapes::StructureShape.new(name: 'UpdateBillingGroupAccountGrouping')
192
195
  UpdateBillingGroupInput = Shapes::StructureShape.new(name: 'UpdateBillingGroupInput')
193
196
  UpdateBillingGroupOutput = Shapes::StructureShape.new(name: 'UpdateBillingGroupOutput')
194
197
  UpdateCustomLineItemChargeDetails = Shapes::StructureShape.new(name: 'UpdateCustomLineItemChargeDetails')
@@ -220,6 +223,7 @@ module Aws::BillingConductor
220
223
  AccountAssociationsListElement.struct_class = Types::AccountAssociationsListElement
221
224
 
222
225
  AccountGrouping.add_member(:linked_account_ids, Shapes::ShapeRef.new(shape: AccountIdList, required: true, location_name: "LinkedAccountIds"))
226
+ AccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
223
227
  AccountGrouping.struct_class = Types::AccountGrouping
224
228
 
225
229
  AccountIdFilterList.member = Shapes::ShapeRef.new(shape: AccountId)
@@ -292,6 +296,7 @@ module Aws::BillingConductor
292
296
  BillingGroupListElement.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Instant, location_name: "LastModifiedTime"))
293
297
  BillingGroupListElement.add_member(:status, Shapes::ShapeRef.new(shape: BillingGroupStatus, location_name: "Status"))
294
298
  BillingGroupListElement.add_member(:status_reason, Shapes::ShapeRef.new(shape: BillingGroupStatusReason, location_name: "StatusReason"))
299
+ BillingGroupListElement.add_member(:account_grouping, Shapes::ShapeRef.new(shape: ListBillingGroupAccountGrouping, location_name: "AccountGrouping"))
295
300
  BillingGroupListElement.struct_class = Types::BillingGroupListElement
296
301
 
297
302
  BillingGroupStatusList.member = Shapes::ShapeRef.new(shape: BillingGroupStatus)
@@ -485,6 +490,9 @@ module Aws::BillingConductor
485
490
  ListAccountAssociationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
486
491
  ListAccountAssociationsOutput.struct_class = Types::ListAccountAssociationsOutput
487
492
 
493
+ ListBillingGroupAccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
494
+ ListBillingGroupAccountGrouping.struct_class = Types::ListBillingGroupAccountGrouping
495
+
488
496
  ListBillingGroupCostReportsFilter.add_member(:billing_group_arns, Shapes::ShapeRef.new(shape: BillingGroupArnList, location_name: "BillingGroupArns"))
489
497
  ListBillingGroupCostReportsFilter.struct_class = Types::ListBillingGroupCostReportsFilter
490
498
 
@@ -501,6 +509,7 @@ module Aws::BillingConductor
501
509
  ListBillingGroupsFilter.add_member(:arns, Shapes::ShapeRef.new(shape: BillingGroupArnList, location_name: "Arns"))
502
510
  ListBillingGroupsFilter.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlanFullArn, location_name: "PricingPlan"))
503
511
  ListBillingGroupsFilter.add_member(:statuses, Shapes::ShapeRef.new(shape: BillingGroupStatusList, location_name: "Statuses"))
512
+ ListBillingGroupsFilter.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
504
513
  ListBillingGroupsFilter.struct_class = Types::ListBillingGroupsFilter
505
514
 
506
515
  ListBillingGroupsInput.add_member(:billing_period, Shapes::ShapeRef.new(shape: BillingPeriod, location_name: "BillingPeriod"))
@@ -708,11 +717,15 @@ module Aws::BillingConductor
708
717
 
709
718
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
710
719
 
720
+ UpdateBillingGroupAccountGrouping.add_member(:auto_associate, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoAssociate"))
721
+ UpdateBillingGroupAccountGrouping.struct_class = Types::UpdateBillingGroupAccountGrouping
722
+
711
723
  UpdateBillingGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: BillingGroupArn, required: true, location_name: "Arn"))
712
724
  UpdateBillingGroupInput.add_member(:name, Shapes::ShapeRef.new(shape: BillingGroupName, location_name: "Name"))
713
725
  UpdateBillingGroupInput.add_member(:status, Shapes::ShapeRef.new(shape: BillingGroupStatus, location_name: "Status"))
714
726
  UpdateBillingGroupInput.add_member(:computation_preference, Shapes::ShapeRef.new(shape: ComputationPreference, location_name: "ComputationPreference"))
715
727
  UpdateBillingGroupInput.add_member(:description, Shapes::ShapeRef.new(shape: BillingGroupDescription, location_name: "Description"))
728
+ UpdateBillingGroupInput.add_member(:account_grouping, Shapes::ShapeRef.new(shape: UpdateBillingGroupAccountGrouping, location_name: "AccountGrouping"))
716
729
  UpdateBillingGroupInput.struct_class = Types::UpdateBillingGroupInput
717
730
 
718
731
  UpdateBillingGroupOutput.add_member(:arn, Shapes::ShapeRef.new(shape: BillingGroupArn, location_name: "Arn"))
@@ -724,6 +737,7 @@ module Aws::BillingConductor
724
737
  UpdateBillingGroupOutput.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Instant, location_name: "LastModifiedTime"))
725
738
  UpdateBillingGroupOutput.add_member(:status, Shapes::ShapeRef.new(shape: BillingGroupStatus, location_name: "Status"))
726
739
  UpdateBillingGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: BillingGroupStatusReason, location_name: "StatusReason"))
740
+ UpdateBillingGroupOutput.add_member(:account_grouping, Shapes::ShapeRef.new(shape: UpdateBillingGroupAccountGrouping, location_name: "AccountGrouping"))
727
741
  UpdateBillingGroupOutput.struct_class = Types::UpdateBillingGroupOutput
728
742
 
729
743
  UpdateCustomLineItemChargeDetails.add_member(:flat, Shapes::ShapeRef.new(shape: UpdateCustomLineItemFlatChargeDetails, location_name: "Flat"))
@@ -25,25 +25,7 @@ module Aws::BillingConductor
25
25
  end
26
26
  if Aws::Endpoints::Matchers.set?(region)
27
27
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
29
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
30
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
31
- return Aws::Endpoints::Endpoint.new(url: "https://billingconductor-fips.#{region}.api.aws", headers: {}, properties: {})
32
- end
33
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
34
- end
35
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
36
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
37
- return Aws::Endpoints::Endpoint.new(url: "https://billingconductor-fips.#{region}.amazonaws.com", headers: {}, properties: {})
38
- end
39
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
40
- end
41
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
42
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
43
- return Aws::Endpoints::Endpoint.new(url: "https://billingconductor.#{region}.api.aws", headers: {}, properties: {})
44
- end
45
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
- end
28
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
47
29
  return Aws::Endpoints::Endpoint.new(url: "https://billingconductor.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"billingconductor", "signingRegion"=>"us-east-1"}]})
48
30
  end
49
31
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
@@ -64,9 +46,6 @@ module Aws::BillingConductor
64
46
  end
65
47
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
66
48
  end
67
- if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
68
- return Aws::Endpoints::Endpoint.new(url: "https://billingconductor.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"billingconductor", "signingRegion"=>"us-east-1"}]})
69
- end
70
49
  return Aws::Endpoints::Endpoint.new(url: "https://billingconductor.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
71
50
  end
72
51
  end
@@ -53,7 +53,8 @@ module Aws::BillingConductor
53
53
  end
54
54
 
55
55
  # The set of accounts that will be under the billing group. The set of
56
- # accounts resemble the linked accounts in a consolidated family.
56
+ # accounts resemble the linked accounts in a consolidated billing
57
+ # family.
57
58
  #
58
59
  # @!attribute [rw] linked_account_ids
59
60
  # The account IDs that make up the billing group. Account IDs must be
@@ -61,10 +62,17 @@ module Aws::BillingConductor
61
62
  # another billing group.
62
63
  # @return [Array<String>]
63
64
  #
65
+ # @!attribute [rw] auto_associate
66
+ # Specifies if this billing group will automatically associate newly
67
+ # added Amazon Web Services accounts that join your consolidated
68
+ # billing family.
69
+ # @return [Boolean]
70
+ #
64
71
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/AccountGrouping AWS API Documentation
65
72
  #
66
73
  class AccountGrouping < Struct.new(
67
- :linked_account_ids)
74
+ :linked_account_ids,
75
+ :auto_associate)
68
76
  SENSITIVE = []
69
77
  include Aws::Structure
70
78
  end
@@ -341,6 +349,11 @@ module Aws::BillingConductor
341
349
  # The reason why the billing group is in its current status.
342
350
  # @return [String]
343
351
  #
352
+ # @!attribute [rw] account_grouping
353
+ # Specifies if the billing group has automatic account association
354
+ # (`AutoAssociate`) enabled.
355
+ # @return [Types::ListBillingGroupAccountGrouping]
356
+ #
344
357
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/BillingGroupListElement AWS API Documentation
345
358
  #
346
359
  class BillingGroupListElement < Struct.new(
@@ -353,7 +366,8 @@ module Aws::BillingConductor
353
366
  :creation_time,
354
367
  :last_modified_time,
355
368
  :status,
356
- :status_reason)
369
+ :status_reason,
370
+ :account_grouping)
357
371
  SENSITIVE = [:name, :description]
358
372
  include Aws::Structure
359
373
  end
@@ -417,7 +431,8 @@ module Aws::BillingConductor
417
431
  #
418
432
  # @!attribute [rw] account_grouping
419
433
  # The set of accounts that will be under the billing group. The set of
420
- # accounts resemble the linked accounts in a consolidated family.
434
+ # accounts resemble the linked accounts in a consolidated billing
435
+ # family.
421
436
  # @return [Types::AccountGrouping]
422
437
  #
423
438
  # @!attribute [rw] computation_preference
@@ -1244,6 +1259,22 @@ module Aws::BillingConductor
1244
1259
  include Aws::Structure
1245
1260
  end
1246
1261
 
1262
+ # Specifies if the billing group has the following features enabled.
1263
+ #
1264
+ # @!attribute [rw] auto_associate
1265
+ # Specifies if this billing group will automatically associate newly
1266
+ # added Amazon Web Services accounts that join your consolidated
1267
+ # billing family.
1268
+ # @return [Boolean]
1269
+ #
1270
+ # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroupAccountGrouping AWS API Documentation
1271
+ #
1272
+ class ListBillingGroupAccountGrouping < Struct.new(
1273
+ :auto_associate)
1274
+ SENSITIVE = []
1275
+ include Aws::Structure
1276
+ end
1277
+
1247
1278
  # The filter used to retrieve specific `BillingGroupCostReportElements`.
1248
1279
  #
1249
1280
  # @!attribute [rw] billing_group_arns
@@ -1324,12 +1355,19 @@ module Aws::BillingConductor
1324
1355
  # specific time range
1325
1356
  # @return [Array<String>]
1326
1357
  #
1358
+ # @!attribute [rw] auto_associate
1359
+ # Specifies if this billing group will automatically associate newly
1360
+ # added Amazon Web Services accounts that join your consolidated
1361
+ # billing family.
1362
+ # @return [Boolean]
1363
+ #
1327
1364
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListBillingGroupsFilter AWS API Documentation
1328
1365
  #
1329
1366
  class ListBillingGroupsFilter < Struct.new(
1330
1367
  :arns,
1331
1368
  :pricing_plan,
1332
- :statuses)
1369
+ :statuses,
1370
+ :auto_associate)
1333
1371
  SENSITIVE = []
1334
1372
  include Aws::Structure
1335
1373
  end
@@ -2254,6 +2292,22 @@ module Aws::BillingConductor
2254
2292
  #
2255
2293
  class UntagResourceResponse < Aws::EmptyStructure; end
2256
2294
 
2295
+ # Specifies if the billing group has the following features enabled.
2296
+ #
2297
+ # @!attribute [rw] auto_associate
2298
+ # Specifies if this billing group will automatically associate newly
2299
+ # added Amazon Web Services accounts that join your consolidated
2300
+ # billing family.
2301
+ # @return [Boolean]
2302
+ #
2303
+ # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroupAccountGrouping AWS API Documentation
2304
+ #
2305
+ class UpdateBillingGroupAccountGrouping < Struct.new(
2306
+ :auto_associate)
2307
+ SENSITIVE = []
2308
+ include Aws::Structure
2309
+ end
2310
+
2257
2311
  # @!attribute [rw] arn
2258
2312
  # The Amazon Resource Name (ARN) of the billing group being updated.
2259
2313
  # @return [String]
@@ -2277,6 +2331,11 @@ module Aws::BillingConductor
2277
2331
  # A description of the billing group.
2278
2332
  # @return [String]
2279
2333
  #
2334
+ # @!attribute [rw] account_grouping
2335
+ # Specifies if the billing group has automatic account association
2336
+ # (`AutoAssociate`) enabled.
2337
+ # @return [Types::UpdateBillingGroupAccountGrouping]
2338
+ #
2280
2339
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroupInput AWS API Documentation
2281
2340
  #
2282
2341
  class UpdateBillingGroupInput < Struct.new(
@@ -2284,7 +2343,8 @@ module Aws::BillingConductor
2284
2343
  :name,
2285
2344
  :status,
2286
2345
  :computation_preference,
2287
- :description)
2346
+ :description,
2347
+ :account_grouping)
2288
2348
  SENSITIVE = [:name, :description]
2289
2349
  include Aws::Structure
2290
2350
  end
@@ -2329,6 +2389,11 @@ module Aws::BillingConductor
2329
2389
  # The reason why the billing group is in its current status.
2330
2390
  # @return [String]
2331
2391
  #
2392
+ # @!attribute [rw] account_grouping
2393
+ # Specifies if the billing group has automatic account association
2394
+ # (`AutoAssociate`) enabled.
2395
+ # @return [Types::UpdateBillingGroupAccountGrouping]
2396
+ #
2332
2397
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateBillingGroupOutput AWS API Documentation
2333
2398
  #
2334
2399
  class UpdateBillingGroupOutput < Struct.new(
@@ -2340,7 +2405,8 @@ module Aws::BillingConductor
2340
2405
  :size,
2341
2406
  :last_modified_time,
2342
2407
  :status,
2343
- :status_reason)
2408
+ :status_reason,
2409
+ :account_grouping)
2344
2410
  SENSITIVE = [:name, :description]
2345
2411
  include Aws::Structure
2346
2412
  end
@@ -2692,7 +2758,7 @@ module Aws::BillingConductor
2692
2758
  end
2693
2759
 
2694
2760
  # The input doesn't match with the constraints specified by Amazon Web
2695
- # Services services.
2761
+ # Services.
2696
2762
  #
2697
2763
  # @!attribute [rw] message
2698
2764
  # @return [String]
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-billingconductor/customizations'
53
53
  # @!group service
54
54
  module Aws::BillingConductor
55
55
 
56
- GEM_VERSION = '1.12.0'
56
+ GEM_VERSION = '1.13.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-billingconductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core