aws-sdk-budgets 1.59.0 → 1.60.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 +9 -9
- data/lib/aws-sdk-budgets/client_api.rb +2 -1
- data/lib/aws-sdk-budgets/types.rb +18 -11
- data/lib/aws-sdk-budgets.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63a460a01f9e8e0b5c08ca5ff1c4f4512227a4abdd3791dc27c31b30a9ba2fb8
|
4
|
+
data.tar.gz: a0fa8fc709baa3a4cc4377730ca1a6c0534deca80e5c55fa485d4fae7aa84c1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be7ba75cde49a2a9c2de22df93ed3887677221ca981db1669212d444ad4d0dc6fece48290aebe6e4f0171ce3255bf43f43fdb26be5a76bfe16799bc192e2776f
|
7
|
+
data.tar.gz: 5d0e410b40d3be59bd58563a35db069801ed1e68433a85f4707bd143f7a8360f6e157a6d0448d4c598c0c4a4debfc37a8591a44f689c1e6ec4d0c5e758e4f00e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -1231,8 +1231,8 @@ module Aws::Budgets
|
|
1231
1231
|
# The account ID of the user. It's a 12-digit number.
|
1232
1232
|
#
|
1233
1233
|
# @option params [Integer] :max_results
|
1234
|
-
# An integer that
|
1235
|
-
#
|
1234
|
+
# An integer that represents how many budgets a paginated response
|
1235
|
+
# contains. The default is 50.
|
1236
1236
|
#
|
1237
1237
|
# @option params [String] :next_token
|
1238
1238
|
# A generic string.
|
@@ -1357,12 +1357,12 @@ module Aws::Budgets
|
|
1357
1357
|
# [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_budgets_DescribeBudgets.html#API_DescribeBudgets_Examples
|
1358
1358
|
#
|
1359
1359
|
# @option params [required, String] :account_id
|
1360
|
-
# The `accountId` that is associated with the budgets that you want
|
1361
|
-
#
|
1360
|
+
# The `accountId` that is associated with the budgets that you want to
|
1361
|
+
# describe.
|
1362
1362
|
#
|
1363
1363
|
# @option params [Integer] :max_results
|
1364
|
-
# An
|
1365
|
-
#
|
1364
|
+
# An integer that represents how many budgets a paginated response
|
1365
|
+
# contains. The default is 100.
|
1366
1366
|
#
|
1367
1367
|
# @option params [String] :next_token
|
1368
1368
|
# The pagination token that you include in your request to indicate the
|
@@ -1439,7 +1439,7 @@ module Aws::Budgets
|
|
1439
1439
|
#
|
1440
1440
|
# @option params [Integer] :max_results
|
1441
1441
|
# An optional integer that represents how many entries a paginated
|
1442
|
-
# response contains.
|
1442
|
+
# response contains.
|
1443
1443
|
#
|
1444
1444
|
# @option params [String] :next_token
|
1445
1445
|
# The pagination token that you include in your request to indicate the
|
@@ -1492,7 +1492,7 @@ module Aws::Budgets
|
|
1492
1492
|
#
|
1493
1493
|
# @option params [Integer] :max_results
|
1494
1494
|
# An optional integer that represents how many entries a paginated
|
1495
|
-
# response contains.
|
1495
|
+
# response contains.
|
1496
1496
|
#
|
1497
1497
|
# @option params [String] :next_token
|
1498
1498
|
# The pagination token that you include in your request to indicate the
|
@@ -1919,7 +1919,7 @@ module Aws::Budgets
|
|
1919
1919
|
params: params,
|
1920
1920
|
config: config)
|
1921
1921
|
context[:gem_name] = 'aws-sdk-budgets'
|
1922
|
-
context[:gem_version] = '1.
|
1922
|
+
context[:gem_version] = '1.60.0'
|
1923
1923
|
Seahorse::Client::Request.new(handlers, context)
|
1924
1924
|
end
|
1925
1925
|
|
@@ -101,6 +101,7 @@ module Aws::Budgets
|
|
101
101
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
102
102
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
103
103
|
MaxResultsBudgetNotifications = Shapes::IntegerShape.new(name: 'MaxResultsBudgetNotifications')
|
104
|
+
MaxResultsDescribeBudgets = Shapes::IntegerShape.new(name: 'MaxResultsDescribeBudgets')
|
104
105
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
105
106
|
Notification = Shapes::StructureShape.new(name: 'Notification')
|
106
107
|
NotificationState = Shapes::StringShape.new(name: 'NotificationState')
|
@@ -386,7 +387,7 @@ module Aws::Budgets
|
|
386
387
|
DescribeBudgetResponse.struct_class = Types::DescribeBudgetResponse
|
387
388
|
|
388
389
|
DescribeBudgetsRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AccountId"))
|
389
|
-
DescribeBudgetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
390
|
+
DescribeBudgetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsDescribeBudgets, location_name: "MaxResults"))
|
390
391
|
DescribeBudgetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: GenericString, location_name: "NextToken"))
|
391
392
|
DescribeBudgetsRequest.struct_class = Types::DescribeBudgetsRequest
|
392
393
|
|
@@ -1041,8 +1041,8 @@ module Aws::Budgets
|
|
1041
1041
|
# @return [String]
|
1042
1042
|
#
|
1043
1043
|
# @!attribute [rw] max_results
|
1044
|
-
# An integer that
|
1045
|
-
#
|
1044
|
+
# An integer that represents how many budgets a paginated response
|
1045
|
+
# contains. The default is 50.
|
1046
1046
|
# @return [Integer]
|
1047
1047
|
#
|
1048
1048
|
# @!attribute [rw] next_token
|
@@ -1159,13 +1159,13 @@ module Aws::Budgets
|
|
1159
1159
|
# Request of DescribeBudgets
|
1160
1160
|
#
|
1161
1161
|
# @!attribute [rw] account_id
|
1162
|
-
# The `accountId` that is associated with the budgets that you want
|
1163
|
-
#
|
1162
|
+
# The `accountId` that is associated with the budgets that you want to
|
1163
|
+
# describe.
|
1164
1164
|
# @return [String]
|
1165
1165
|
#
|
1166
1166
|
# @!attribute [rw] max_results
|
1167
|
-
# An
|
1168
|
-
#
|
1167
|
+
# An integer that represents how many budgets a paginated response
|
1168
|
+
# contains. The default is 100.
|
1169
1169
|
# @return [Integer]
|
1170
1170
|
#
|
1171
1171
|
# @!attribute [rw] next_token
|
@@ -1212,7 +1212,7 @@ module Aws::Budgets
|
|
1212
1212
|
#
|
1213
1213
|
# @!attribute [rw] max_results
|
1214
1214
|
# An optional integer that represents how many entries a paginated
|
1215
|
-
# response contains.
|
1215
|
+
# response contains.
|
1216
1216
|
# @return [Integer]
|
1217
1217
|
#
|
1218
1218
|
# @!attribute [rw] next_token
|
@@ -1264,7 +1264,7 @@ module Aws::Budgets
|
|
1264
1264
|
#
|
1265
1265
|
# @!attribute [rw] max_results
|
1266
1266
|
# An optional integer that represents how many entries a paginated
|
1267
|
-
# response contains.
|
1267
|
+
# response contains.
|
1268
1268
|
# @return [Integer]
|
1269
1269
|
#
|
1270
1270
|
# @!attribute [rw] next_token
|
@@ -1611,12 +1611,19 @@ module Aws::Budgets
|
|
1611
1611
|
|
1612
1612
|
# The amount of cost or usage that's measured for a budget.
|
1613
1613
|
#
|
1614
|
-
#
|
1614
|
+
# *Cost example:* A `Spend` for `3 USD` of costs has the following
|
1615
|
+
# parameters:
|
1616
|
+
#
|
1617
|
+
# * An `Amount` of `3`
|
1618
|
+
#
|
1619
|
+
# * A `Unit` of `USD`
|
1620
|
+
#
|
1621
|
+
# *Usage example:* A `Spend` for `3 GB` of S3 usage has the following
|
1615
1622
|
# parameters:
|
1616
1623
|
#
|
1617
1624
|
# * An `Amount` of `3`
|
1618
1625
|
#
|
1619
|
-
# * A `
|
1626
|
+
# * A `Unit` of `GB`
|
1620
1627
|
#
|
1621
1628
|
# @!attribute [rw] amount
|
1622
1629
|
# The cost or usage amount that's associated with a budget forecast,
|
@@ -1625,7 +1632,7 @@ module Aws::Budgets
|
|
1625
1632
|
#
|
1626
1633
|
# @!attribute [rw] unit
|
1627
1634
|
# The unit of measurement that's used for the budget forecast, actual
|
1628
|
-
# spend, or budget threshold
|
1635
|
+
# spend, or budget threshold.
|
1629
1636
|
# @return [String]
|
1630
1637
|
#
|
1631
1638
|
class Spend < Struct.new(
|
data/lib/aws-sdk-budgets.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-budgets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.60.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: 2023-09-
|
11
|
+
date: 2023-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|