aws-sdk-invoicing 1.1.0 → 1.2.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: cbffb1f531bd3e2ee53d20404c7fbbd381c025c4ae8b57cf39936fba01d2e46c
4
- data.tar.gz: 7c65c4d8fc7b5a7e6d6f9b87a62243736006feb8c9f5afe0c21f733ae448ec70
3
+ metadata.gz: 33c3396642445732e97af384619142d2c7f93a7692cf856edca190fbba4a6343
4
+ data.tar.gz: 0e435f047e3a64f95cde2d9b77125101cc3e3383e949d47d2cfbaf3e5b7efecd
5
5
  SHA512:
6
- metadata.gz: 5b550581e22d7e2e4d23745d801d15faf70f1cd2b6e6675e096ceb86f65bfa530d2226f0fc71b135066990b726d5e4812096e9522de574daab7ca3988984d340
7
- data.tar.gz: 6966e5a3b09433c11fbe4211592f4b88e724d9fbe5f08819cd9f273769d0bcccc41b9327af4c2c1f45a1a4171e0ef6abbe49e15d99da010d245db75d08e02ddc
6
+ metadata.gz: acb101659c93df4e05b72e915efc4324f14a7e1384b8d9587ea1e7812f8186460c3b3e1a4da0e0df64b5c0d5218e164fc5b8a01f601172625d8fbb36176e5245
7
+ data.tar.gz: 89b267fcc756970bdb73abdd4f273d9663edeaaf571888438637ca00e91fe7a1f93fe653d83c605e8cf7b562394e2ff004c37c52c683b391d4fb23e15216cba2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.1.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.0
@@ -1186,7 +1186,7 @@ module Aws::Invoicing
1186
1186
  tracer: tracer
1187
1187
  )
1188
1188
  context[:gem_name] = 'aws-sdk-invoicing'
1189
- context[:gem_version] = '1.1.0'
1189
+ context[:gem_version] = '1.2.0'
1190
1190
  Seahorse::Client::Request.new(handlers, context)
1191
1191
  end
1192
1192
 
@@ -10,18 +10,15 @@
10
10
  module Aws::Invoicing
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
- use_fips = parameters.use_fips
14
- endpoint = parameters.endpoint
15
- region = parameters.region
16
- if Aws::Endpoints::Matchers.set?(endpoint)
17
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
13
+ if Aws::Endpoints::Matchers.set?(parameters.endpoint)
14
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
18
15
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
19
16
  end
20
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
17
+ return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
21
18
  end
22
- if Aws::Endpoints::Matchers.set?(region)
23
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
24
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ if Aws::Endpoints::Matchers.set?(parameters.region)
20
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
21
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
25
22
  return Aws::Endpoints::Endpoint.new(url: "https://invoicing-fips.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
26
23
  end
27
24
  return Aws::Endpoints::Endpoint.new(url: "https://invoicing.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
@@ -55,7 +55,7 @@ module Aws::Invoicing
55
55
  autoload :EndpointProvider, 'aws-sdk-invoicing/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-invoicing/endpoints'
57
57
 
58
- GEM_VERSION = '1.1.0'
58
+ GEM_VERSION = '1.2.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-invoicing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-15 00:00:00.000000000 Z
11
+ date: 2025-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core