aws-sdk-billingconductor 1.61.0 → 1.63.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-billingconductor/client.rb +25 -3
- data/lib/aws-sdk-billingconductor/client_api.rb +18 -3
- data/lib/aws-sdk-billingconductor/types.rb +45 -3
- data/lib/aws-sdk-billingconductor.rb +1 -1
- data/sig/client.rbs +16 -2
- data/sig/types.rbs +10 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f12c583fcfed16dbac5fbc6c4f34d19b3565a36c8d3db8f90ac9026be75f289c
|
|
4
|
+
data.tar.gz: 370e238363f4b3bcc3de71622a672729a432cf8bfcc2940d5936963783f2ef02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a939493f6d8a8ac3380a6ba713f43309afe1bceb14e61667127d9021a6d3fd4fd77ce572e49de9619032fa1fe43b79cc08892f4d5c1dcb1650512d7805a967a
|
|
7
|
+
data.tar.gz: 91024e4a3cdb7df6ddee735e44c8d412fa119e4b0f7d3081e80f35f6e596eb129278c462b419dbc6abca353757ea4bece6a359e5198d1edfbd212959cc10cf89
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.63.0 (2026-09-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for custom volume tiering. You can now define custom tiers on a pricing rule's tiering configuration, where each tier specifies a usage range and the rate applied to usage in that range.
|
|
8
|
+
|
|
9
|
+
1.62.0 (2026-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.61.0 (2026-09-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.63.0
|
|
@@ -959,9 +959,16 @@ module Aws::BillingConductor
|
|
|
959
959
|
# },
|
|
960
960
|
# billing_entity: "BillingEntity",
|
|
961
961
|
# tiering: {
|
|
962
|
-
# free_tier: {
|
|
962
|
+
# free_tier: {
|
|
963
963
|
# activated: false, # required
|
|
964
964
|
# },
|
|
965
|
+
# custom_tiers: [
|
|
966
|
+
# {
|
|
967
|
+
# begin_range_inclusive: 1.0, # required
|
|
968
|
+
# end_range_exclusive: 1.0,
|
|
969
|
+
# rate_value: 1.0, # required
|
|
970
|
+
# },
|
|
971
|
+
# ],
|
|
965
972
|
# },
|
|
966
973
|
# usage_type: "UsageType",
|
|
967
974
|
# operation: "Operation",
|
|
@@ -1743,6 +1750,10 @@ module Aws::BillingConductor
|
|
|
1743
1750
|
# resp.pricing_rules[0].last_modified_time #=> Integer
|
|
1744
1751
|
# resp.pricing_rules[0].billing_entity #=> String
|
|
1745
1752
|
# resp.pricing_rules[0].tiering.free_tier.activated #=> Boolean
|
|
1753
|
+
# resp.pricing_rules[0].tiering.custom_tiers #=> Array
|
|
1754
|
+
# resp.pricing_rules[0].tiering.custom_tiers[0].begin_range_inclusive #=> Float
|
|
1755
|
+
# resp.pricing_rules[0].tiering.custom_tiers[0].end_range_exclusive #=> Float
|
|
1756
|
+
# resp.pricing_rules[0].tiering.custom_tiers[0].rate_value #=> Float
|
|
1746
1757
|
# resp.pricing_rules[0].usage_type #=> String
|
|
1747
1758
|
# resp.pricing_rules[0].operation #=> String
|
|
1748
1759
|
# resp.next_token #=> String
|
|
@@ -2208,9 +2219,16 @@ module Aws::BillingConductor
|
|
|
2208
2219
|
# type: "MARKUP", # accepts MARKUP, DISCOUNT, TIERING
|
|
2209
2220
|
# modifier_percentage: 1.0,
|
|
2210
2221
|
# tiering: {
|
|
2211
|
-
# free_tier: {
|
|
2222
|
+
# free_tier: {
|
|
2212
2223
|
# activated: false, # required
|
|
2213
2224
|
# },
|
|
2225
|
+
# custom_tiers: [
|
|
2226
|
+
# {
|
|
2227
|
+
# begin_range_inclusive: 1.0, # required
|
|
2228
|
+
# end_range_exclusive: 1.0,
|
|
2229
|
+
# rate_value: 1.0, # required
|
|
2230
|
+
# },
|
|
2231
|
+
# ],
|
|
2214
2232
|
# },
|
|
2215
2233
|
# })
|
|
2216
2234
|
#
|
|
@@ -2227,6 +2245,10 @@ module Aws::BillingConductor
|
|
|
2227
2245
|
# resp.last_modified_time #=> Integer
|
|
2228
2246
|
# resp.billing_entity #=> String
|
|
2229
2247
|
# resp.tiering.free_tier.activated #=> Boolean
|
|
2248
|
+
# resp.tiering.custom_tiers #=> Array
|
|
2249
|
+
# resp.tiering.custom_tiers[0].begin_range_inclusive #=> Float
|
|
2250
|
+
# resp.tiering.custom_tiers[0].end_range_exclusive #=> Float
|
|
2251
|
+
# resp.tiering.custom_tiers[0].rate_value #=> Float
|
|
2230
2252
|
# resp.usage_type #=> String
|
|
2231
2253
|
# resp.operation #=> String
|
|
2232
2254
|
#
|
|
@@ -2257,7 +2279,7 @@ module Aws::BillingConductor
|
|
|
2257
2279
|
tracer: tracer
|
|
2258
2280
|
)
|
|
2259
2281
|
context[:gem_name] = 'aws-sdk-billingconductor'
|
|
2260
|
-
context[:gem_version] = '1.
|
|
2282
|
+
context[:gem_version] = '1.63.0'
|
|
2261
2283
|
Seahorse::Client::Request.new(handlers, context)
|
|
2262
2284
|
end
|
|
2263
2285
|
|
|
@@ -101,6 +101,11 @@ module Aws::BillingConductor
|
|
|
101
101
|
CustomLineItemType = Shapes::StringShape.new(name: 'CustomLineItemType')
|
|
102
102
|
CustomLineItemVersionList = Shapes::ListShape.new(name: 'CustomLineItemVersionList')
|
|
103
103
|
CustomLineItemVersionListElement = Shapes::StructureShape.new(name: 'CustomLineItemVersionListElement')
|
|
104
|
+
CustomTier = Shapes::StructureShape.new(name: 'CustomTier')
|
|
105
|
+
CustomTierBeginRangeInclusive = Shapes::FloatShape.new(name: 'CustomTierBeginRangeInclusive')
|
|
106
|
+
CustomTierEndRangeExclusive = Shapes::FloatShape.new(name: 'CustomTierEndRangeExclusive')
|
|
107
|
+
CustomTierRateValue = Shapes::FloatShape.new(name: 'CustomTierRateValue')
|
|
108
|
+
CustomTiersList = Shapes::ListShape.new(name: 'CustomTiersList')
|
|
104
109
|
DeleteBillingGroupInput = Shapes::StructureShape.new(name: 'DeleteBillingGroupInput')
|
|
105
110
|
DeleteBillingGroupOutput = Shapes::StructureShape.new(name: 'DeleteBillingGroupOutput')
|
|
106
111
|
DeleteCustomLineItemInput = Shapes::StructureShape.new(name: 'DeleteCustomLineItemInput')
|
|
@@ -424,7 +429,8 @@ module Aws::BillingConductor
|
|
|
424
429
|
CreatePricingRuleOutput.add_member(:arn, Shapes::ShapeRef.new(shape: PricingRuleArn, location_name: "Arn"))
|
|
425
430
|
CreatePricingRuleOutput.struct_class = Types::CreatePricingRuleOutput
|
|
426
431
|
|
|
427
|
-
CreateTieringInput.add_member(:free_tier, Shapes::ShapeRef.new(shape: CreateFreeTierConfig,
|
|
432
|
+
CreateTieringInput.add_member(:free_tier, Shapes::ShapeRef.new(shape: CreateFreeTierConfig, location_name: "FreeTier"))
|
|
433
|
+
CreateTieringInput.add_member(:custom_tiers, Shapes::ShapeRef.new(shape: CustomTiersList, location_name: "CustomTiers"))
|
|
428
434
|
CreateTieringInput.struct_class = Types::CreateTieringInput
|
|
429
435
|
|
|
430
436
|
CustomLineItemArns.member = Shapes::ShapeRef.new(shape: CustomLineItemArn)
|
|
@@ -491,6 +497,13 @@ module Aws::BillingConductor
|
|
|
491
497
|
CustomLineItemVersionListElement.add_member(:presentation_details, Shapes::ShapeRef.new(shape: PresentationObject, location_name: "PresentationDetails"))
|
|
492
498
|
CustomLineItemVersionListElement.struct_class = Types::CustomLineItemVersionListElement
|
|
493
499
|
|
|
500
|
+
CustomTier.add_member(:begin_range_inclusive, Shapes::ShapeRef.new(shape: CustomTierBeginRangeInclusive, required: true, location_name: "BeginRangeInclusive"))
|
|
501
|
+
CustomTier.add_member(:end_range_exclusive, Shapes::ShapeRef.new(shape: CustomTierEndRangeExclusive, location_name: "EndRangeExclusive"))
|
|
502
|
+
CustomTier.add_member(:rate_value, Shapes::ShapeRef.new(shape: CustomTierRateValue, required: true, location_name: "RateValue"))
|
|
503
|
+
CustomTier.struct_class = Types::CustomTier
|
|
504
|
+
|
|
505
|
+
CustomTiersList.member = Shapes::ShapeRef.new(shape: CustomTier)
|
|
506
|
+
|
|
494
507
|
DeleteBillingGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: BillingGroupArn, required: true, location_name: "Arn"))
|
|
495
508
|
DeleteBillingGroupInput.struct_class = Types::DeleteBillingGroupInput
|
|
496
509
|
|
|
@@ -818,7 +831,8 @@ module Aws::BillingConductor
|
|
|
818
831
|
ThrottlingException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
|
|
819
832
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
820
833
|
|
|
821
|
-
Tiering.add_member(:free_tier, Shapes::ShapeRef.new(shape: FreeTierConfig,
|
|
834
|
+
Tiering.add_member(:free_tier, Shapes::ShapeRef.new(shape: FreeTierConfig, location_name: "FreeTier"))
|
|
835
|
+
Tiering.add_member(:custom_tiers, Shapes::ShapeRef.new(shape: CustomTiersList, location_name: "CustomTiers"))
|
|
822
836
|
Tiering.struct_class = Types::Tiering
|
|
823
837
|
|
|
824
838
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "ResourceArn"))
|
|
@@ -916,7 +930,8 @@ module Aws::BillingConductor
|
|
|
916
930
|
UpdatePricingRuleOutput.add_member(:operation, Shapes::ShapeRef.new(shape: Operation, location_name: "Operation"))
|
|
917
931
|
UpdatePricingRuleOutput.struct_class = Types::UpdatePricingRuleOutput
|
|
918
932
|
|
|
919
|
-
UpdateTieringInput.add_member(:free_tier, Shapes::ShapeRef.new(shape: UpdateFreeTierConfig,
|
|
933
|
+
UpdateTieringInput.add_member(:free_tier, Shapes::ShapeRef.new(shape: UpdateFreeTierConfig, location_name: "FreeTier"))
|
|
934
|
+
UpdateTieringInput.add_member(:custom_tiers, Shapes::ShapeRef.new(shape: CustomTiersList, location_name: "CustomTiers"))
|
|
920
935
|
UpdateTieringInput.struct_class = Types::UpdateTieringInput
|
|
921
936
|
|
|
922
937
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
|
@@ -856,10 +856,15 @@ module Aws::BillingConductor
|
|
|
856
856
|
# The possible Amazon Web Services Free Tier configurations.
|
|
857
857
|
# @return [Types::CreateFreeTierConfig]
|
|
858
858
|
#
|
|
859
|
+
# @!attribute [rw] custom_tiers
|
|
860
|
+
# The set of custom tiers for the pricing rule.
|
|
861
|
+
# @return [Array<Types::CustomTier>]
|
|
862
|
+
#
|
|
859
863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreateTieringInput AWS API Documentation
|
|
860
864
|
#
|
|
861
865
|
class CreateTieringInput < Struct.new(
|
|
862
|
-
:free_tier
|
|
866
|
+
:free_tier,
|
|
867
|
+
:custom_tiers)
|
|
863
868
|
SENSITIVE = []
|
|
864
869
|
include Aws::Structure
|
|
865
870
|
end
|
|
@@ -1133,6 +1138,33 @@ module Aws::BillingConductor
|
|
|
1133
1138
|
include Aws::Structure
|
|
1134
1139
|
end
|
|
1135
1140
|
|
|
1141
|
+
# A custom tier for the pricing rule. Each custom tier applies a rate to
|
|
1142
|
+
# the usage that falls within the tier's range.
|
|
1143
|
+
#
|
|
1144
|
+
# @!attribute [rw] begin_range_inclusive
|
|
1145
|
+
# The inclusive start of the usage range that this tier applies to.
|
|
1146
|
+
# @return [Float]
|
|
1147
|
+
#
|
|
1148
|
+
# @!attribute [rw] end_range_exclusive
|
|
1149
|
+
# The exclusive end of the usage range that this tier applies to. If
|
|
1150
|
+
# you don't specify a value, this tier applies to all usage that is
|
|
1151
|
+
# greater than or equal to `BeginRangeInclusive`.
|
|
1152
|
+
# @return [Float]
|
|
1153
|
+
#
|
|
1154
|
+
# @!attribute [rw] rate_value
|
|
1155
|
+
# The rate that's applied to the usage that falls within this tier.
|
|
1156
|
+
# @return [Float]
|
|
1157
|
+
#
|
|
1158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CustomTier AWS API Documentation
|
|
1159
|
+
#
|
|
1160
|
+
class CustomTier < Struct.new(
|
|
1161
|
+
:begin_range_inclusive,
|
|
1162
|
+
:end_range_exclusive,
|
|
1163
|
+
:rate_value)
|
|
1164
|
+
SENSITIVE = []
|
|
1165
|
+
include Aws::Structure
|
|
1166
|
+
end
|
|
1167
|
+
|
|
1136
1168
|
# @!attribute [rw] arn
|
|
1137
1169
|
# The Amazon Resource Name (ARN) of the billing group that you're
|
|
1138
1170
|
# deleting.
|
|
@@ -2612,10 +2644,15 @@ module Aws::BillingConductor
|
|
|
2612
2644
|
# The possible Amazon Web Services Free Tier configurations.
|
|
2613
2645
|
# @return [Types::FreeTierConfig]
|
|
2614
2646
|
#
|
|
2647
|
+
# @!attribute [rw] custom_tiers
|
|
2648
|
+
# The set of custom tiers for the pricing rule.
|
|
2649
|
+
# @return [Array<Types::CustomTier>]
|
|
2650
|
+
#
|
|
2615
2651
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/Tiering AWS API Documentation
|
|
2616
2652
|
#
|
|
2617
2653
|
class Tiering < Struct.new(
|
|
2618
|
-
:free_tier
|
|
2654
|
+
:free_tier,
|
|
2655
|
+
:custom_tiers)
|
|
2619
2656
|
SENSITIVE = []
|
|
2620
2657
|
include Aws::Structure
|
|
2621
2658
|
end
|
|
@@ -3112,10 +3149,15 @@ module Aws::BillingConductor
|
|
|
3112
3149
|
# The possible Amazon Web Services Free Tier configurations.
|
|
3113
3150
|
# @return [Types::UpdateFreeTierConfig]
|
|
3114
3151
|
#
|
|
3152
|
+
# @!attribute [rw] custom_tiers
|
|
3153
|
+
# The set of custom tiers for the pricing rule.
|
|
3154
|
+
# @return [Array<Types::CustomTier>]
|
|
3155
|
+
#
|
|
3115
3156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdateTieringInput AWS API Documentation
|
|
3116
3157
|
#
|
|
3117
3158
|
class UpdateTieringInput < Struct.new(
|
|
3118
|
-
:free_tier
|
|
3159
|
+
:free_tier,
|
|
3160
|
+
:custom_tiers)
|
|
3119
3161
|
SENSITIVE = []
|
|
3120
3162
|
include Aws::Structure
|
|
3121
3163
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -227,7 +227,14 @@ module Aws
|
|
|
227
227
|
?tiering: {
|
|
228
228
|
free_tier: {
|
|
229
229
|
activated: bool
|
|
230
|
-
}
|
|
230
|
+
}?,
|
|
231
|
+
custom_tiers: Array[
|
|
232
|
+
{
|
|
233
|
+
begin_range_inclusive: ::Float,
|
|
234
|
+
end_range_exclusive: ::Float?,
|
|
235
|
+
rate_value: ::Float
|
|
236
|
+
}
|
|
237
|
+
]?
|
|
231
238
|
},
|
|
232
239
|
?usage_type: ::String,
|
|
233
240
|
?operation: ::String
|
|
@@ -640,7 +647,14 @@ module Aws
|
|
|
640
647
|
?tiering: {
|
|
641
648
|
free_tier: {
|
|
642
649
|
activated: bool
|
|
643
|
-
}
|
|
650
|
+
}?,
|
|
651
|
+
custom_tiers: Array[
|
|
652
|
+
{
|
|
653
|
+
begin_range_inclusive: ::Float,
|
|
654
|
+
end_range_exclusive: ::Float?,
|
|
655
|
+
rate_value: ::Float
|
|
656
|
+
}
|
|
657
|
+
]?
|
|
644
658
|
}
|
|
645
659
|
) -> _UpdatePricingRuleResponseSuccess
|
|
646
660
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePricingRuleResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -227,6 +227,7 @@ module Aws::BillingConductor
|
|
|
227
227
|
|
|
228
228
|
class CreateTieringInput
|
|
229
229
|
attr_accessor free_tier: Types::CreateFreeTierConfig
|
|
230
|
+
attr_accessor custom_tiers: ::Array[Types::CustomTier]
|
|
230
231
|
SENSITIVE: []
|
|
231
232
|
end
|
|
232
233
|
|
|
@@ -292,6 +293,13 @@ module Aws::BillingConductor
|
|
|
292
293
|
SENSITIVE: [:name, :description]
|
|
293
294
|
end
|
|
294
295
|
|
|
296
|
+
class CustomTier
|
|
297
|
+
attr_accessor begin_range_inclusive: ::Float
|
|
298
|
+
attr_accessor end_range_exclusive: ::Float
|
|
299
|
+
attr_accessor rate_value: ::Float
|
|
300
|
+
SENSITIVE: []
|
|
301
|
+
end
|
|
302
|
+
|
|
295
303
|
class DeleteBillingGroupInput
|
|
296
304
|
attr_accessor arn: ::String
|
|
297
305
|
SENSITIVE: []
|
|
@@ -713,6 +721,7 @@ module Aws::BillingConductor
|
|
|
713
721
|
|
|
714
722
|
class Tiering
|
|
715
723
|
attr_accessor free_tier: Types::FreeTierConfig
|
|
724
|
+
attr_accessor custom_tiers: ::Array[Types::CustomTier]
|
|
716
725
|
SENSITIVE: []
|
|
717
726
|
end
|
|
718
727
|
|
|
@@ -842,6 +851,7 @@ module Aws::BillingConductor
|
|
|
842
851
|
|
|
843
852
|
class UpdateTieringInput
|
|
844
853
|
attr_accessor free_tier: Types::UpdateFreeTierConfig
|
|
854
|
+
attr_accessor custom_tiers: ::Array[Types::CustomTier]
|
|
845
855
|
SENSITIVE: []
|
|
846
856
|
end
|
|
847
857
|
|
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.
|
|
4
|
+
version: 1.63.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.256.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.256.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|