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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43c3f30cccac1003b97d1e537999dcebfd8b0b372ae3cc7918799f0bcd84e133
4
- data.tar.gz: ff6a4b9e3f0815c74f9a64562f6759f1bbba8a200d32d30f550291cc570f703f
3
+ metadata.gz: 6c8d5ff62f1e19a1930a52f47b38ea96a16eab516662b6fc4f97821c134c84b4
4
+ data.tar.gz: 5b71c0f1c77a120d3b2ab49a15cea54fb9eea4f73e9ff7dd85da6f929bad4533
5
5
  SHA512:
6
- metadata.gz: 72247ad0db97c4671723d83833afaa61f6a1417465f3da5625c6ecdd386de9ef8ef02fbe1bcaf903e967bf93d72ccf0efb845a607c1c32c00713ed08b3fc01d8
7
- data.tar.gz: cc2abca90daeeaaa30794e1f306df25b89d7b603ea54d704fe1e3202375b94e614f3350a48837a49b60684ce097a99ae8506cb4a39f0adac3cae1c9a5a79bc55
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.94.0
1
+ 1.95.0
@@ -2269,7 +2269,7 @@ module Aws::Budgets
2269
2269
  tracer: tracer
2270
2270
  )
2271
2271
  context[:gem_name] = 'aws-sdk-budgets'
2272
- context[:gem_version] = '1.94.0'
2272
+ context[:gem_version] = '1.95.0'
2273
2273
  Seahorse::Client::Request.new(handlers, context)
2274
2274
  end
2275
2275
 
@@ -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.
@@ -54,7 +54,7 @@ module Aws::Budgets
54
54
  autoload :EndpointProvider, 'aws-sdk-budgets/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-budgets/endpoints'
56
56
 
57
- GEM_VERSION = '1.94.0'
57
+ GEM_VERSION = '1.95.0'
58
58
 
59
59
  end
60
60
 
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
@@ -54,6 +54,11 @@ module Aws::Budgets
54
54
  SENSITIVE: []
55
55
  end
56
56
 
57
+ class BillingViewHealthStatusException
58
+ attr_accessor message: ::String
59
+ SENSITIVE: []
60
+ end
61
+
57
62
  class Budget
58
63
  attr_accessor budget_name: ::String
59
64
  attr_accessor budget_limit: Types::Spend
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-budgets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.94.0
4
+ version: 1.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services