aws-sdk-backupsearch 1.10.0 → 1.11.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: bf1d5e5aafae852d06bad88532254bd1ab3d385feb9ca3b591d6c5ccbad84539
4
- data.tar.gz: 67a63554143d640ecbe6479033a40733c056a945df7d132aa971ffd8fb4f85bb
3
+ metadata.gz: d6ba1123e20270f739fb75592873877ec7a910dfaaed2123246f120d28a2f038
4
+ data.tar.gz: 4c61276ef06f39984345f1168b7024c22b2315f57a9c07901d51f867ffcaa7d4
5
5
  SHA512:
6
- metadata.gz: 8f55728559d0499aa6ba01445860d98b2580a56e6cf1671e6f786b845a72181dc1014f74bdf6a13b7272bfd4a1b848c7f3b3745470b62cf809069a3ddec70145
7
- data.tar.gz: 43d1fa38fa365a25c07d1133958a37f2d28c869f7d36357fe67bd4f3c9c605cb150aa63b8dc9456d24e3849241e369a7ab6548fa0bcd3b8c67dae63cde3a10ed
6
+ metadata.gz: 144365a933ba82f95920b3752dff26ef58f8b22ee4c8d429a669b300dcb57d17ec3d3e2d5ac7daceb375753719e82a6d324edcdc98cf6ca66fc4e98d3e4d3258
7
+ data.tar.gz: 63385aa6e991a7d1a0e5554ae8ce72558ef18f2fddd10bee0bae15c07cd91f601c587f157ca4ef0b1ed55823727f861a0a15bd2e05e1fefa21cdc22939a52468
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2025-08-12)
5
+ ------------------
6
+
7
+ * Feature - Using recommended smithy trait to generate regional endpoints for Backup Search
8
+
4
9
  1.10.0 (2025-08-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -1191,7 +1191,7 @@ module Aws::BackupSearch
1191
1191
  tracer: tracer
1192
1192
  )
1193
1193
  context[:gem_name] = 'aws-sdk-backupsearch'
1194
- context[:gem_version] = '1.10.0'
1194
+ context[:gem_version] = '1.11.0'
1195
1195
  Seahorse::Client::Request.new(handlers, context)
1196
1196
  end
1197
1197
 
@@ -532,6 +532,7 @@ module Aws::BackupSearch
532
532
  o.http_request_uri = "/search-jobs"
533
533
  o.input = Shapes::ShapeRef.new(shape: StartSearchJobInput)
534
534
  o.output = Shapes::ShapeRef.new(shape: StartSearchJobOutput)
535
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
535
536
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
536
537
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
537
538
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -19,9 +19,9 @@ module Aws::BackupSearch
19
19
  if Aws::Endpoints::Matchers.set?(parameters.region)
20
20
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
21
21
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
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']}"}]})
22
+ return Aws::Endpoints::Endpoint.new(url: "https://backup-search-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
23
23
  end
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']}"}]})
24
+ return Aws::Endpoints::Endpoint.new(url: "https://backup-search.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
25
25
  end
26
26
  end
27
27
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -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.10.0'
58
+ GEM_VERSION = '1.11.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-backupsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services