aws-sdk-budgets 1.94.0 → 1.95.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 +6 -0
- data/lib/aws-sdk-budgets/errors.rb +16 -0
- data/lib/aws-sdk-budgets/types.rb +13 -0
- data/lib/aws-sdk-budgets.rb +1 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +5 -0
- 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: 6c8d5ff62f1e19a1930a52f47b38ea96a16eab516662b6fc4f97821c134c84b4
|
4
|
+
data.tar.gz: 5b71c0f1c77a120d3b2ab49a15cea54fb9eea4f73e9ff7dd85da6f929bad4533
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b608167e82851379311d72e47d94ad3fd4300f3a2265af31e2b6d7c4c68e28552e357dddef54b3d733a43fa014ae31afb5a10db071179c793d41f13a6771644
|
7
|
+
data.tar.gz: ccc389a5a433f80ece36998af335dd87ea3a927b543ab879ed1d0cbba789d3e3f13c40957412502f43e177d6744e392196abd875bf7abf20961d02674464ac8a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.95.0 (2025-09-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status
|
8
|
+
|
4
9
|
1.94.0 (2025-09-16)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|
@@ -32,6 +32,7 @@ module Aws::Budgets
|
|
32
32
|
AutoAdjustData = Shapes::StructureShape.new(name: 'AutoAdjustData')
|
33
33
|
AutoAdjustType = Shapes::StringShape.new(name: 'AutoAdjustType')
|
34
34
|
BillingViewArn = Shapes::StringShape.new(name: 'BillingViewArn')
|
35
|
+
BillingViewHealthStatusException = Shapes::StructureShape.new(name: 'BillingViewHealthStatusException')
|
35
36
|
Budget = Shapes::StructureShape.new(name: 'Budget')
|
36
37
|
BudgetName = Shapes::StringShape.new(name: 'BudgetName')
|
37
38
|
BudgetNotificationsForAccount = Shapes::StructureShape.new(name: 'BudgetNotificationsForAccount')
|
@@ -216,6 +217,9 @@ module Aws::Budgets
|
|
216
217
|
AutoAdjustData.add_member(:last_auto_adjust_time, Shapes::ShapeRef.new(shape: GenericTimestamp, location_name: "LastAutoAdjustTime"))
|
217
218
|
AutoAdjustData.struct_class = Types::AutoAdjustData
|
218
219
|
|
220
|
+
BillingViewHealthStatusException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "Message"))
|
221
|
+
BillingViewHealthStatusException.struct_class = Types::BillingViewHealthStatusException
|
222
|
+
|
219
223
|
Budget.add_member(:budget_name, Shapes::ShapeRef.new(shape: BudgetName, required: true, location_name: "BudgetName"))
|
220
224
|
Budget.add_member(:budget_limit, Shapes::ShapeRef.new(shape: Spend, location_name: "BudgetLimit"))
|
221
225
|
Budget.add_member(:planned_budget_limits, Shapes::ShapeRef.new(shape: PlannedBudgetLimits, location_name: "PlannedBudgetLimits"))
|
@@ -689,6 +693,7 @@ module Aws::Budgets
|
|
689
693
|
o.input = Shapes::ShapeRef.new(shape: CreateBudgetRequest)
|
690
694
|
o.output = Shapes::ShapeRef.new(shape: CreateBudgetResponse)
|
691
695
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
696
|
+
o.errors << Shapes::ShapeRef.new(shape: BillingViewHealthStatusException)
|
692
697
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
693
698
|
o.errors << Shapes::ShapeRef.new(shape: CreationLimitExceededException)
|
694
699
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateRecordException)
|
@@ -1049,6 +1054,7 @@ module Aws::Budgets
|
|
1049
1054
|
o.output = Shapes::ShapeRef.new(shape: UpdateBudgetResponse)
|
1050
1055
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
1051
1056
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1057
|
+
o.errors << Shapes::ShapeRef.new(shape: BillingViewHealthStatusException)
|
1052
1058
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1053
1059
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1054
1060
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
@@ -28,6 +28,7 @@ module Aws::Budgets
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {AccessDeniedException}
|
31
|
+
# * {BillingViewHealthStatusException}
|
31
32
|
# * {CreationLimitExceededException}
|
32
33
|
# * {DuplicateRecordException}
|
33
34
|
# * {ExpiredNextTokenException}
|
@@ -60,6 +61,21 @@ module Aws::Budgets
|
|
60
61
|
end
|
61
62
|
end
|
62
63
|
|
64
|
+
class BillingViewHealthStatusException < ServiceError
|
65
|
+
|
66
|
+
# @param [Seahorse::Client::RequestContext] context
|
67
|
+
# @param [String] message
|
68
|
+
# @param [Aws::Budgets::Types::BillingViewHealthStatusException] data
|
69
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
70
|
+
super(context, message, data)
|
71
|
+
end
|
72
|
+
|
73
|
+
# @return [String]
|
74
|
+
def message
|
75
|
+
@message || @data[:message]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
63
79
|
class CreationLimitExceededException < ServiceError
|
64
80
|
|
65
81
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -172,6 +172,19 @@ module Aws::Budgets
|
|
172
172
|
include Aws::Structure
|
173
173
|
end
|
174
174
|
|
175
|
+
# The billing view status must be HEALTHY to perform this action. Try
|
176
|
+
# again when the status is HEALTHY.
|
177
|
+
#
|
178
|
+
# @!attribute [rw] message
|
179
|
+
# The error message the exception carries.
|
180
|
+
# @return [String]
|
181
|
+
#
|
182
|
+
class BillingViewHealthStatusException < Struct.new(
|
183
|
+
:message)
|
184
|
+
SENSITIVE = []
|
185
|
+
include Aws::Structure
|
186
|
+
end
|
187
|
+
|
175
188
|
# Represents the output of the `CreateBudget` operation. The content
|
176
189
|
# consists of the detailed metadata and data file information, and the
|
177
190
|
# current status of the `budget` object.
|
data/lib/aws-sdk-budgets.rb
CHANGED
data/sig/errors.rbs
CHANGED
@@ -14,6 +14,9 @@ module Aws
|
|
14
14
|
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
15
|
def message: () -> ::String
|
16
16
|
end
|
17
|
+
class BillingViewHealthStatusException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
17
20
|
class CreationLimitExceededException < ::Aws::Errors::ServiceError
|
18
21
|
def message: () -> ::String
|
19
22
|
end
|
data/sig/types.rbs
CHANGED