aws-sdk-budgets 1.93.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-budgets/client.rb +10 -10
- data/lib/aws-sdk-budgets/client_api.rb +6 -0
- data/lib/aws-sdk-budgets/customizations.rb +0 -8
- data/lib/aws-sdk-budgets/errors.rb +16 -0
- data/lib/aws-sdk-budgets/types.rb +27 -10
- data/lib/aws-sdk-budgets.rb +1 -1
- data/sig/client.rbs +4 -4
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +8 -3
- 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,16 @@
|
|
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
|
+
|
9
|
+
1.94.0 (2025-09-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for custom time periods in budget configuration
|
13
|
+
|
4
14
|
1.93.0 (2025-08-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|
@@ -554,7 +554,7 @@ module Aws::Budgets
|
|
554
554
|
# include_discount: false,
|
555
555
|
# use_amortized: false,
|
556
556
|
# },
|
557
|
-
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
557
|
+
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY, CUSTOM
|
558
558
|
# time_period: {
|
559
559
|
# start: Time.now,
|
560
560
|
# end: Time.now,
|
@@ -613,7 +613,7 @@ module Aws::Budgets
|
|
613
613
|
# billing_view_arn: "BillingViewArn",
|
614
614
|
# health_status: {
|
615
615
|
# status: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
616
|
-
# status_reason: "BILLING_VIEW_NO_ACCESS", # accepts BILLING_VIEW_NO_ACCESS, BILLING_VIEW_UNHEALTHY, FILTER_INVALID
|
616
|
+
# status_reason: "BILLING_VIEW_NO_ACCESS", # accepts BILLING_VIEW_NO_ACCESS, BILLING_VIEW_UNHEALTHY, FILTER_INVALID, MULTI_YEAR_HISTORICAL_DATA_DISABLED
|
617
617
|
# last_updated_time: Time.now,
|
618
618
|
# },
|
619
619
|
# },
|
@@ -1074,7 +1074,7 @@ module Aws::Budgets
|
|
1074
1074
|
# resp.budget.cost_types.include_support #=> Boolean
|
1075
1075
|
# resp.budget.cost_types.include_discount #=> Boolean
|
1076
1076
|
# resp.budget.cost_types.use_amortized #=> Boolean
|
1077
|
-
# resp.budget.time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY"
|
1077
|
+
# resp.budget.time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY", "CUSTOM"
|
1078
1078
|
# resp.budget.time_period.start #=> Time
|
1079
1079
|
# resp.budget.time_period.end #=> Time
|
1080
1080
|
# resp.budget.calculated_spend.actual_spend.amount #=> String
|
@@ -1111,7 +1111,7 @@ module Aws::Budgets
|
|
1111
1111
|
# resp.budget.metrics[0] #=> String, one of "BlendedCost", "UnblendedCost", "AmortizedCost", "NetUnblendedCost", "NetAmortizedCost", "UsageQuantity", "NormalizedUsageAmount", "Hours"
|
1112
1112
|
# resp.budget.billing_view_arn #=> String
|
1113
1113
|
# resp.budget.health_status.status #=> String, one of "HEALTHY", "UNHEALTHY"
|
1114
|
-
# resp.budget.health_status.status_reason #=> String, one of "BILLING_VIEW_NO_ACCESS", "BILLING_VIEW_UNHEALTHY", "FILTER_INVALID"
|
1114
|
+
# resp.budget.health_status.status_reason #=> String, one of "BILLING_VIEW_NO_ACCESS", "BILLING_VIEW_UNHEALTHY", "FILTER_INVALID", "MULTI_YEAR_HISTORICAL_DATA_DISABLED"
|
1115
1115
|
# resp.budget.health_status.last_updated_time #=> Time
|
1116
1116
|
#
|
1117
1117
|
# @overload describe_budget(params = {})
|
@@ -1515,7 +1515,7 @@ module Aws::Budgets
|
|
1515
1515
|
# resp.budget_performance_history.cost_types.include_support #=> Boolean
|
1516
1516
|
# resp.budget_performance_history.cost_types.include_discount #=> Boolean
|
1517
1517
|
# resp.budget_performance_history.cost_types.use_amortized #=> Boolean
|
1518
|
-
# resp.budget_performance_history.time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY"
|
1518
|
+
# resp.budget_performance_history.time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY", "CUSTOM"
|
1519
1519
|
# resp.budget_performance_history.billing_view_arn #=> String
|
1520
1520
|
# resp.budget_performance_history.budgeted_and_actual_amounts_list #=> Array
|
1521
1521
|
# resp.budget_performance_history.budgeted_and_actual_amounts_list[0].budgeted_amount.amount #=> String
|
@@ -1599,7 +1599,7 @@ module Aws::Budgets
|
|
1599
1599
|
# resp.budgets[0].cost_types.include_support #=> Boolean
|
1600
1600
|
# resp.budgets[0].cost_types.include_discount #=> Boolean
|
1601
1601
|
# resp.budgets[0].cost_types.use_amortized #=> Boolean
|
1602
|
-
# resp.budgets[0].time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY"
|
1602
|
+
# resp.budgets[0].time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY", "CUSTOM"
|
1603
1603
|
# resp.budgets[0].time_period.start #=> Time
|
1604
1604
|
# resp.budgets[0].time_period.end #=> Time
|
1605
1605
|
# resp.budgets[0].calculated_spend.actual_spend.amount #=> String
|
@@ -1636,7 +1636,7 @@ module Aws::Budgets
|
|
1636
1636
|
# resp.budgets[0].metrics[0] #=> String, one of "BlendedCost", "UnblendedCost", "AmortizedCost", "NetUnblendedCost", "NetAmortizedCost", "UsageQuantity", "NormalizedUsageAmount", "Hours"
|
1637
1637
|
# resp.budgets[0].billing_view_arn #=> String
|
1638
1638
|
# resp.budgets[0].health_status.status #=> String, one of "HEALTHY", "UNHEALTHY"
|
1639
|
-
# resp.budgets[0].health_status.status_reason #=> String, one of "BILLING_VIEW_NO_ACCESS", "BILLING_VIEW_UNHEALTHY", "FILTER_INVALID"
|
1639
|
+
# resp.budgets[0].health_status.status_reason #=> String, one of "BILLING_VIEW_NO_ACCESS", "BILLING_VIEW_UNHEALTHY", "FILTER_INVALID", "MULTI_YEAR_HISTORICAL_DATA_DISABLED"
|
1640
1640
|
# resp.budgets[0].health_status.last_updated_time #=> Time
|
1641
1641
|
# resp.next_token #=> String
|
1642
1642
|
#
|
@@ -1944,7 +1944,7 @@ module Aws::Budgets
|
|
1944
1944
|
# include_discount: false,
|
1945
1945
|
# use_amortized: false,
|
1946
1946
|
# },
|
1947
|
-
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
1947
|
+
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY, CUSTOM
|
1948
1948
|
# time_period: {
|
1949
1949
|
# start: Time.now,
|
1950
1950
|
# end: Time.now,
|
@@ -2003,7 +2003,7 @@ module Aws::Budgets
|
|
2003
2003
|
# billing_view_arn: "BillingViewArn",
|
2004
2004
|
# health_status: {
|
2005
2005
|
# status: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
2006
|
-
# status_reason: "BILLING_VIEW_NO_ACCESS", # accepts BILLING_VIEW_NO_ACCESS, BILLING_VIEW_UNHEALTHY, FILTER_INVALID
|
2006
|
+
# status_reason: "BILLING_VIEW_NO_ACCESS", # accepts BILLING_VIEW_NO_ACCESS, BILLING_VIEW_UNHEALTHY, FILTER_INVALID, MULTI_YEAR_HISTORICAL_DATA_DISABLED
|
2007
2007
|
# last_updated_time: Time.now,
|
2008
2008
|
# },
|
2009
2009
|
# },
|
@@ -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.
|
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.
|
@@ -276,9 +289,9 @@ module Aws::Budgets
|
|
276
289
|
#
|
277
290
|
# If you create your budget and don't specify a start date, Amazon
|
278
291
|
# Web Services defaults to the start of your chosen time period
|
279
|
-
# (DAILY, MONTHLY, QUARTERLY, or
|
280
|
-
# created your budget on January 24, 2018, chose `DAILY`, and
|
281
|
-
# set a start date, Amazon Web Services set your start date to
|
292
|
+
# (DAILY, MONTHLY, QUARTERLY, ANNUALLY, or CUSTOM). For example, if
|
293
|
+
# you created your budget on January 24, 2018, chose `DAILY`, and
|
294
|
+
# didn't set a start date, Amazon Web Services set your start date to
|
282
295
|
# `01/24/18 00:00 UTC`. If you chose `MONTHLY`, Amazon Web Services
|
283
296
|
# set your start date to `01/01/18 00:00 UTC`. If you didn't specify
|
284
297
|
# an end date, Amazon Web Services set your end date to `06/15/87
|
@@ -1547,6 +1560,10 @@ module Aws::Budgets
|
|
1547
1560
|
#
|
1548
1561
|
# * `FILTER_INVALID`: The filter contains reference to an account you
|
1549
1562
|
# do not have access to.
|
1563
|
+
#
|
1564
|
+
# * `MULTI_YEAR_HISTORICAL_DATA_DISABLED`: The budget is not being
|
1565
|
+
# updated. Enable multi-year historical data in your Cost Management
|
1566
|
+
# preferences.
|
1550
1567
|
# @return [String]
|
1551
1568
|
#
|
1552
1569
|
# @!attribute [rw] last_updated_time
|
@@ -1985,13 +2002,13 @@ module Aws::Budgets
|
|
1985
2002
|
# @!attribute [rw] start
|
1986
2003
|
# The start date for a budget. If you created your budget and didn't
|
1987
2004
|
# specify a start date, Amazon Web Services defaults to the start of
|
1988
|
-
# your chosen time period (DAILY, MONTHLY, QUARTERLY, or
|
1989
|
-
# For example, if you created your budget on January 24,
|
1990
|
-
# `DAILY`, and didn't set a start date, Amazon Web
|
1991
|
-
# start date to `01/24/18 00:00 UTC`. If you chose
|
1992
|
-
# Web Services set your start date to `01/01/18
|
1993
|
-
# defaults are the same for the Billing and Cost
|
1994
|
-
# and the API.
|
2005
|
+
# your chosen time period (DAILY, MONTHLY, QUARTERLY, ANNUALLY, or
|
2006
|
+
# CUSTOM). For example, if you created your budget on January 24,
|
2007
|
+
# 2018, chose `DAILY`, and didn't set a start date, Amazon Web
|
2008
|
+
# Services set your start date to `01/24/18 00:00 UTC`. If you chose
|
2009
|
+
# `MONTHLY`, Amazon Web Services set your start date to `01/01/18
|
2010
|
+
# 00:00 UTC`. The defaults are the same for the Billing and Cost
|
2011
|
+
# Management console and the API.
|
1995
2012
|
#
|
1996
2013
|
# You can change your start date with the `UpdateBudget` operation.
|
1997
2014
|
# @return [Time]
|
data/lib/aws-sdk-budgets.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -109,7 +109,7 @@ module Aws
|
|
109
109
|
include_discount: bool?,
|
110
110
|
use_amortized: bool?
|
111
111
|
}?,
|
112
|
-
time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY"),
|
112
|
+
time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY" | "CUSTOM"),
|
113
113
|
time_period: {
|
114
114
|
start: ::Time?,
|
115
115
|
end: ::Time?
|
@@ -162,7 +162,7 @@ module Aws
|
|
162
162
|
billing_view_arn: ::String?,
|
163
163
|
health_status: {
|
164
164
|
status: ("HEALTHY" | "UNHEALTHY")?,
|
165
|
-
status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID")?,
|
165
|
+
status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID" | "MULTI_YEAR_HISTORICAL_DATA_DISABLED")?,
|
166
166
|
last_updated_time: ::Time?
|
167
167
|
}?
|
168
168
|
},
|
@@ -581,7 +581,7 @@ module Aws
|
|
581
581
|
include_discount: bool?,
|
582
582
|
use_amortized: bool?
|
583
583
|
}?,
|
584
|
-
time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY"),
|
584
|
+
time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY" | "CUSTOM"),
|
585
585
|
time_period: {
|
586
586
|
start: ::Time?,
|
587
587
|
end: ::Time?
|
@@ -634,7 +634,7 @@ module Aws
|
|
634
634
|
billing_view_arn: ::String?,
|
635
635
|
health_status: {
|
636
636
|
status: ("HEALTHY" | "UNHEALTHY")?,
|
637
|
-
status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID")?,
|
637
|
+
status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID" | "MULTI_YEAR_HISTORICAL_DATA_DISABLED")?,
|
638
638
|
last_updated_time: ::Time?
|
639
639
|
}?
|
640
640
|
}
|
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,13 +54,18 @@ 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
|
60
65
|
attr_accessor planned_budget_limits: ::Hash[::String, Types::Spend]
|
61
66
|
attr_accessor cost_filters: ::Hash[::String, ::Array[::String]]
|
62
67
|
attr_accessor cost_types: Types::CostTypes
|
63
|
-
attr_accessor time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY")
|
68
|
+
attr_accessor time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY" | "CUSTOM")
|
64
69
|
attr_accessor time_period: Types::TimePeriod
|
65
70
|
attr_accessor calculated_spend: Types::CalculatedSpend
|
66
71
|
attr_accessor budget_type: ("USAGE" | "COST" | "RI_UTILIZATION" | "RI_COVERAGE" | "SAVINGS_PLANS_UTILIZATION" | "SAVINGS_PLANS_COVERAGE")
|
@@ -84,7 +89,7 @@ module Aws::Budgets
|
|
84
89
|
attr_accessor budget_type: ("USAGE" | "COST" | "RI_UTILIZATION" | "RI_COVERAGE" | "SAVINGS_PLANS_UTILIZATION" | "SAVINGS_PLANS_COVERAGE")
|
85
90
|
attr_accessor cost_filters: ::Hash[::String, ::Array[::String]]
|
86
91
|
attr_accessor cost_types: Types::CostTypes
|
87
|
-
attr_accessor time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY")
|
92
|
+
attr_accessor time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY" | "CUSTOM")
|
88
93
|
attr_accessor billing_view_arn: ::String
|
89
94
|
attr_accessor budgeted_and_actual_amounts_list: ::Array[Types::BudgetedAndActualAmounts]
|
90
95
|
SENSITIVE: []
|
@@ -420,7 +425,7 @@ module Aws::Budgets
|
|
420
425
|
|
421
426
|
class HealthStatus
|
422
427
|
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
423
|
-
attr_accessor status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID")
|
428
|
+
attr_accessor status_reason: ("BILLING_VIEW_NO_ACCESS" | "BILLING_VIEW_UNHEALTHY" | "FILTER_INVALID" | "MULTI_YEAR_HISTORICAL_DATA_DISABLED")
|
424
429
|
attr_accessor last_updated_time: ::Time
|
425
430
|
SENSITIVE: []
|
426
431
|
end
|