aws-sdk-billingconductor 1.3.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-billingconductor/client.rb +26 -7
- data/lib/aws-sdk-billingconductor/client_api.rb +30 -1
- data/lib/aws-sdk-billingconductor/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-billingconductor/endpoint_provider.rb +131 -131
- data/lib/aws-sdk-billingconductor/types.rb +102 -512
- data/lib/aws-sdk-billingconductor.rb +1 -1
- metadata +2 -2
@@ -55,13 +55,6 @@ module Aws::BillingConductor
|
|
55
55
|
# The set of accounts that will be under the billing group. The set of
|
56
56
|
# accounts resemble the linked accounts in a consolidated family.
|
57
57
|
#
|
58
|
-
# @note When making an API call, you may pass AccountGrouping
|
59
|
-
# data as a hash:
|
60
|
-
#
|
61
|
-
# {
|
62
|
-
# linked_account_ids: ["AccountId"], # required
|
63
|
-
# }
|
64
|
-
#
|
65
58
|
# @!attribute [rw] linked_account_ids
|
66
59
|
# The account IDs that make up the billing group. Account IDs must be
|
67
60
|
# a part of the consolidated billing family, and not associated with
|
@@ -76,14 +69,6 @@ module Aws::BillingConductor
|
|
76
69
|
include Aws::Structure
|
77
70
|
end
|
78
71
|
|
79
|
-
# @note When making an API call, you may pass AssociateAccountsInput
|
80
|
-
# data as a hash:
|
81
|
-
#
|
82
|
-
# {
|
83
|
-
# arn: "BillingGroupArn", # required
|
84
|
-
# account_ids: ["AccountId"], # required
|
85
|
-
# }
|
86
|
-
#
|
87
72
|
# @!attribute [rw] arn
|
88
73
|
# The Amazon Resource Name (ARN) of the billing group that associates
|
89
74
|
# the array of account IDs.
|
@@ -115,14 +100,6 @@ module Aws::BillingConductor
|
|
115
100
|
include Aws::Structure
|
116
101
|
end
|
117
102
|
|
118
|
-
# @note When making an API call, you may pass AssociatePricingRulesInput
|
119
|
-
# data as a hash:
|
120
|
-
#
|
121
|
-
# {
|
122
|
-
# arn: "PricingPlanArn", # required
|
123
|
-
# pricing_rule_arns: ["PricingRuleArn"], # required
|
124
|
-
# }
|
125
|
-
#
|
126
103
|
# @!attribute [rw] arn
|
127
104
|
# The `PricingPlanArn` that the `PricingRuleArns` are associated with.
|
128
105
|
# @return [String]
|
@@ -191,18 +168,6 @@ module Aws::BillingConductor
|
|
191
168
|
include Aws::Structure
|
192
169
|
end
|
193
170
|
|
194
|
-
# @note When making an API call, you may pass BatchAssociateResourcesToCustomLineItemInput
|
195
|
-
# data as a hash:
|
196
|
-
#
|
197
|
-
# {
|
198
|
-
# target_arn: "CustomLineItemArn", # required
|
199
|
-
# resource_arns: ["CustomLineItemAssociationElement"], # required
|
200
|
-
# billing_period_range: {
|
201
|
-
# inclusive_start_billing_period: "BillingPeriod", # required
|
202
|
-
# exclusive_end_billing_period: "BillingPeriod",
|
203
|
-
# },
|
204
|
-
# }
|
205
|
-
#
|
206
171
|
# @!attribute [rw] target_arn
|
207
172
|
# A percentage custom line item ARN to associate the resources to.
|
208
173
|
# @return [String]
|
@@ -246,18 +211,6 @@ module Aws::BillingConductor
|
|
246
211
|
include Aws::Structure
|
247
212
|
end
|
248
213
|
|
249
|
-
# @note When making an API call, you may pass BatchDisassociateResourcesFromCustomLineItemInput
|
250
|
-
# data as a hash:
|
251
|
-
#
|
252
|
-
# {
|
253
|
-
# target_arn: "CustomLineItemArn", # required
|
254
|
-
# resource_arns: ["CustomLineItemAssociationElement"], # required
|
255
|
-
# billing_period_range: {
|
256
|
-
# inclusive_start_billing_period: "BillingPeriod", # required
|
257
|
-
# exclusive_end_billing_period: "BillingPeriod",
|
258
|
-
# },
|
259
|
-
# }
|
260
|
-
#
|
261
214
|
# @!attribute [rw] target_arn
|
262
215
|
# A percentage custom line item ARN to disassociate the resources
|
263
216
|
# from.
|
@@ -408,13 +361,6 @@ module Aws::BillingConductor
|
|
408
361
|
# The preferences and settings that will be used to compute the Amazon
|
409
362
|
# Web Services charges for a billing group.
|
410
363
|
#
|
411
|
-
# @note When making an API call, you may pass ComputationPreference
|
412
|
-
# data as a hash:
|
413
|
-
#
|
414
|
-
# {
|
415
|
-
# pricing_plan_arn: "PricingPlanFullArn", # required
|
416
|
-
# }
|
417
|
-
#
|
418
364
|
# @!attribute [rw] pricing_plan_arn
|
419
365
|
# The Amazon Resource Name (ARN) of the pricing plan that's used to
|
420
366
|
# compute the Amazon Web Services charges for a billing group.
|
@@ -457,25 +403,6 @@ module Aws::BillingConductor
|
|
457
403
|
include Aws::Structure
|
458
404
|
end
|
459
405
|
|
460
|
-
# @note When making an API call, you may pass CreateBillingGroupInput
|
461
|
-
# data as a hash:
|
462
|
-
#
|
463
|
-
# {
|
464
|
-
# client_token: "ClientToken",
|
465
|
-
# name: "BillingGroupName", # required
|
466
|
-
# account_grouping: { # required
|
467
|
-
# linked_account_ids: ["AccountId"], # required
|
468
|
-
# },
|
469
|
-
# computation_preference: { # required
|
470
|
-
# pricing_plan_arn: "PricingPlanFullArn", # required
|
471
|
-
# },
|
472
|
-
# primary_account_id: "AccountId",
|
473
|
-
# description: "BillingGroupDescription",
|
474
|
-
# tags: {
|
475
|
-
# "TagKey" => "TagValue",
|
476
|
-
# },
|
477
|
-
# }
|
478
|
-
#
|
479
406
|
# @!attribute [rw] client_token
|
480
407
|
# The token that is needed to support idempotency. Idempotency isn't
|
481
408
|
# currently supported, but will be implemented in a future update.
|
@@ -537,33 +464,6 @@ module Aws::BillingConductor
|
|
537
464
|
include Aws::Structure
|
538
465
|
end
|
539
466
|
|
540
|
-
# @note When making an API call, you may pass CreateCustomLineItemInput
|
541
|
-
# data as a hash:
|
542
|
-
#
|
543
|
-
# {
|
544
|
-
# client_token: "ClientToken",
|
545
|
-
# name: "CustomLineItemName", # required
|
546
|
-
# description: "CustomLineItemDescription", # required
|
547
|
-
# billing_group_arn: "BillingGroupArn", # required
|
548
|
-
# billing_period_range: {
|
549
|
-
# inclusive_start_billing_period: "BillingPeriod", # required
|
550
|
-
# exclusive_end_billing_period: "BillingPeriod",
|
551
|
-
# },
|
552
|
-
# tags: {
|
553
|
-
# "TagKey" => "TagValue",
|
554
|
-
# },
|
555
|
-
# charge_details: { # required
|
556
|
-
# flat: {
|
557
|
-
# charge_value: 1.0, # required
|
558
|
-
# },
|
559
|
-
# percentage: {
|
560
|
-
# percentage_value: 1.0, # required
|
561
|
-
# associated_values: ["CustomLineItemAssociationElement"],
|
562
|
-
# },
|
563
|
-
# type: "CREDIT", # required, accepts CREDIT, FEE
|
564
|
-
# },
|
565
|
-
# }
|
566
|
-
#
|
567
467
|
# @!attribute [rw] client_token
|
568
468
|
# The token that is needed to support idempotency. Idempotency isn't
|
569
469
|
# currently supported, but will be implemented in a future update.
|
@@ -626,19 +526,20 @@ module Aws::BillingConductor
|
|
626
526
|
include Aws::Structure
|
627
527
|
end
|
628
528
|
|
629
|
-
#
|
630
|
-
# data as a hash:
|
529
|
+
# The possible Amazon Web Services Free Tier configurations.
|
631
530
|
#
|
632
|
-
#
|
633
|
-
#
|
634
|
-
#
|
635
|
-
# description: "PricingPlanDescription",
|
636
|
-
# pricing_rule_arns: ["PricingRuleArn"],
|
637
|
-
# tags: {
|
638
|
-
# "TagKey" => "TagValue",
|
639
|
-
# },
|
640
|
-
# }
|
531
|
+
# @!attribute [rw] activated
|
532
|
+
# Activate or deactivate Amazon Web Services Free Tier.
|
533
|
+
# @return [Boolean]
|
641
534
|
#
|
535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreateFreeTierConfig AWS API Documentation
|
536
|
+
#
|
537
|
+
class CreateFreeTierConfig < Struct.new(
|
538
|
+
:activated)
|
539
|
+
SENSITIVE = []
|
540
|
+
include Aws::Structure
|
541
|
+
end
|
542
|
+
|
642
543
|
# @!attribute [rw] client_token
|
643
544
|
# The token that is needed to support idempotency. Idempotency isn't
|
644
545
|
# currently supported, but will be implemented in a future update.
|
@@ -690,23 +591,6 @@ module Aws::BillingConductor
|
|
690
591
|
include Aws::Structure
|
691
592
|
end
|
692
593
|
|
693
|
-
# @note When making an API call, you may pass CreatePricingRuleInput
|
694
|
-
# data as a hash:
|
695
|
-
#
|
696
|
-
# {
|
697
|
-
# client_token: "ClientToken",
|
698
|
-
# name: "PricingRuleName", # required
|
699
|
-
# description: "PricingRuleDescription",
|
700
|
-
# scope: "GLOBAL", # required, accepts GLOBAL, SERVICE, BILLING_ENTITY
|
701
|
-
# type: "MARKUP", # required, accepts MARKUP, DISCOUNT
|
702
|
-
# modifier_percentage: 1.0, # required
|
703
|
-
# service: "Service",
|
704
|
-
# tags: {
|
705
|
-
# "TagKey" => "TagValue",
|
706
|
-
# },
|
707
|
-
# billing_entity: "BillingEntity",
|
708
|
-
# }
|
709
|
-
#
|
710
594
|
# @!attribute [rw] client_token
|
711
595
|
# The token that's needed to support idempotency. Idempotency isn't
|
712
596
|
# currently supported, but will be implemented in a future update.
|
@@ -753,6 +637,10 @@ module Aws::BillingConductor
|
|
753
637
|
# Services Marketplace.
|
754
638
|
# @return [String]
|
755
639
|
#
|
640
|
+
# @!attribute [rw] tiering
|
641
|
+
# The set of tiering configurations for the pricing rule.
|
642
|
+
# @return [Types::CreateTieringInput]
|
643
|
+
#
|
756
644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreatePricingRuleInput AWS API Documentation
|
757
645
|
#
|
758
646
|
class CreatePricingRuleInput < Struct.new(
|
@@ -764,7 +652,8 @@ module Aws::BillingConductor
|
|
764
652
|
:modifier_percentage,
|
765
653
|
:service,
|
766
654
|
:tags,
|
767
|
-
:billing_entity
|
655
|
+
:billing_entity,
|
656
|
+
:tiering)
|
768
657
|
SENSITIVE = [:name, :description]
|
769
658
|
include Aws::Structure
|
770
659
|
end
|
@@ -781,16 +670,22 @@ module Aws::BillingConductor
|
|
781
670
|
include Aws::Structure
|
782
671
|
end
|
783
672
|
|
784
|
-
# The
|
785
|
-
# applied.
|
673
|
+
# The set of tiering configurations for the pricing rule.
|
786
674
|
#
|
787
|
-
#
|
788
|
-
#
|
675
|
+
# @!attribute [rw] free_tier
|
676
|
+
# The possible Amazon Web Services Free Tier configurations.
|
677
|
+
# @return [Types::CreateFreeTierConfig]
|
789
678
|
#
|
790
|
-
#
|
791
|
-
#
|
792
|
-
|
793
|
-
|
679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreateTieringInput AWS API Documentation
|
680
|
+
#
|
681
|
+
class CreateTieringInput < Struct.new(
|
682
|
+
:free_tier)
|
683
|
+
SENSITIVE = []
|
684
|
+
include Aws::Structure
|
685
|
+
end
|
686
|
+
|
687
|
+
# The billing period range in which the custom line item request will be
|
688
|
+
# applied.
|
794
689
|
#
|
795
690
|
# @!attribute [rw] inclusive_start_billing_period
|
796
691
|
# The inclusive start billing period that defines a billing period
|
@@ -814,20 +709,6 @@ module Aws::BillingConductor
|
|
814
709
|
# The charge details of a custom line item. It should contain only one
|
815
710
|
# of `Flat` or `Percentage`.
|
816
711
|
#
|
817
|
-
# @note When making an API call, you may pass CustomLineItemChargeDetails
|
818
|
-
# data as a hash:
|
819
|
-
#
|
820
|
-
# {
|
821
|
-
# flat: {
|
822
|
-
# charge_value: 1.0, # required
|
823
|
-
# },
|
824
|
-
# percentage: {
|
825
|
-
# percentage_value: 1.0, # required
|
826
|
-
# associated_values: ["CustomLineItemAssociationElement"],
|
827
|
-
# },
|
828
|
-
# type: "CREDIT", # required, accepts CREDIT, FEE
|
829
|
-
# }
|
830
|
-
#
|
831
712
|
# @!attribute [rw] flat
|
832
713
|
# A `CustomLineItemFlatChargeDetails` that describes the charge
|
833
714
|
# details of a flat custom line item.
|
@@ -856,13 +737,6 @@ module Aws::BillingConductor
|
|
856
737
|
# A representation of the charge details that are associated with a flat
|
857
738
|
# custom line item.
|
858
739
|
#
|
859
|
-
# @note When making an API call, you may pass CustomLineItemFlatChargeDetails
|
860
|
-
# data as a hash:
|
861
|
-
#
|
862
|
-
# {
|
863
|
-
# charge_value: 1.0, # required
|
864
|
-
# }
|
865
|
-
#
|
866
740
|
# @!attribute [rw] charge_value
|
867
741
|
# The custom line item's fixed charge value in USD.
|
868
742
|
# @return [Float]
|
@@ -941,14 +815,6 @@ module Aws::BillingConductor
|
|
941
815
|
# A representation of the charge details that are associated with a
|
942
816
|
# percentage custom line item.
|
943
817
|
#
|
944
|
-
# @note When making an API call, you may pass CustomLineItemPercentageChargeDetails
|
945
|
-
# data as a hash:
|
946
|
-
#
|
947
|
-
# {
|
948
|
-
# percentage_value: 1.0, # required
|
949
|
-
# associated_values: ["CustomLineItemAssociationElement"],
|
950
|
-
# }
|
951
|
-
#
|
952
818
|
# @!attribute [rw] percentage_value
|
953
819
|
# The custom line item's percentage value. This will be multiplied
|
954
820
|
# against the combined value of its associated resources to determine
|
@@ -1035,13 +901,6 @@ module Aws::BillingConductor
|
|
1035
901
|
include Aws::Structure
|
1036
902
|
end
|
1037
903
|
|
1038
|
-
# @note When making an API call, you may pass DeleteBillingGroupInput
|
1039
|
-
# data as a hash:
|
1040
|
-
#
|
1041
|
-
# {
|
1042
|
-
# arn: "BillingGroupArn", # required
|
1043
|
-
# }
|
1044
|
-
#
|
1045
904
|
# @!attribute [rw] arn
|
1046
905
|
# The Amazon Resource Name (ARN) of the billing group that you're
|
1047
906
|
# deleting.
|
@@ -1067,17 +926,6 @@ module Aws::BillingConductor
|
|
1067
926
|
include Aws::Structure
|
1068
927
|
end
|
1069
928
|
|
1070
|
-
# @note When making an API call, you may pass DeleteCustomLineItemInput
|
1071
|
-
# data as a hash:
|
1072
|
-
#
|
1073
|
-
# {
|
1074
|
-
# arn: "CustomLineItemArn", # required
|
1075
|
-
# billing_period_range: {
|
1076
|
-
# inclusive_start_billing_period: "BillingPeriod", # required
|
1077
|
-
# exclusive_end_billing_period: "BillingPeriod",
|
1078
|
-
# },
|
1079
|
-
# }
|
1080
|
-
#
|
1081
929
|
# @!attribute [rw] arn
|
1082
930
|
# The ARN of the custom line item to be deleted.
|
1083
931
|
# @return [String]
|
@@ -1108,13 +956,6 @@ module Aws::BillingConductor
|
|
1108
956
|
include Aws::Structure
|
1109
957
|
end
|
1110
958
|
|
1111
|
-
# @note When making an API call, you may pass DeletePricingPlanInput
|
1112
|
-
# data as a hash:
|
1113
|
-
#
|
1114
|
-
# {
|
1115
|
-
# arn: "PricingPlanArn", # required
|
1116
|
-
# }
|
1117
|
-
#
|
1118
959
|
# @!attribute [rw] arn
|
1119
960
|
# The Amazon Resource Name (ARN) of the pricing plan that you're
|
1120
961
|
# deleting.
|
@@ -1140,13 +981,6 @@ module Aws::BillingConductor
|
|
1140
981
|
include Aws::Structure
|
1141
982
|
end
|
1142
983
|
|
1143
|
-
# @note When making an API call, you may pass DeletePricingRuleInput
|
1144
|
-
# data as a hash:
|
1145
|
-
#
|
1146
|
-
# {
|
1147
|
-
# arn: "PricingRuleArn", # required
|
1148
|
-
# }
|
1149
|
-
#
|
1150
984
|
# @!attribute [rw] arn
|
1151
985
|
# The Amazon Resource Name (ARN) of the pricing rule that you are
|
1152
986
|
# deleting.
|
@@ -1172,14 +1006,6 @@ module Aws::BillingConductor
|
|
1172
1006
|
include Aws::Structure
|
1173
1007
|
end
|
1174
1008
|
|
1175
|
-
# @note When making an API call, you may pass DisassociateAccountsInput
|
1176
|
-
# data as a hash:
|
1177
|
-
#
|
1178
|
-
# {
|
1179
|
-
# arn: "BillingGroupArn", # required
|
1180
|
-
# account_ids: ["AccountId"], # required
|
1181
|
-
# }
|
1182
|
-
#
|
1183
1009
|
# @!attribute [rw] arn
|
1184
1010
|
# The Amazon Resource Name (ARN) of the billing group that the array
|
1185
1011
|
# of account IDs will disassociate from.
|
@@ -1211,14 +1037,6 @@ module Aws::BillingConductor
|
|
1211
1037
|
include Aws::Structure
|
1212
1038
|
end
|
1213
1039
|
|
1214
|
-
# @note When making an API call, you may pass DisassociatePricingRulesInput
|
1215
|
-
# data as a hash:
|
1216
|
-
#
|
1217
|
-
# {
|
1218
|
-
# arn: "PricingPlanArn", # required
|
1219
|
-
# pricing_rule_arns: ["PricingRuleArn"], # required
|
1220
|
-
# }
|
1221
|
-
#
|
1222
1040
|
# @!attribute [rw] arn
|
1223
1041
|
# The pricing plan Amazon Resource Name (ARN) to disassociate pricing
|
1224
1042
|
# rules from.
|
@@ -1271,6 +1089,20 @@ module Aws::BillingConductor
|
|
1271
1089
|
include Aws::Structure
|
1272
1090
|
end
|
1273
1091
|
|
1092
|
+
# The possible Amazon Web Services Free Tier configurations.
|
1093
|
+
#
|
1094
|
+
# @!attribute [rw] activated
|
1095
|
+
# Activate or deactivate Amazon Web Services Free Tier application.
|
1096
|
+
# @return [Boolean]
|
1097
|
+
#
|
1098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/FreeTierConfig AWS API Documentation
|
1099
|
+
#
|
1100
|
+
class FreeTierConfig < Struct.new(
|
1101
|
+
:activated)
|
1102
|
+
SENSITIVE = []
|
1103
|
+
include Aws::Structure
|
1104
|
+
end
|
1105
|
+
|
1274
1106
|
# An unexpected error occurred while processing a request.
|
1275
1107
|
#
|
1276
1108
|
# @!attribute [rw] message
|
@@ -1300,14 +1132,6 @@ module Aws::BillingConductor
|
|
1300
1132
|
# `Billing Group Arn`\: linked accounts that are associated to the
|
1301
1133
|
# provided Billing Group Arn.
|
1302
1134
|
#
|
1303
|
-
# @note When making an API call, you may pass ListAccountAssociationsFilter
|
1304
|
-
# data as a hash:
|
1305
|
-
#
|
1306
|
-
# {
|
1307
|
-
# association: "Association",
|
1308
|
-
# account_id: "AccountId",
|
1309
|
-
# }
|
1310
|
-
#
|
1311
1135
|
# @!attribute [rw] association
|
1312
1136
|
# `MONITORED`\: linked accounts that are associated to billing groups.
|
1313
1137
|
#
|
@@ -1331,18 +1155,6 @@ module Aws::BillingConductor
|
|
1331
1155
|
include Aws::Structure
|
1332
1156
|
end
|
1333
1157
|
|
1334
|
-
# @note When making an API call, you may pass ListAccountAssociationsInput
|
1335
|
-
# data as a hash:
|
1336
|
-
#
|
1337
|
-
# {
|
1338
|
-
# billing_period: "BillingPeriod",
|
1339
|
-
# filters: {
|
1340
|
-
# association: "Association",
|
1341
|
-
# account_id: "AccountId",
|
1342
|
-
# },
|
1343
|
-
# next_token: "Token",
|
1344
|
-
# }
|
1345
|
-
#
|
1346
1158
|
# @!attribute [rw] billing_period
|
1347
1159
|
# The preferred billing period to get account associations.
|
1348
1160
|
# @return [String]
|
@@ -1395,13 +1207,6 @@ module Aws::BillingConductor
|
|
1395
1207
|
|
1396
1208
|
# The filter used to retrieve specific `BillingGroupCostReportElements`.
|
1397
1209
|
#
|
1398
|
-
# @note When making an API call, you may pass ListBillingGroupCostReportsFilter
|
1399
|
-
# data as a hash:
|
1400
|
-
#
|
1401
|
-
# {
|
1402
|
-
# billing_group_arns: ["BillingGroupArn"],
|
1403
|
-
# }
|
1404
|
-
#
|
1405
1210
|
# @!attribute [rw] billing_group_arns
|
1406
1211
|
# The list of Amazon Resource Names (ARNs) used to filter billing
|
1407
1212
|
# groups to retrieve reports.
|
@@ -1415,18 +1220,6 @@ module Aws::BillingConductor
|
|
1415
1220
|
include Aws::Structure
|
1416
1221
|
end
|
1417
1222
|
|
1418
|
-
# @note When making an API call, you may pass ListBillingGroupCostReportsInput
|
1419
|
-
# data as a hash:
|
1420
|
-
#
|
1421
|
-
# {
|
1422
|
-
# billing_period: "BillingPeriod",
|
1423
|
-
# max_results: 1,
|
1424
|
-
# next_token: "Token",
|
1425
|
-
# filters: {
|
1426
|
-
# billing_group_arns: ["BillingGroupArn"],
|
1427
|
-
# },
|
1428
|
-
# }
|
1429
|
-
#
|
1430
1223
|
# @!attribute [rw] billing_period
|
1431
1224
|
# The preferred billing period for your report.
|
1432
1225
|
# @return [String]
|
@@ -1477,14 +1270,6 @@ module Aws::BillingConductor
|
|
1477
1270
|
# The filter that specifies the billing groups and pricing plans to
|
1478
1271
|
# retrieve billing group information.
|
1479
1272
|
#
|
1480
|
-
# @note When making an API call, you may pass ListBillingGroupsFilter
|
1481
|
-
# data as a hash:
|
1482
|
-
#
|
1483
|
-
# {
|
1484
|
-
# arns: ["BillingGroupArn"],
|
1485
|
-
# pricing_plan: "PricingPlanFullArn",
|
1486
|
-
# }
|
1487
|
-
#
|
1488
1273
|
# @!attribute [rw] arns
|
1489
1274
|
# The list of billing group Amazon Resource Names (ARNs) to retrieve
|
1490
1275
|
# information.
|
@@ -1504,19 +1289,6 @@ module Aws::BillingConductor
|
|
1504
1289
|
include Aws::Structure
|
1505
1290
|
end
|
1506
1291
|
|
1507
|
-
# @note When making an API call, you may pass ListBillingGroupsInput
|
1508
|
-
# data as a hash:
|
1509
|
-
#
|
1510
|
-
# {
|
1511
|
-
# billing_period: "BillingPeriod",
|
1512
|
-
# max_results: 1,
|
1513
|
-
# next_token: "Token",
|
1514
|
-
# filters: {
|
1515
|
-
# arns: ["BillingGroupArn"],
|
1516
|
-
# pricing_plan: "PricingPlanFullArn",
|
1517
|
-
# },
|
1518
|
-
# }
|
1519
|
-
#
|
1520
1292
|
# @!attribute [rw] billing_period
|
1521
1293
|
# The preferred billing period to get billing groups.
|
1522
1294
|
# @return [String]
|
@@ -1626,14 +1398,6 @@ module Aws::BillingConductor
|
|
1626
1398
|
# A billing period filter that specifies the custom line item versions
|
1627
1399
|
# to retrieve.
|
1628
1400
|
#
|
1629
|
-
# @note When making an API call, you may pass ListCustomLineItemVersionsBillingPeriodRangeFilter
|
1630
|
-
# data as a hash:
|
1631
|
-
#
|
1632
|
-
# {
|
1633
|
-
# start_billing_period: "BillingPeriod",
|
1634
|
-
# end_billing_period: "BillingPeriod",
|
1635
|
-
# }
|
1636
|
-
#
|
1637
1401
|
# @!attribute [rw] start_billing_period
|
1638
1402
|
# The inclusive start billing period that defines a billing period
|
1639
1403
|
# range where a custom line item version is applied.
|
@@ -1656,16 +1420,6 @@ module Aws::BillingConductor
|
|
1656
1420
|
# A filter that specifies the billing period range where the custom line
|
1657
1421
|
# item versions reside.
|
1658
1422
|
#
|
1659
|
-
# @note When making an API call, you may pass ListCustomLineItemVersionsFilter
|
1660
|
-
# data as a hash:
|
1661
|
-
#
|
1662
|
-
# {
|
1663
|
-
# billing_period_range: {
|
1664
|
-
# start_billing_period: "BillingPeriod",
|
1665
|
-
# end_billing_period: "BillingPeriod",
|
1666
|
-
# },
|
1667
|
-
# }
|
1668
|
-
#
|
1669
1423
|
# @!attribute [rw] billing_period_range
|
1670
1424
|
# The billing period range in which the custom line item version is
|
1671
1425
|
# applied.
|
@@ -1679,21 +1433,6 @@ module Aws::BillingConductor
|
|
1679
1433
|
include Aws::Structure
|
1680
1434
|
end
|
1681
1435
|
|
1682
|
-
# @note When making an API call, you may pass ListCustomLineItemVersionsInput
|
1683
|
-
# data as a hash:
|
1684
|
-
#
|
1685
|
-
# {
|
1686
|
-
# arn: "CustomLineItemArn", # required
|
1687
|
-
# max_results: 1,
|
1688
|
-
# next_token: "Token",
|
1689
|
-
# filters: {
|
1690
|
-
# billing_period_range: {
|
1691
|
-
# start_billing_period: "BillingPeriod",
|
1692
|
-
# end_billing_period: "BillingPeriod",
|
1693
|
-
# },
|
1694
|
-
# },
|
1695
|
-
# }
|
1696
|
-
#
|
1697
1436
|
# @!attribute [rw] arn
|
1698
1437
|
# The Amazon Resource Name (ARN) for the custom line item.
|
1699
1438
|
# @return [String]
|
@@ -1744,15 +1483,6 @@ module Aws::BillingConductor
|
|
1744
1483
|
# A filter that specifies the custom line items and billing groups to
|
1745
1484
|
# retrieve FFLI information.
|
1746
1485
|
#
|
1747
|
-
# @note When making an API call, you may pass ListCustomLineItemsFilter
|
1748
|
-
# data as a hash:
|
1749
|
-
#
|
1750
|
-
# {
|
1751
|
-
# names: ["CustomLineItemName"],
|
1752
|
-
# billing_groups: ["BillingGroupArn"],
|
1753
|
-
# arns: ["CustomLineItemArn"],
|
1754
|
-
# }
|
1755
|
-
#
|
1756
1486
|
# @!attribute [rw] names
|
1757
1487
|
# A list of custom line items to retrieve information.
|
1758
1488
|
# @return [Array<String>]
|
@@ -1776,20 +1506,6 @@ module Aws::BillingConductor
|
|
1776
1506
|
include Aws::Structure
|
1777
1507
|
end
|
1778
1508
|
|
1779
|
-
# @note When making an API call, you may pass ListCustomLineItemsInput
|
1780
|
-
# data as a hash:
|
1781
|
-
#
|
1782
|
-
# {
|
1783
|
-
# billing_period: "BillingPeriod",
|
1784
|
-
# max_results: 1,
|
1785
|
-
# next_token: "Token",
|
1786
|
-
# filters: {
|
1787
|
-
# names: ["CustomLineItemName"],
|
1788
|
-
# billing_groups: ["BillingGroupArn"],
|
1789
|
-
# arns: ["CustomLineItemArn"],
|
1790
|
-
# },
|
1791
|
-
# }
|
1792
|
-
#
|
1793
1509
|
# @!attribute [rw] billing_period
|
1794
1510
|
# The preferred billing period to get custom line items (FFLIs).
|
1795
1511
|
# @return [String]
|
@@ -1838,16 +1554,6 @@ module Aws::BillingConductor
|
|
1838
1554
|
include Aws::Structure
|
1839
1555
|
end
|
1840
1556
|
|
1841
|
-
# @note When making an API call, you may pass ListPricingPlansAssociatedWithPricingRuleInput
|
1842
|
-
# data as a hash:
|
1843
|
-
#
|
1844
|
-
# {
|
1845
|
-
# billing_period: "BillingPeriod",
|
1846
|
-
# pricing_rule_arn: "PricingRuleArn", # required
|
1847
|
-
# max_results: 1,
|
1848
|
-
# next_token: "Token",
|
1849
|
-
# }
|
1850
|
-
#
|
1851
1557
|
# @!attribute [rw] billing_period
|
1852
1558
|
# The pricing plan billing period for which associations will be
|
1853
1559
|
# listed.
|
@@ -1911,13 +1617,6 @@ module Aws::BillingConductor
|
|
1911
1617
|
# The filter that specifies the Amazon Resource Names (ARNs) of pricing
|
1912
1618
|
# plans, to retrieve pricing plan information.
|
1913
1619
|
#
|
1914
|
-
# @note When making an API call, you may pass ListPricingPlansFilter
|
1915
|
-
# data as a hash:
|
1916
|
-
#
|
1917
|
-
# {
|
1918
|
-
# arns: ["PricingPlanArn"],
|
1919
|
-
# }
|
1920
|
-
#
|
1921
1620
|
# @!attribute [rw] arns
|
1922
1621
|
# A list of pricing plan Amazon Resource Names (ARNs) to retrieve
|
1923
1622
|
# information.
|
@@ -1931,18 +1630,6 @@ module Aws::BillingConductor
|
|
1931
1630
|
include Aws::Structure
|
1932
1631
|
end
|
1933
1632
|
|
1934
|
-
# @note When making an API call, you may pass ListPricingPlansInput
|
1935
|
-
# data as a hash:
|
1936
|
-
#
|
1937
|
-
# {
|
1938
|
-
# billing_period: "BillingPeriod",
|
1939
|
-
# filters: {
|
1940
|
-
# arns: ["PricingPlanArn"],
|
1941
|
-
# },
|
1942
|
-
# max_results: 1,
|
1943
|
-
# next_token: "Token",
|
1944
|
-
# }
|
1945
|
-
#
|
1946
1633
|
# @!attribute [rw] billing_period
|
1947
1634
|
# The preferred billing period to get pricing plan.
|
1948
1635
|
# @return [String]
|
@@ -1996,16 +1683,6 @@ module Aws::BillingConductor
|
|
1996
1683
|
include Aws::Structure
|
1997
1684
|
end
|
1998
1685
|
|
1999
|
-
# @note When making an API call, you may pass ListPricingRulesAssociatedToPricingPlanInput
|
2000
|
-
# data as a hash:
|
2001
|
-
#
|
2002
|
-
# {
|
2003
|
-
# billing_period: "BillingPeriod",
|
2004
|
-
# pricing_plan_arn: "PricingPlanArn", # required
|
2005
|
-
# max_results: 1,
|
2006
|
-
# next_token: "Token",
|
2007
|
-
# }
|
2008
|
-
#
|
2009
1686
|
# @!attribute [rw] billing_period
|
2010
1687
|
# The billing period for which the pricing rule associations are to be
|
2011
1688
|
# listed.
|
@@ -2069,13 +1746,6 @@ module Aws::BillingConductor
|
|
2069
1746
|
# The filter that specifies criteria that the pricing rules returned by
|
2070
1747
|
# the `ListPricingRules` API will adhere to.
|
2071
1748
|
#
|
2072
|
-
# @note When making an API call, you may pass ListPricingRulesFilter
|
2073
|
-
# data as a hash:
|
2074
|
-
#
|
2075
|
-
# {
|
2076
|
-
# arns: ["PricingRuleArn"],
|
2077
|
-
# }
|
2078
|
-
#
|
2079
1749
|
# @!attribute [rw] arns
|
2080
1750
|
# A list containing the pricing rule Amazon Resource Names (ARNs) to
|
2081
1751
|
# include in the API response.
|
@@ -2089,18 +1759,6 @@ module Aws::BillingConductor
|
|
2089
1759
|
include Aws::Structure
|
2090
1760
|
end
|
2091
1761
|
|
2092
|
-
# @note When making an API call, you may pass ListPricingRulesInput
|
2093
|
-
# data as a hash:
|
2094
|
-
#
|
2095
|
-
# {
|
2096
|
-
# billing_period: "BillingPeriod",
|
2097
|
-
# filters: {
|
2098
|
-
# arns: ["PricingRuleArn"],
|
2099
|
-
# },
|
2100
|
-
# max_results: 1,
|
2101
|
-
# next_token: "Token",
|
2102
|
-
# }
|
2103
|
-
#
|
2104
1762
|
# @!attribute [rw] billing_period
|
2105
1763
|
# The preferred billing period to get the pricing plan.
|
2106
1764
|
# @return [String]
|
@@ -2157,13 +1815,6 @@ module Aws::BillingConductor
|
|
2157
1815
|
# A filter that specifies the type of resource associations that should
|
2158
1816
|
# be retrieved for a custom line item.
|
2159
1817
|
#
|
2160
|
-
# @note When making an API call, you may pass ListResourcesAssociatedToCustomLineItemFilter
|
2161
|
-
# data as a hash:
|
2162
|
-
#
|
2163
|
-
# {
|
2164
|
-
# relationship: "PARENT", # accepts PARENT, CHILD
|
2165
|
-
# }
|
2166
|
-
#
|
2167
1818
|
# @!attribute [rw] relationship
|
2168
1819
|
# The type of relationship between the custom line item and the
|
2169
1820
|
# associated resource.
|
@@ -2177,19 +1828,6 @@ module Aws::BillingConductor
|
|
2177
1828
|
include Aws::Structure
|
2178
1829
|
end
|
2179
1830
|
|
2180
|
-
# @note When making an API call, you may pass ListResourcesAssociatedToCustomLineItemInput
|
2181
|
-
# data as a hash:
|
2182
|
-
#
|
2183
|
-
# {
|
2184
|
-
# billing_period: "BillingPeriod",
|
2185
|
-
# arn: "CustomLineItemArn", # required
|
2186
|
-
# max_results: 1,
|
2187
|
-
# next_token: "Token",
|
2188
|
-
# filters: {
|
2189
|
-
# relationship: "PARENT", # accepts PARENT, CHILD
|
2190
|
-
# },
|
2191
|
-
# }
|
2192
|
-
#
|
2193
1831
|
# @!attribute [rw] billing_period
|
2194
1832
|
# The billing period for which the resource associations will be
|
2195
1833
|
# listed.
|
@@ -2277,13 +1915,6 @@ module Aws::BillingConductor
|
|
2277
1915
|
include Aws::Structure
|
2278
1916
|
end
|
2279
1917
|
|
2280
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2281
|
-
# data as a hash:
|
2282
|
-
#
|
2283
|
-
# {
|
2284
|
-
# resource_arn: "Arn", # required
|
2285
|
-
# }
|
2286
|
-
#
|
2287
1918
|
# @!attribute [rw] resource_arn
|
2288
1919
|
# The Amazon Resource Name (ARN) that identifies the resource to list
|
2289
1920
|
# the tags.
|
@@ -2401,6 +2032,10 @@ module Aws::BillingConductor
|
|
2401
2032
|
# Services Marketplace.
|
2402
2033
|
# @return [String]
|
2403
2034
|
#
|
2035
|
+
# @!attribute [rw] tiering
|
2036
|
+
# The set of tiering configurations for the pricing rule.
|
2037
|
+
# @return [Types::Tiering]
|
2038
|
+
#
|
2404
2039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/PricingRuleListElement AWS API Documentation
|
2405
2040
|
#
|
2406
2041
|
class PricingRuleListElement < Struct.new(
|
@@ -2414,7 +2049,8 @@ module Aws::BillingConductor
|
|
2414
2049
|
:associated_pricing_plan_count,
|
2415
2050
|
:creation_time,
|
2416
2051
|
:last_modified_time,
|
2417
|
-
:billing_entity
|
2052
|
+
:billing_entity,
|
2053
|
+
:tiering)
|
2418
2054
|
SENSITIVE = [:name, :description]
|
2419
2055
|
include Aws::Structure
|
2420
2056
|
end
|
@@ -2476,16 +2112,6 @@ module Aws::BillingConductor
|
|
2476
2112
|
include Aws::Structure
|
2477
2113
|
end
|
2478
2114
|
|
2479
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2480
|
-
# data as a hash:
|
2481
|
-
#
|
2482
|
-
# {
|
2483
|
-
# resource_arn: "Arn", # required
|
2484
|
-
# tags: { # required
|
2485
|
-
# "TagKey" => "TagValue",
|
2486
|
-
# },
|
2487
|
-
# }
|
2488
|
-
#
|
2489
2115
|
# @!attribute [rw] resource_arn
|
2490
2116
|
# The Amazon Resource Name (ARN) of the resource to which to add tags.
|
2491
2117
|
# @return [String]
|
@@ -2525,14 +2151,20 @@ module Aws::BillingConductor
|
|
2525
2151
|
include Aws::Structure
|
2526
2152
|
end
|
2527
2153
|
|
2528
|
-
#
|
2529
|
-
#
|
2154
|
+
# The set of tiering configurations for the pricing rule.
|
2155
|
+
#
|
2156
|
+
# @!attribute [rw] free_tier
|
2157
|
+
# The possible Amazon Web Services Free Tier configurations.
|
2158
|
+
# @return [Types::FreeTierConfig]
|
2530
2159
|
#
|
2531
|
-
#
|
2532
|
-
# resource_arn: "Arn", # required
|
2533
|
-
# tag_keys: ["TagKey"], # required
|
2534
|
-
# }
|
2160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/Tiering AWS API Documentation
|
2535
2161
|
#
|
2162
|
+
class Tiering < Struct.new(
|
2163
|
+
:free_tier)
|
2164
|
+
SENSITIVE = []
|
2165
|
+
include Aws::Structure
|
2166
|
+
end
|
2167
|
+
|
2536
2168
|
# @!attribute [rw] resource_arn
|
2537
2169
|
# The Amazon Resource Name (ARN) of the resource to which to delete
|
2538
2170
|
# tags.
|
@@ -2555,19 +2187,6 @@ module Aws::BillingConductor
|
|
2555
2187
|
#
|
2556
2188
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2557
2189
|
|
2558
|
-
# @note When making an API call, you may pass UpdateBillingGroupInput
|
2559
|
-
# data as a hash:
|
2560
|
-
#
|
2561
|
-
# {
|
2562
|
-
# arn: "BillingGroupArn", # required
|
2563
|
-
# name: "BillingGroupName",
|
2564
|
-
# status: "ACTIVE", # accepts ACTIVE, PRIMARY_ACCOUNT_MISSING
|
2565
|
-
# computation_preference: {
|
2566
|
-
# pricing_plan_arn: "PricingPlanFullArn", # required
|
2567
|
-
# },
|
2568
|
-
# description: "BillingGroupDescription",
|
2569
|
-
# }
|
2570
|
-
#
|
2571
2190
|
# @!attribute [rw] arn
|
2572
2191
|
# The Amazon Resource Name (ARN) of the billing group being updated.
|
2573
2192
|
# @return [String]
|
@@ -2662,18 +2281,6 @@ module Aws::BillingConductor
|
|
2662
2281
|
# A representation of the new charge details of a custom line item. This
|
2663
2282
|
# should contain only one of `Flat` or `Percentage`.
|
2664
2283
|
#
|
2665
|
-
# @note When making an API call, you may pass UpdateCustomLineItemChargeDetails
|
2666
|
-
# data as a hash:
|
2667
|
-
#
|
2668
|
-
# {
|
2669
|
-
# flat: {
|
2670
|
-
# charge_value: 1.0, # required
|
2671
|
-
# },
|
2672
|
-
# percentage: {
|
2673
|
-
# percentage_value: 1.0, # required
|
2674
|
-
# },
|
2675
|
-
# }
|
2676
|
-
#
|
2677
2284
|
# @!attribute [rw] flat
|
2678
2285
|
# An `UpdateCustomLineItemFlatChargeDetails` that describes the new
|
2679
2286
|
# charge details of a flat custom line item.
|
@@ -2696,13 +2303,6 @@ module Aws::BillingConductor
|
|
2696
2303
|
# A representation of the new charge details that are associated with a
|
2697
2304
|
# flat custom line item.
|
2698
2305
|
#
|
2699
|
-
# @note When making an API call, you may pass UpdateCustomLineItemFlatChargeDetails
|
2700
|
-
# data as a hash:
|
2701
|
-
#
|
2702
|
-
# {
|
2703
|
-
# charge_value: 1.0, # required
|
2704
|
-
# }
|
2705
|
-
#
|
2706
2306
|
# @!attribute [rw] charge_value
|
2707
2307
|
# The custom line item's new fixed charge value in USD.
|
2708
2308
|
# @return [Float]
|
@@ -2715,27 +2315,6 @@ module Aws::BillingConductor
|
|
2715
2315
|
include Aws::Structure
|
2716
2316
|
end
|
2717
2317
|
|
2718
|
-
# @note When making an API call, you may pass UpdateCustomLineItemInput
|
2719
|
-
# data as a hash:
|
2720
|
-
#
|
2721
|
-
# {
|
2722
|
-
# arn: "CustomLineItemArn", # required
|
2723
|
-
# name: "CustomLineItemName",
|
2724
|
-
# description: "CustomLineItemDescription",
|
2725
|
-
# charge_details: {
|
2726
|
-
# flat: {
|
2727
|
-
# charge_value: 1.0, # required
|
2728
|
-
# },
|
2729
|
-
# percentage: {
|
2730
|
-
# percentage_value: 1.0, # required
|
2731
|
-
# },
|
2732
|
-
# },
|
2733
|
-
# billing_period_range: {
|
2734
|
-
# inclusive_start_billing_period: "BillingPeriod", # required
|
2735
|
-
# exclusive_end_billing_period: "BillingPeriod",
|
2736
|
-
# },
|
2737
|
-
# }
|
2738
|
-
#
|
2739
2318
|
# @!attribute [rw] arn
|
2740
2319
|
# The ARN of the custom line item to be updated.
|
2741
2320
|
# @return [String]
|
@@ -2817,13 +2396,6 @@ module Aws::BillingConductor
|
|
2817
2396
|
# A representation of the new charge details that are associated with a
|
2818
2397
|
# percentage custom line item.
|
2819
2398
|
#
|
2820
|
-
# @note When making an API call, you may pass UpdateCustomLineItemPercentageChargeDetails
|
2821
|
-
# data as a hash:
|
2822
|
-
#
|
2823
|
-
# {
|
2824
|
-
# percentage_value: 1.0, # required
|
2825
|
-
# }
|
2826
|
-
#
|
2827
2399
|
# @!attribute [rw] percentage_value
|
2828
2400
|
# The custom line item's new percentage value. This will be
|
2829
2401
|
# multiplied against the combined value of its associated resources to
|
@@ -2838,15 +2410,20 @@ module Aws::BillingConductor
|
|
2838
2410
|
include Aws::Structure
|
2839
2411
|
end
|
2840
2412
|
|
2841
|
-
#
|
2842
|
-
#
|
2413
|
+
# The possible Amazon Web Services Free Tier configurations.
|
2414
|
+
#
|
2415
|
+
# @!attribute [rw] activated
|
2416
|
+
# Activate or deactivate application of Amazon Web Services Free Tier.
|
2417
|
+
# @return [Boolean]
|
2843
2418
|
#
|
2844
|
-
#
|
2845
|
-
# arn: "PricingPlanArn", # required
|
2846
|
-
# name: "PricingPlanName",
|
2847
|
-
# description: "PricingPlanDescription",
|
2848
|
-
# }
|
2419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateFreeTierConfig AWS API Documentation
|
2849
2420
|
#
|
2421
|
+
class UpdateFreeTierConfig < Struct.new(
|
2422
|
+
:activated)
|
2423
|
+
SENSITIVE = []
|
2424
|
+
include Aws::Structure
|
2425
|
+
end
|
2426
|
+
|
2850
2427
|
# @!attribute [rw] arn
|
2851
2428
|
# The Amazon Resource Name (ARN) of the pricing plan that you're
|
2852
2429
|
# updating.
|
@@ -2905,17 +2482,6 @@ module Aws::BillingConductor
|
|
2905
2482
|
include Aws::Structure
|
2906
2483
|
end
|
2907
2484
|
|
2908
|
-
# @note When making an API call, you may pass UpdatePricingRuleInput
|
2909
|
-
# data as a hash:
|
2910
|
-
#
|
2911
|
-
# {
|
2912
|
-
# arn: "PricingRuleArn", # required
|
2913
|
-
# name: "PricingRuleName",
|
2914
|
-
# description: "PricingRuleDescription",
|
2915
|
-
# type: "MARKUP", # accepts MARKUP, DISCOUNT
|
2916
|
-
# modifier_percentage: 1.0,
|
2917
|
-
# }
|
2918
|
-
#
|
2919
2485
|
# @!attribute [rw] arn
|
2920
2486
|
# The Amazon Resource Name (ARN) of the pricing rule to update.
|
2921
2487
|
# @return [String]
|
@@ -2937,6 +2503,10 @@ module Aws::BillingConductor
|
|
2937
2503
|
# The new modifier to show pricing plan rates as a percentage.
|
2938
2504
|
# @return [Float]
|
2939
2505
|
#
|
2506
|
+
# @!attribute [rw] tiering
|
2507
|
+
# The set of tiering configurations for the pricing rule.
|
2508
|
+
# @return [Types::UpdateTieringInput]
|
2509
|
+
#
|
2940
2510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdatePricingRuleInput AWS API Documentation
|
2941
2511
|
#
|
2942
2512
|
class UpdatePricingRuleInput < Struct.new(
|
@@ -2944,7 +2514,8 @@ module Aws::BillingConductor
|
|
2944
2514
|
:name,
|
2945
2515
|
:description,
|
2946
2516
|
:type,
|
2947
|
-
:modifier_percentage
|
2517
|
+
:modifier_percentage,
|
2518
|
+
:tiering)
|
2948
2519
|
SENSITIVE = [:name, :description]
|
2949
2520
|
include Aws::Structure
|
2950
2521
|
end
|
@@ -2995,6 +2566,10 @@ module Aws::BillingConductor
|
|
2995
2566
|
# Services Marketplace.
|
2996
2567
|
# @return [String]
|
2997
2568
|
#
|
2569
|
+
# @!attribute [rw] tiering
|
2570
|
+
# The set of tiering configurations for the pricing rule.
|
2571
|
+
# @return [Types::UpdateTieringInput]
|
2572
|
+
#
|
2998
2573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdatePricingRuleOutput AWS API Documentation
|
2999
2574
|
#
|
3000
2575
|
class UpdatePricingRuleOutput < Struct.new(
|
@@ -3007,11 +2582,26 @@ module Aws::BillingConductor
|
|
3007
2582
|
:service,
|
3008
2583
|
:associated_pricing_plan_count,
|
3009
2584
|
:last_modified_time,
|
3010
|
-
:billing_entity
|
2585
|
+
:billing_entity,
|
2586
|
+
:tiering)
|
3011
2587
|
SENSITIVE = [:name, :description]
|
3012
2588
|
include Aws::Structure
|
3013
2589
|
end
|
3014
2590
|
|
2591
|
+
# The set of tiering configurations for the pricing rule.
|
2592
|
+
#
|
2593
|
+
# @!attribute [rw] free_tier
|
2594
|
+
# The possible Amazon Web Services Free Tier configurations.
|
2595
|
+
# @return [Types::UpdateFreeTierConfig]
|
2596
|
+
#
|
2597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateTieringInput AWS API Documentation
|
2598
|
+
#
|
2599
|
+
class UpdateTieringInput < Struct.new(
|
2600
|
+
:free_tier)
|
2601
|
+
SENSITIVE = []
|
2602
|
+
include Aws::Structure
|
2603
|
+
end
|
2604
|
+
|
3015
2605
|
# The input doesn't match with the constraints specified by Amazon Web
|
3016
2606
|
# Services services.
|
3017
2607
|
#
|