aws-sdk-budgets 1.103.0 → 1.104.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: a085a69eedf4b655ad1bf3d432ae25bd0f818cade74a40d0559e45a1715b93a6
4
- data.tar.gz: 4e62d5966ab2816e91718fca1e731a566a19f825d13746c0b681d2a4e477de6f
3
+ metadata.gz: af1f576f40387af3dc90ec4f1df8ac9b3ff03ae3cda9056fbd2441730d9d68c1
4
+ data.tar.gz: aac2320d47690fe5918ea54faf6419675e5f4877247b6a40c300f0170e278878
5
5
  SHA512:
6
- metadata.gz: 78c8bdcaff943a48ead777249c8a72bf7b3929b42093ae9808223cbaa94683f0918068a5e56e9f70f3c47b42d5ad81f4990d65786408319f30874040c72701ed
7
- data.tar.gz: 01bf2bf02fdb58310277a4ff4c1b315dd0fb08e535cc7ec3d860f03b826782133738efe755402d621f7dea97103dce25b5e437c29a8291acd392c567abb70ca2
6
+ metadata.gz: ecc6de1ad96ff64db42da037d5dda6b4f8ccb78deb5c7ba4dae91a73fc01e4749ed44de068c635ad0b107fe6135f82c2dc274441acf932021ebce239aa3c9ccc
7
+ data.tar.gz: 96a7326bc9eb1790c0c881b3a35b9d11098b9c8d68120dcd40f8617f04c783c9432139d5778ed8e319b7ec81811c7b58735bf3b692d54676adeb46cf2271d9f2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.104.0 (2026-01-22)
5
+ ------------------
6
+
7
+ * Feature - Add Budget FilterExpression and Metrics fields to DescribeBudgetPerformanceHistory to support more granular filtering options.
8
+
4
9
  1.103.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.104.0
@@ -1524,6 +1524,28 @@ module Aws::Budgets
1524
1524
  # resp.budget_performance_history.budgeted_and_actual_amounts_list[0].actual_amount.unit #=> String
1525
1525
  # resp.budget_performance_history.budgeted_and_actual_amounts_list[0].time_period.start #=> Time
1526
1526
  # resp.budget_performance_history.budgeted_and_actual_amounts_list[0].time_period.end #=> Time
1527
+ # resp.budget_performance_history.filter_expression.or #=> Array
1528
+ # resp.budget_performance_history.filter_expression.or[0] #=> Types::Expression
1529
+ # resp.budget_performance_history.filter_expression.and #=> Array
1530
+ # resp.budget_performance_history.filter_expression.and[0] #=> Types::Expression
1531
+ # resp.budget_performance_history.filter_expression.not #=> Types::Expression
1532
+ # resp.budget_performance_history.filter_expression.dimensions.key #=> String, one of "AZ", "INSTANCE_TYPE", "LINKED_ACCOUNT", "LINKED_ACCOUNT_NAME", "OPERATION", "PURCHASE_TYPE", "REGION", "SERVICE", "SERVICE_CODE", "USAGE_TYPE", "USAGE_TYPE_GROUP", "RECORD_TYPE", "OPERATING_SYSTEM", "TENANCY", "SCOPE", "PLATFORM", "SUBSCRIPTION_ID", "LEGAL_ENTITY_NAME", "INVOICING_ENTITY", "DEPLOYMENT_OPTION", "DATABASE_ENGINE", "CACHE_ENGINE", "INSTANCE_TYPE_FAMILY", "BILLING_ENTITY", "RESERVATION_ID", "RESOURCE_ID", "RIGHTSIZING_TYPE", "SAVINGS_PLANS_TYPE", "SAVINGS_PLAN_ARN", "PAYMENT_OPTION", "RESERVATION_MODIFIED", "TAG_KEY", "COST_CATEGORY_NAME"
1533
+ # resp.budget_performance_history.filter_expression.dimensions.values #=> Array
1534
+ # resp.budget_performance_history.filter_expression.dimensions.values[0] #=> String
1535
+ # resp.budget_performance_history.filter_expression.dimensions.match_options #=> Array
1536
+ # resp.budget_performance_history.filter_expression.dimensions.match_options[0] #=> String, one of "EQUALS", "ABSENT", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "GREATER_THAN_OR_EQUAL", "CASE_SENSITIVE", "CASE_INSENSITIVE"
1537
+ # resp.budget_performance_history.filter_expression.tags.key #=> String
1538
+ # resp.budget_performance_history.filter_expression.tags.values #=> Array
1539
+ # resp.budget_performance_history.filter_expression.tags.values[0] #=> String
1540
+ # resp.budget_performance_history.filter_expression.tags.match_options #=> Array
1541
+ # resp.budget_performance_history.filter_expression.tags.match_options[0] #=> String, one of "EQUALS", "ABSENT", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "GREATER_THAN_OR_EQUAL", "CASE_SENSITIVE", "CASE_INSENSITIVE"
1542
+ # resp.budget_performance_history.filter_expression.cost_categories.key #=> String
1543
+ # resp.budget_performance_history.filter_expression.cost_categories.values #=> Array
1544
+ # resp.budget_performance_history.filter_expression.cost_categories.values[0] #=> String
1545
+ # resp.budget_performance_history.filter_expression.cost_categories.match_options #=> Array
1546
+ # resp.budget_performance_history.filter_expression.cost_categories.match_options[0] #=> String, one of "EQUALS", "ABSENT", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "GREATER_THAN_OR_EQUAL", "CASE_SENSITIVE", "CASE_INSENSITIVE"
1547
+ # resp.budget_performance_history.metrics #=> Array
1548
+ # resp.budget_performance_history.metrics[0] #=> String, one of "BlendedCost", "UnblendedCost", "AmortizedCost", "NetUnblendedCost", "NetAmortizedCost", "UsageQuantity", "NormalizedUsageAmount", "Hours"
1527
1549
  # resp.next_token #=> String
