aws-sdk-budgets 1.97.0 → 1.98.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: aa1f327c0dd4eadfcfa3a09207a2e83cbacad445f036829b180cba35d095190c
4
- data.tar.gz: 5d854d37b89339c0da2bf73f197c7bfff2963b513322918e530921b8f5d63f39
3
+ metadata.gz: 797a8ce13a41834e22841b2647bd9b076617540a3a08b8c5f9d447d30a23e92b
4
+ data.tar.gz: 6d2172ba9f64700328379b528e0ccecbdf8c9c4453cf854e98f828d3fc001d90
5
5
  SHA512:
6
- metadata.gz: 71f98e0ee63bfa4042af718001e0f27b15a6766a9c5c1f209f263aa148eaa4e3d7abe8b956d1477502674df63e912c76f58e42a2ff26552c389c51a53919ee2c
7
- data.tar.gz: 8b862d509be23bd6d58a392f984c6b90d71c23ee1a3243dbd102a123ec091d6d55c6b415a60c6651073d6fb358666aa6a3f174bfe15693dccc3c79ee3af8af8b
6
+ metadata.gz: ef183b9092914e9d99a957156c91fc9cbb4493b492c06685f12517b0d162dd7ebf6f9507797fe5c32e05f5d3fb34e94f62984ca3282207e6055f430c247b8e05
7
+ data.tar.gz: 84cf3f3e8c288155dd63b358e201d999189cb6c260104d2eda942acb1eb56eadf715009484cab3fd8ebb85b692d3ad4c782ada63912aae0dc3bb8cd145c6b00e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.98.0 (2025-11-03)
5
+ ------------------
6
+
7
+ * Feature - Fix the AWS Budgets endpoint for the aws-eusc partition.
8
+
4
9
  1.97.0 (2025-10-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.98.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.97.0'
2272
+ context[:gem_version] = '1.98.0'
2273
2273
  Seahorse::Client::Request.new(handlers, context)
2274
2274
  end
2275
2275
 
@@ -33,6 +33,12 @@ module Aws::Budgets
33
33
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
34
34
  return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.csp.hci.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-isof-south-1"}]})
35
35
  end
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
37
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.eusc-de-east-1.api.amazonwebservices.eu", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "eusc-de-east-1"}]})
38
+ end
39
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
40
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.eusc-de-east-1.api.amazonwebservices.eu", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "eusc-de-east-1"}]})
41
+ end
36
42
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
37
43
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
38
44
  return Aws::Endpoints::Endpoint.new(url: "https://budgets-fips.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
@@ -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.97.0'
57
+ GEM_VERSION = '1.98.0'
58
58
 
59
59
  end
60
60
 
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.97.0
4
+ version: 1.98.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services