aws-sdk-budgets 1.98.0 → 1.99.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-budgets/client.rb +1 -1
- data/lib/aws-sdk-budgets/client_api.rb +2 -0
- data/lib/aws-sdk-budgets/types.rb +1 -2
- data/lib/aws-sdk-budgets.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 030c9d97fb31d2f22abff71a1be55fdf8d950e847b641cb33a4c453ccf462b68
|
|
4
|
+
data.tar.gz: d7f257da919c68543fe1cc90687cd56846831cb9cf16ecc75e33487359e8b2e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 484bbd2b715d71c729af912bc198002da1255fb53abcd4b5bb3afe4b0761fd02e9816378d35b1d29143c34f172d1fff0b53ce26303c5af6b3ba4971f6db22c6f
|
|
7
|
+
data.tar.gz: ff7fe1b5c326c26a7306135a1f0a391d2c367b727a1ca6965b859aa37b63c2a7948a0ae7666c54cb1731e3863b3d38e2d342b50d20adb849f52049eb9841b865
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.99.0 (2025-11-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views.
|
|
8
|
+
|
|
4
9
|
1.98.0 (2025-11-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.99.0
|
|
@@ -921,6 +921,7 @@ module Aws::Budgets
|
|
|
921
921
|
o.errors << Shapes::ShapeRef.new(shape: ExpiredNextTokenException)
|
|
922
922
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
923
923
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
924
|
+
o.errors << Shapes::ShapeRef.new(shape: BillingViewHealthStatusException)
|
|
924
925
|
o[:pager] = Aws::Pager.new(
|
|
925
926
|
limit_key: "max_results",
|
|
926
927
|
tokens: {
|
|
@@ -1058,6 +1059,7 @@ module Aws::Budgets
|
|
|
1058
1059
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1059
1060
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1060
1061
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1062
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1061
1063
|
end)
|
|
1062
1064
|
|
|
1063
1065
|
api.add_operation(:update_budget_action, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1845,8 +1845,7 @@ module Aws::Budgets
|
|
|
1845
1845
|
include Aws::Structure
|
|
1846
1846
|
end
|
|
1847
1847
|
|
|
1848
|
-
# You've reached
|
|
1849
|
-
# a resource.
|
|
1848
|
+
# You've reached a Service Quota limit on this resource.
|
|
1850
1849
|
#
|
|
1851
1850
|
# @!attribute [rw] message
|
|
1852
1851
|
# The error message the exception carries.
|
data/lib/aws-sdk-budgets.rb
CHANGED