aws-sdk-backupsearch 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: 3bf19799a30e65e173d6ca87a046cce463370b59eb900dedf73ced7001c994bc
4
- data.tar.gz: c31fa3109caac4e788d2e7ca9dbd2311b5ca7a8748802f30738c67f7be220984
3
+ metadata.gz: 1d77ea697c7c567955e1a267cdf7eded07c0273bfae844f0f2653ffc3c968d9d
4
+ data.tar.gz: ecc75e0865da198ade241036eecaf2f38fe9ec86cee4076bd70aa1bed899d660
5
5
  SHA512:
6
- metadata.gz: 916206fd51b961d9a812d7c3011538472669e43a6183f95aaff710215d13eb7ec48333932b67184a409b567168186a4c4a004d74133d9ae34c3a923ea4a6a11f
7
- data.tar.gz: 58ae831a4114fd78d61b8a6b74eacd4a415cbaa51cdc85a843be94bab7c26e099a39d199001f50fd3c6b4c03acc7b955401a3b5133c1ffa56d100f82f6cd1ed5
6
+ metadata.gz: 1b38f591612dc169528ead7fa046e3bda8f1634753f15b74a1329420232bbb630fb48141dd389cd22a940bd4273389cd10c61bb0260e23e8e4339f849a92dc64
7
+ data.tar.gz: f74a236818fafe4f520e115500070bff13c683e6dd0d4d6d65ef430298ad3f833fd23c0378507e0e102b2ff397a6bc91f560d3e614c03ba3e3d36443a42fb818
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
@@ -1185,7 +1185,7 @@ module Aws::BackupSearch
1185
1185
  tracer: tracer
1186
1186
  )
1187
1187
  context[:gem_name] = 'aws-sdk-backupsearch'
1188
- context[:gem_version] = '1.1.0'
1188
+ context[:gem_version] = '1.2.0'
1189
1189
  Seahorse::Client::Request.new(handlers, context)
1190
1190
  end
1191
1191
 
@@ -10,18 +10,15 @@
10
10
  module Aws::BackupSearch
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://backup-search-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://backup-search.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
@@ -55,7 +55,7 @@ module Aws::BackupSearch
55
55
  autoload :EndpointProvider, 'aws-sdk-backupsearch/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-backupsearch/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-backupsearch
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