aws-sdk-bcmpricingcalculator 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bcmpricingcalculator/client.rb +99 -7
- data/lib/aws-sdk-bcmpricingcalculator/client_api.rb +5 -0
- data/lib/aws-sdk-bcmpricingcalculator/types.rb +6 -6
- data/lib/aws-sdk-bcmpricingcalculator.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a849eb3b2fa6c915f425f2a3fc4eef5e7d12c7e8c0ea3aba4c569efa13ea40c1
|
4
|
+
data.tar.gz: 60b05c56a29e47562585fa7e1f7e08d14f2ea9c4b7ac37c3160cf8755f92d227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a63e8b326c7ac7828a6acb80b314585e493c19ab4d51bf4570a6b52090d3eb09decc1c7e29d13dfb90ca3666c7e6c9b7c4a5d98c362dd0e5d6d8a08939fc6b53
|
7
|
+
data.tar.gz: a355ad3d0dc46f2b28f14ddf5143ae585b9f00147be8eed6de32df91ab7dc8dc13fbb04a3984c348d0c738df9aa28243305ce1be71a0ec6a65c46be0dfea91be
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2025-01-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added ConflictException error type in DeleteBillScenario, BatchDeleteBillScenarioCommitmentModification, BatchDeleteBillScenarioUsageModification, BatchUpdateBillScenarioUsageModification, and BatchUpdateBillScenarioCommitmentModification API operations.
|
8
|
+
|
9
|
+
1.3.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.2.0 (2024-12-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -257,11 +257,34 @@ module Aws::BCMPricingCalculator
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -458,6 +481,14 @@ module Aws::BCMPricingCalculator
|
|
458
481
|
# Reserved Instances commitments that you want to model in a Bill
|
459
482
|
# Scenario.
|
460
483
|
#
|
484
|
+
# <note markdown="1"> The `BatchCreateBillScenarioCommitmentModification` operation doesn't
|
485
|
+
# have its own IAM permission. To authorize this operation for Amazon
|
486
|
+
# Web Services principals, include the permission
|
487
|
+
# `bcm-pricing-calculator:CreateBillScenarioCommitmentModification` in
|
488
|
+
# your policies.
|
489
|
+
#
|
490
|
+
# </note>
|
491
|
+
#
|
461
492
|
# @option params [required, String] :bill_scenario_id
|
462
493
|
# The ID of the Bill Scenario for which you want to create the modeled
|
463
494
|
# commitment.
|
@@ -537,6 +568,14 @@ module Aws::BCMPricingCalculator
|
|
537
568
|
# Create Amazon Web Services service usage that you want to model in a
|
538
569
|
# Bill Scenario.
|
539
570
|
#
|
571
|
+
# <note markdown="1"> The `BatchCreateBillScenarioUsageModification` operation doesn't have
|
572
|
+
# its own IAM permission. To authorize this operation for Amazon Web
|
573
|
+
# Services principals, include the permission
|
574
|
+
# `bcm-pricing-calculator:CreateBillScenarioUsageModification` in your
|
575
|
+
# policies.
|
576
|
+
#
|
577
|
+
# </note>
|
578
|
+
#
|
540
579
|
# @option params [required, String] :bill_scenario_id
|
541
580
|
# The ID of the Bill Scenario for which you want to create the modeled
|
542
581
|
# usage.
|
@@ -681,6 +720,13 @@ module Aws::BCMPricingCalculator
|
|
681
720
|
# Create Amazon Web Services service usage that you want to model in a
|
682
721
|
# Workload Estimate.
|
683
722
|
#
|
723
|
+
# <note markdown="1"> The `BatchCreateWorkloadEstimateUsage` operation doesn't have its own
|
724
|
+
# IAM permission. To authorize this operation for Amazon Web Services
|
725
|
+
# principals, include the permission
|
726
|
+
# `bcm-pricing-calculator:CreateWorkloadEstimateUsage` in your policies.
|
727
|
+
#
|
728
|
+
# </note>
|
729
|
+
#
|
684
730
|
# @option params [required, String] :workload_estimate_id
|
685
731
|
# The ID of the Workload estimate for which you want to create the
|
686
732
|
# modeled usage.
|
@@ -823,6 +869,14 @@ module Aws::BCMPricingCalculator
|
|
823
869
|
# BillScenarioCommitmentModificationAction][1] of [
|
824
870
|
# BatchCreateBillScenarioCommitmentModification][2] operation.
|
825
871
|
#
|
872
|
+
# <note markdown="1"> The `BatchDeleteBillScenarioCommitmentModification` operation doesn't
|
873
|
+
# have its own IAM permission. To authorize this operation for Amazon
|
874
|
+
# Web Services principals, include the permission
|
875
|
+
# `bcm-pricing-calculator:DeleteBillScenarioCommitmentModification` in
|
876
|
+
# your policies.
|
877
|
+
#
|
878
|
+
# </note>
|
879
|
+
#
|
826
880
|
#
|
827
881
|
#
|
828
882
|
# [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BillScenarioCommitmentModificationAction.html
|
@@ -867,6 +921,14 @@ module Aws::BCMPricingCalculator
|
|
867
921
|
# of a existing usage. If you want model removal of an existing usage,
|
868
922
|
# see [ BatchUpdateBillScenarioUsageModification][1].
|
869
923
|
#
|
924
|
+
# <note markdown="1"> The `BatchDeleteBillScenarioUsageModification` operation doesn't have
|
925
|
+
# its own IAM permission. To authorize this operation for Amazon Web
|
926
|
+
# Services principals, include the permission
|
927
|
+
# `bcm-pricing-calculator:DeleteBillScenarioUsageModification` in your
|
928
|
+
# policies.
|
929
|
+
#
|
930
|
+
# </note>
|
931
|
+
#
|
870
932
|
#
|
871
933
|
#
|
872
934
|
# [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateBillScenarioUsageModification.html
|
@@ -910,6 +972,13 @@ module Aws::BCMPricingCalculator
|
|
910
972
|
# removal) of a existing usage. If you want model removal of an existing
|
911
973
|
# usage, see [ BatchUpdateWorkloadEstimateUsage][1].
|
912
974
|
#
|
975
|
+
# <note markdown="1"> The `BatchDeleteWorkloadEstimateUsage` operation doesn't have its own
|
976
|
+
# IAM permission. To authorize this operation for Amazon Web Services
|
977
|
+
# principals, include the permission
|
978
|
+
# `bcm-pricing-calculator:DeleteWorkloadEstimateUsage` in your policies.
|
979
|
+
#
|
980
|
+
# </note>
|
981
|
+
#
|
913
982
|
#
|
914
983
|
#
|
915
984
|
# [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateWorkloadEstimateUsage.html
|
@@ -951,6 +1020,14 @@ module Aws::BCMPricingCalculator
|
|
951
1020
|
# Update a newly added or existing commitment. You can update the
|
952
1021
|
# commitment group based on a commitment ID and a Bill scenario ID.
|
953
1022
|
#
|
1023
|
+
# <note markdown="1"> The `BatchUpdateBillScenarioCommitmentModification` operation doesn't
|
1024
|
+
# have its own IAM permission. To authorize this operation for Amazon
|
1025
|
+
# Web Services principals, include the permission
|
1026
|
+
# `bcm-pricing-calculator:UpdateBillScenarioCommitmentModification` in
|
1027
|
+
# your policies.
|
1028
|
+
#
|
1029
|
+
# </note>
|
1030
|
+
#
|
954
1031
|
# @option params [required, String] :bill_scenario_id
|
955
1032
|
# The ID of the Bill Scenario for which you want to modify the
|
956
1033
|
# commitment group of a modeled commitment.
|
@@ -1005,6 +1082,14 @@ module Aws::BCMPricingCalculator
|
|
1005
1082
|
# amounts, usage hour, and usage group based on a usage ID and a Bill
|
1006
1083
|
# scenario ID.
|
1007
1084
|
#
|
1085
|
+
# <note markdown="1"> The `BatchUpdateBillScenarioUsageModification` operation doesn't have
|
1086
|
+
# its own IAM permission. To authorize this operation for Amazon Web
|
1087
|
+
# Services principals, include the permission
|
1088
|
+
# `bcm-pricing-calculator:UpdateBillScenarioUsageModification` in your
|
1089
|
+
# policies.
|
1090
|
+
#
|
1091
|
+
# </note>
|
1092
|
+
#
|
1008
1093
|
# @option params [required, String] :bill_scenario_id
|
1009
1094
|
# The ID of the Bill Scenario for which you want to modify the usage
|
1010
1095
|
# lines.
|
@@ -1096,6 +1181,13 @@ module Aws::BCMPricingCalculator
|
|
1096
1181
|
# amounts and usage group based on a usage ID and a Workload estimate
|
1097
1182
|
# ID.
|
1098
1183
|
#
|
1184
|
+
# <note markdown="1"> The `BatchUpdateWorkloadEstimateUsage` operation doesn't have its own
|
1185
|
+
# IAM permission. To authorize this operation for Amazon Web Services
|
1186
|
+
# principals, include the permission
|
1187
|
+
# `bcm-pricing-calculator:UpdateWorkloadEstimateUsage` in your policies.
|
1188
|
+
#
|
1189
|
+
# </note>
|
1190
|
+
#
|
1099
1191
|
# @option params [required, String] :workload_estimate_id
|
1100
1192
|
# The ID of the Workload estimate for which you want to modify the usage
|
1101
1193
|
# lines.
|
@@ -1896,10 +1988,10 @@ module Aws::BCMPricingCalculator
|
|
1896
1988
|
# Filters to apply to the list of bill estimates.
|
1897
1989
|
#
|
1898
1990
|
# @option params [Types::FilterTimestamp] :created_at_filter
|
1899
|
-
# Filter bill estimates based on
|
1991
|
+
# Filter bill estimates based on the creation date.
|
1900
1992
|
#
|
1901
1993
|
# @option params [Types::FilterTimestamp] :expires_at_filter
|
1902
|
-
# Filter bill estimates based on
|
1994
|
+
# Filter bill estimates based on the expiration date.
|
1903
1995
|
#
|
1904
1996
|
# @option params [String] :next_token
|
1905
1997
|
# A token to retrieve the next page of results.
|
@@ -2103,10 +2195,10 @@ module Aws::BCMPricingCalculator
|
|
2103
2195
|
# Filters to apply to the list of bill scenarios.
|
2104
2196
|
#
|
2105
2197
|
# @option params [Types::FilterTimestamp] :created_at_filter
|
2106
|
-
# Filter bill scenarios based on
|
2198
|
+
# Filter bill scenarios based on the creation date.
|
2107
2199
|
#
|
2108
2200
|
# @option params [Types::FilterTimestamp] :expires_at_filter
|
2109
|
-
# Filter bill scenarios based on
|
2201
|
+
# Filter bill scenarios based on the expiration date.
|
2110
2202
|
#
|
2111
2203
|
# @option params [String] :next_token
|
2112
2204
|
# A token to retrieve the next page of results.
|
@@ -2286,10 +2378,10 @@ module Aws::BCMPricingCalculator
|
|
2286
2378
|
# Lists all workload estimates for the account.
|
2287
2379
|
#
|
2288
2380
|
# @option params [Types::FilterTimestamp] :created_at_filter
|
2289
|
-
# Filter workload estimates based on
|
2381
|
+
# Filter workload estimates based on the creation date.
|
2290
2382
|
#
|
2291
2383
|
# @option params [Types::FilterTimestamp] :expires_at_filter
|
2292
|
-
# Filter workload estimates based on
|
2384
|
+
# Filter workload estimates based on the expiration date.
|
2293
2385
|
#
|
2294
2386
|
# @option params [Array<Types::ListWorkloadEstimatesFilter>] :filters
|
2295
2387
|
# Filters to apply to the list of workload estimates.
|
@@ -2624,7 +2716,7 @@ module Aws::BCMPricingCalculator
|
|
2624
2716
|
tracer: tracer
|
2625
2717
|
)
|
2626
2718
|
context[:gem_name] = 'aws-sdk-bcmpricingcalculator'
|
2627
|
-
context[:gem_version] = '1.
|
2719
|
+
context[:gem_version] = '1.4.0'
|
2628
2720
|
Seahorse::Client::Request.new(handlers, context)
|
2629
2721
|
end
|
2630
2722
|
|
@@ -1155,6 +1155,7 @@ module Aws::BCMPricingCalculator
|
|
1155
1155
|
o.http_request_uri = "/"
|
1156
1156
|
o.input = Shapes::ShapeRef.new(shape: BatchDeleteBillScenarioCommitmentModificationRequest)
|
1157
1157
|
o.output = Shapes::ShapeRef.new(shape: BatchDeleteBillScenarioCommitmentModificationResponse)
|
1158
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1158
1159
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1159
1160
|
o.errors << Shapes::ShapeRef.new(shape: DataUnavailableException)
|
1160
1161
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -1169,6 +1170,7 @@ module Aws::BCMPricingCalculator
|
|
1169
1170
|
o.http_request_uri = "/"
|
1170
1171
|
o.input = Shapes::ShapeRef.new(shape: BatchDeleteBillScenarioUsageModificationRequest)
|
1171
1172
|
o.output = Shapes::ShapeRef.new(shape: BatchDeleteBillScenarioUsageModificationResponse)
|
1173
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1172
1174
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1173
1175
|
o.errors << Shapes::ShapeRef.new(shape: DataUnavailableException)
|
1174
1176
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
@@ -1199,6 +1201,7 @@ module Aws::BCMPricingCalculator
|
|
1199
1201
|
o.http_request_uri = "/"
|
1200
1202
|
o.input = Shapes::ShapeRef.new(shape: BatchUpdateBillScenarioCommitmentModificationRequest)
|
1201
1203
|
o.output = Shapes::ShapeRef.new(shape: BatchUpdateBillScenarioCommitmentModificationResponse)
|
1204
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1202
1205
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1203
1206
|
o.errors << Shapes::ShapeRef.new(shape: DataUnavailableException)
|
1204
1207
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -1213,6 +1216,7 @@ module Aws::BCMPricingCalculator
|
|
1213
1216
|
o.http_request_uri = "/"
|
1214
1217
|
o.input = Shapes::ShapeRef.new(shape: BatchUpdateBillScenarioUsageModificationRequest)
|
1215
1218
|
o.output = Shapes::ShapeRef.new(shape: BatchUpdateBillScenarioUsageModificationResponse)
|
1219
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1216
1220
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1217
1221
|
o.errors << Shapes::ShapeRef.new(shape: DataUnavailableException)
|
1218
1222
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
@@ -1302,6 +1306,7 @@ module Aws::BCMPricingCalculator
|
|
1302
1306
|
o.http_request_uri = "/"
|
1303
1307
|
o.input = Shapes::ShapeRef.new(shape: DeleteBillScenarioRequest)
|
1304
1308
|
o.output = Shapes::ShapeRef.new(shape: DeleteBillScenarioResponse)
|
1309
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1305
1310
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1306
1311
|
o.errors << Shapes::ShapeRef.new(shape: DataUnavailableException)
|
1307
1312
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -2514,11 +2514,11 @@ module Aws::BCMPricingCalculator
|
|
2514
2514
|
# @return [Array<Types::ListBillEstimatesFilter>]
|
2515
2515
|
#
|
2516
2516
|
# @!attribute [rw] created_at_filter
|
2517
|
-
# Filter bill estimates based on
|
2517
|
+
# Filter bill estimates based on the creation date.
|
2518
2518
|
# @return [Types::FilterTimestamp]
|
2519
2519
|
#
|
2520
2520
|
# @!attribute [rw] expires_at_filter
|
2521
|
-
# Filter bill estimates based on
|
2521
|
+
# Filter bill estimates based on the expiration date.
|
2522
2522
|
# @return [Types::FilterTimestamp]
|
2523
2523
|
#
|
2524
2524
|
# @!attribute [rw] next_token
|
@@ -2673,11 +2673,11 @@ module Aws::BCMPricingCalculator
|
|
2673
2673
|
# @return [Array<Types::ListBillScenariosFilter>]
|
2674
2674
|
#
|
2675
2675
|
# @!attribute [rw] created_at_filter
|
2676
|
-
# Filter bill scenarios based on
|
2676
|
+
# Filter bill scenarios based on the creation date.
|
2677
2677
|
# @return [Types::FilterTimestamp]
|
2678
2678
|
#
|
2679
2679
|
# @!attribute [rw] expires_at_filter
|
2680
|
-
# Filter bill scenarios based on
|
2680
|
+
# Filter bill scenarios based on the expiration date.
|
2681
2681
|
# @return [Types::FilterTimestamp]
|
2682
2682
|
#
|
2683
2683
|
# @!attribute [rw] next_token
|
@@ -2834,11 +2834,11 @@ module Aws::BCMPricingCalculator
|
|
2834
2834
|
end
|
2835
2835
|
|
2836
2836
|
# @!attribute [rw] created_at_filter
|
2837
|
-
# Filter workload estimates based on
|
2837
|
+
# Filter workload estimates based on the creation date.
|
2838
2838
|
# @return [Types::FilterTimestamp]
|
2839
2839
|
#
|
2840
2840
|
# @!attribute [rw] expires_at_filter
|
2841
|
-
# Filter workload estimates based on
|
2841
|
+
# Filter workload estimates based on the expiration date.
|
2842
2842
|
# @return [Types::FilterTimestamp]
|
2843
2843
|
#
|
2844
2844
|
# @!attribute [rw] filters
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bcmpricingcalculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.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:
|
11
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|