aws-sdk-backupsearch 1.9.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backupsearch/client.rb +1 -1
- data/lib/aws-sdk-backupsearch/client_api.rb +1 -0
- data/lib/aws-sdk-backupsearch/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-backupsearch.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: d6ba1123e20270f739fb75592873877ec7a910dfaaed2123246f120d28a2f038
|
4
|
+
data.tar.gz: 4c61276ef06f39984345f1168b7024c22b2315f57a9c07901d51f867ffcaa7d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 144365a933ba82f95920b3752dff26ef58f8b22ee4c8d429a669b300dcb57d17ec3d3e2d5ac7daceb375753719e82a6d324edcdc98cf6ca66fc4e98d3e4d3258
|
7
|
+
data.tar.gz: 63385aa6e991a7d1a0e5554ae8ce72558ef18f2fddd10bee0bae15c07cd91f601c587f157ca4ef0b1ed55823727f861a0a15bd2e05e1fefa21cdc22939a52468
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.10.0 (2025-08-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Removed incorrect endpoint tests
|
13
|
+
|
4
14
|
1.9.0 (2025-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.11.0
|
@@ -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.#{
|
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.#{
|
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"
|
data/lib/aws-sdk-backupsearch.rb
CHANGED