aws-sdk-costexplorer 1.133.0 → 1.134.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: 7f5996e5daef974fe812d68bcbf30f36349b00014da95c11872c7bef2c733eb6
4
- data.tar.gz: 655707f2efd99f9eb92bf3e3f8993219d2dc84913f2f5ae74bccc918c5923a77
3
+ metadata.gz: 5f9edb647ee798909973bb79190d7cdfa18ace160328901e2eb9aea9e0d10c1c
4
+ data.tar.gz: 9b2e714a38db04c509c66ce8aece9a26007adfc0642758c0b96d21628b21ae92
5
5
  SHA512:
6
- metadata.gz: 0f8103fced72f1f697f9761b92e22844ae723d7acd01204dcfc98371eee05f32ac9ef905eb3955fcc26bfaaa14f8a4645cc866387486c47ad18fe2d8ad37db31
7
- data.tar.gz: 7f868b54e19102935b41db25f54c616e4d748de6866ffd1b0938f8a0d4929f7d6fceba6aaab87a71784376769171bc7d61ad2d90b2f37d1d4b021d051b14ba6a
6
+ metadata.gz: 4d360f013066373c1109c9451cfffb832a67a6920e59bfd3b9f4853f171134e15b41c1a0dd4f25e8d14a54e35e7c041936c3aff382a213a595594128a1a18339
7
+ data.tar.gz: 863be09c95e0a3b2b65cc9af3f7e31da02451cdfe245b7b1998326d8302522f2a1821470f18c24615120e4b8f25cafc673b8e884fb6cc7f5fce01988da6a8ab6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.134.0 (2025-09-15)
5
+ ------------------
6
+
7
+ * Feature - Added endpoint support for eusc-de-east-1 region.
8
+
4
9
  1.133.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.133.0
1
+ 1.134.0
@@ -6113,7 +6113,7 @@ module Aws::CostExplorer
6113
6113
  tracer: tracer
6114
6114
  )
6115
6115
  context[:gem_name] = 'aws-sdk-costexplorer'
6116
- context[:gem_version] = '1.133.0'
6116
+ context[:gem_version] = '1.134.0'
6117
6117
  Seahorse::Client::Request.new(handlers, context)
6118
6118
  end
6119
6119
 
@@ -39,6 +39,9 @@ module Aws::CostExplorer
39
39
  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
40
  return Aws::Endpoints::Endpoint.new(url: "https://ce.us-isof-south-1.csp.hci.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-isof-south-1"}]})
41
41
  end
42
+ 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)
43
+ return Aws::Endpoints::Endpoint.new(url: "https://ce.eusc-de-east-1.api.amazonwebservices.eu", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "eusc-de-east-1"}]})
44
+ end
42
45
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
43
46
  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
47
  return Aws::Endpoints::Endpoint.new(url: "https://ce-fips.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
@@ -1173,7 +1173,7 @@ module Aws::CostExplorer
1173
1173
  #
1174
1174
  # Values include: BUNDLED\_DISCOUNT, CREDIT, OUT\_OF\_CYCLE\_CHARGE,
1175
1175
  # REFUND, RECURRING\_RESERVATION\_FEE, RESERVATION\_USAGE,
1176
- # RI\_VOLUME\_DISCOUNT, SAVINGS\_PLAN\_USAGE, SAVINGS\_PLAN\_NEGATION,
1176
+ # RI\_VOLUME\_DISCOUNT, SAVINGS\_PLAN\_USAGE,
1177
1177
  # SAVINGS\_PLAN\_RECURRING\_FEE, SUPPORT\_FEE, TAX,
1178
1178
  # UPFRONT\_RESERVATION\_FEE, USAGE\_CHANGE, COMMITMENT
1179
1179
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::CostExplorer
54
54
  autoload :EndpointProvider, 'aws-sdk-costexplorer/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-costexplorer/endpoints'
56
56
 
57
- GEM_VERSION = '1.133.0'
57
+ GEM_VERSION = '1.134.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-costexplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.133.0
4
+ version: 1.134.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services