1528
1550
  #
1529
1551
  # @overload describe_budget_performance_history(params = {})
@@ -2269,7 +2291,7 @@ module Aws::Budgets
2269
2291
  tracer: tracer
2270
2292
  )
2271
2293
  context[:gem_name] = 'aws-sdk-budgets'
2272
- context[:gem_version] = '1.103.0'
2294
+ context[:gem_version] = '1.104.0'
2273
2295
  Seahorse::Client::Request.new(handlers, context)
2274
2296
  end
2275
2297
 
@@ -250,6 +250,8 @@ module Aws::Budgets
250
250
  BudgetPerformanceHistory.add_member(:time_unit, Shapes::ShapeRef.new(shape: TimeUnit, location_name: "TimeUnit"))
251
251
  BudgetPerformanceHistory.add_member(:billing_view_arn, Shapes::ShapeRef.new(shape: BillingViewArn, location_name: "BillingViewArn"))
252
252
  BudgetPerformanceHistory.add_member(:budgeted_and_actual_amounts_list, Shapes::ShapeRef.new(shape: BudgetedAndActualAmountsList, location_name: "BudgetedAndActualAmountsList"))
253
+ BudgetPerformanceHistory.add_member(:filter_expression, Shapes::ShapeRef.new(shape: Expression, location_name: "FilterExpression"))
254
+ BudgetPerformanceHistory.add_member(:metrics, Shapes::ShapeRef.new(shape: Metrics, location_name: "Metrics"))
253
255
  BudgetPerformanceHistory.struct_class = Types::BudgetPerformanceHistory
254
256
 
255
257
  BudgetedAndActualAmounts.add_member(:budgeted_amount, Shapes::ShapeRef.new(shape: Spend, location_name: "BudgetedAmount"))
@@ -425,6 +425,15 @@ module Aws::Budgets
425
425
  # which are compared to your actual costs or usage.
426
426
  # @return [Array<Types::BudgetedAndActualAmounts>]
427
427
  #
428
+ # @!attribute [rw] filter_expression
429
+ # The filtering dimensions for the budget and their corresponding
430
+ # values.
431
+ # @return [Types::Expression]
432
+ #
433
+ # @!attribute [rw] metrics
434
+ # The definition for how the budget data is aggregated.
435
+ # @return [Array<String>]
436
+ #
428
437
  class BudgetPerformanceHistory < Struct.new(
429
438
  :budget_name,
430
439
  :budget_type,
@@ -432,7 +441,9 @@ module Aws::Budgets
432
441
  :cost_types,
433
442
  :time_unit,
434
443
  :billing_view_arn,
435
- :budgeted_and_actual_amounts_list)
444
+ :budgeted_and_actual_amounts_list,
445
+ :filter_expression,
446
+ :metrics)
436
447
  SENSITIVE = []
437
448
  include Aws::Structure
438
449
  end
@@ -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.103.0'
57
+ GEM_VERSION = '1.104.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -92,6 +92,8 @@ module Aws::Budgets
92
92
  attr_accessor time_unit: ("DAILY" | "MONTHLY" | "QUARTERLY" | "ANNUALLY" | "CUSTOM")
93
93
  attr_accessor billing_view_arn: ::String
94
94
  attr_accessor budgeted_and_actual_amounts_list: ::Array[Types::BudgetedAndActualAmounts]
95
+ attr_accessor filter_expression: Types::Expression
96
+ attr_accessor metrics: ::Array[("BlendedCost" | "UnblendedCost" | "AmortizedCost" | "NetUnblendedCost" | "NetAmortizedCost" | "UsageQuantity" | "NormalizedUsageAmount" | "Hours")]
95
97
  SENSITIVE: []
96
98
  end
97
99
 
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.103.0
4
+ version: 1.104.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services