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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +1 -1
- data/lib/aws-sdk-costexplorer/endpoint_provider.rb +3 -0
- data/lib/aws-sdk-costexplorer/types.rb +1 -1
- data/lib/aws-sdk-costexplorer.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f9edb647ee798909973bb79190d7cdfa18ace160328901e2eb9aea9e0d10c1c
|
4
|
+
data.tar.gz: 9b2e714a38db04c509c66ce8aece9a26007adfc0642758c0b96d21628b21ae92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d360f013066373c1109c9451cfffb832a67a6920e59bfd3b9f4853f171134e15b41c1a0dd4f25e8d14a54e35e7c041936c3aff382a213a595594128a1a18339
|
7
|
+
data.tar.gz: 863be09c95e0a3b2b65cc9af3f7e31da02451cdfe245b7b1998326d8302522f2a1821470f18c24615120e4b8f25cafc673b8e884fb6cc7f5fce01988da6a8ab6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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,
|
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]
|
data/lib/aws-sdk-costexplorer.rb
CHANGED