aws-sdk-shield 1.56.0 → 1.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-shield/client.rb +1 -1
- data/lib/aws-sdk-shield/endpoint_provider.rb +20 -38
- data/lib/aws-sdk-shield.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6f92d1b8bd0e8a4d59a5cf7eccebaf95f8b9da8634157c98a5e5b0a888ed21d
|
4
|
+
data.tar.gz: 991e98e179b5e48e1b8e150e3cc2f10828e97b05e5dc14cdf106ba859e8f6056
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3f8500c9a7ee2ba9a82e9236981ed2bf9cf49c35ca58cdae31bd7480d7e4a1f8ce960c8d886e50cea65bbf39d68de38e702ec4f7bbeee73bc7ac39fd228308f
|
7
|
+
data.tar.gz: f2ea58d2203ac12dd413bd074120a229806bcc8578d8a60ad6527921350b9c0c3732bf33ee78dfe63a090942c8d29a69770fb0d39d5219c58088bdecc20aa3d1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.57.0
|
@@ -1928,7 +1928,7 @@ module Aws::Shield
|
|
1928
1928
|
params: params,
|
1929
1929
|
config: config)
|
1930
1930
|
context[:gem_name] = 'aws-sdk-shield'
|
1931
|
-
context[:gem_version] = '1.
|
1931
|
+
context[:gem_version] = '1.57.0'
|
1932
1932
|
Seahorse::Client::Request.new(handlers, context)
|
1933
1933
|
end
|
1934
1934
|
|
@@ -14,63 +14,45 @@ module Aws::Shield
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.
|
19
|
-
|
20
|
-
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"shield", "signingRegion"=>"us-east-1"}]})
|
21
30
|
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
23
|
-
|
31
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
32
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"shield", "signingRegion"=>"us-east-1"}]})
|
24
33
|
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
-
end
|
27
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
|
28
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
35
|
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"))
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.#{region}
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
37
|
end
|
32
38
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
39
|
end
|
34
40
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
41
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
43
|
end
|
38
44
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
45
|
end
|
40
46
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
47
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield.#{region}
|
48
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
49
|
end
|
44
50
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
51
|
end
|
46
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield
|
47
|
-
end
|
48
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
49
|
-
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"))
|
50
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
51
|
-
end
|
52
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
53
|
-
end
|
54
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
55
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
56
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
|
57
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.us-east-1.amazonaws.com", headers: {}, properties: {})
|
58
|
-
end
|
59
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
60
|
-
end
|
61
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
62
|
-
end
|
63
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
64
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
65
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
66
|
-
end
|
67
|
-
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
68
|
-
end
|
69
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
|
70
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"shield", "signingRegion"=>"us-east-1"}]})
|
52
|
+
return Aws::Endpoints::Endpoint.new(url: "https://shield.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
71
53
|
end
|
72
|
-
return Aws::Endpoints::Endpoint.new(url: "https://shield.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
73
54
|
end
|
55
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
74
56
|
raise ArgumentError, 'No endpoint could be resolved'
|
75
57
|
|
76
58
|
end
|
data/lib/aws-sdk-shield.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-shield
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.57.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: 2023-
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|