aws-sdk-budgets 1.87.0 → 1.88.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: 50ffeae8505cf89dca612c15ccea766fa6eb001680b99a513b1934e9f03fd826
4
- data.tar.gz: b43a9fa47ee3cbecc9fc8b5c97283e82957a00f56bf8c30f2568331b7fbd7396
3
+ metadata.gz: 5d7a27034802a7314eabfd4840e6e67f909068a45afa94cad05e908bdb9445a4
4
+ data.tar.gz: 23df4963998c8051e7f4d2e5de19d6aa3c9ea4c106baf7ddce49bf7fa9b8cc18
5
5
  SHA512:
6
- metadata.gz: e071bccdc3a38461022811de96ccbe00554ae086f5b30567ff2327f1cd58bbd2a98901426a3d92a411a6b650e5d2a09cc2a2903d255920666c10748322605366
7
- data.tar.gz: 1adc64957a07e911b1ac15a5b297104cb464211787f2a7a46c558a67420c80e4eedd0a66054ece46e08ba0d7642061da91b281af74bf01d7e37c13dc01517953
6
+ metadata.gz: c943dd0fc555e0542fdd1dc53240f1f524cae92f9235f8e552211fcf04b53460c8382527701cae21931fbc5b33f2233360a0567665296110bda487a95eab6ee9
7
+ data.tar.gz: d4288145a9d05c7a489b5c3a556ddfed13211008bf0e310c2fe78939591b588f7913816a1965eafd1da8333451cb42cdf9db0dfeb8a66c905486d9a8875d1544
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2025-07-25)
5
+ ------------------
6
+
7
+ * Feature - Adds IPv6 and PrivateLink support for AWS Budgets in IAD.
8
+
4
9
  1.87.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.87.0
1
+ 1.88.0
@@ -2251,7 +2251,7 @@ module Aws::Budgets
2251
2251
  tracer: tracer
2252
2252
  )
2253
2253
  context[:gem_name] = 'aws-sdk-budgets'
2254
- context[:gem_version] = '1.87.0'
2254
+ context[:gem_version] = '1.88.0'
2255
2255
  Seahorse::Client::Request.new(handlers, context)
2256
2256
  end
2257
2257
 
@@ -10,11 +10,6 @@
10
10
  module Aws::Budgets
11
11
  # Endpoint parameters used to influence endpoints per request.
12
12
  #
13
- # @!attribute region
14
- # The AWS region used to dispatch the request.
15
- #
16
- # @return [String]
17
- #
18
13
  # @!attribute use_dual_stack
19
14
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
15
  #
@@ -30,39 +25,44 @@ module Aws::Budgets
30
25
  #
31
26
  # @return [String]
32
27
  #
28
+ # @!attribute region
29
+ # The AWS region used to dispatch the request.
30
+ #
31
+ # @return [String]
32
+ #
33
33
  EndpointParameters = Struct.new(
34
- :region,
35
34
  :use_dual_stack,
36
35
  :use_fips,
37
36
  :endpoint,
37
+ :region,
38
38
  ) do
39
39
  include Aws::Structure
40
40
 
41
41
  # @api private
42
42
  class << self
43
43
  PARAM_MAP = {
44
- 'Region' => :region,
45
44
  'UseDualStack' => :use_dual_stack,
46
45
  'UseFIPS' => :use_fips,
47
46
  'Endpoint' => :endpoint,
47
+ 'Region' => :region,
48
48
  }.freeze
49
49
  end
50
50
 
51
51
  def initialize(options = {})
52
- self[:region] = options[:region]
53
52
  self[:use_dual_stack] = options[:use_dual_stack]
54
53
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
54
  self[:use_fips] = options[:use_fips]
56
55
  self[:use_fips] = false if self[:use_fips].nil?
57
56
  self[:endpoint] = options[:endpoint]
57
+ self[:region] = options[:region]
58
58
  end
59
59
 
60
60
  def self.create(config, options={})
61
61
  new({
62
- region: config.region,
63
62
  use_dual_stack: config.use_dualstack_endpoint,
64
63
  use_fips: config.use_fips_endpoint,
65
64
  endpoint: (config.endpoint.to_s unless config.regional_endpoint),
65
+ region: config.region,
66
66
  }.merge(options))
67
67
  end
68
68
  end
@@ -21,43 +21,37 @@ module Aws::Budgets
21
21
  end
22
22
  if Aws::Endpoints::Matchers.set?(parameters.region)
23
23
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
25
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "us-east-1"}]})
26
- end
27
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
28
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.amazonaws.com.cn", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "cn-northwest-1"}]})
29
- end
30
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
31
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.c2s.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "us-iso-east-1"}]})
24
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
25
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.us-east-1.api.aws", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-east-1"}]})
32
26
  end
33
27
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
34
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.sc2s.sgov.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "us-isob-east-1"}]})
28
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.sc2s.sgov.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-isob-east-1"}]})
35
29
  end
36
30
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && 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.global.cloud.adc-e.uk", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "eu-isoe-west-1"}]})
31
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.cloud.adc-e.uk", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "eu-isoe-west-1"}]})
38
32
  end
39
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)
40
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.csp.hci.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "budgets", "signingRegion" => "us-isof-south-1"}]})
34
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.global.csp.hci.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-isof-south-1"}]})
41
35
  end
42
36
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
43
37
  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"))
44
- return Aws::Endpoints::Endpoint.new(url: "https://budgets-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
38
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets-fips.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
45
39
  end
46
40
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
47
41
  end
48
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
42
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
49
43
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
50
- return Aws::Endpoints::Endpoint.new(url: "https://budgets-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets-fips.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
51
45
  end
52
46
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
53
47
  end
54
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
48
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
55
49
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
56
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
50
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
57
51
  end
58
52
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
59
53
  end
60
- return Aws::Endpoints::Endpoint.new(url: "https://budgets.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
54
+ return Aws::Endpoints::Endpoint.new(url: "https://budgets.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
61
55
  end
62
56
  end
63
57
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -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.87.0'
57
+ GEM_VERSION = '1.88.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.87.0
4
+ version: 1.88.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services