aws-sdk-cloudfront 1.130.0 → 1.131.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +1 -1
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudfront.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: 1228aae666e3df130bb78264ff77ea6a9d05b4a363ea83435e4b2a01ecdb4899
|
4
|
+
data.tar.gz: 6654a68bd2c781f4357ba4e5257d5ac396641fe5f9db1331b9543c7daa9fe6c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2994c288a034264c376855f7d713103d381e4941173488b5044378e532d5573676ae1748df0a8c579387f43c5e679adfc6cc2f74f3e30f858851f32889f678ca
|
7
|
+
data.tar.gz: 24b5c7c81fb7e71df79d4b7aad2b72bcc85f4353593d8008bc0bb9fe8fac7457b1bd0d5565240d877ed0a8833e0582bb326d109a414812bbd03b1d242e446a4f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.131.0
|
@@ -12296,7 +12296,7 @@ module Aws::CloudFront
|
|
12296
12296
|
tracer: tracer
|
12297
12297
|
)
|
12298
12298
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
12299
|
-
context[:gem_version] = '1.
|
12299
|
+
context[:gem_version] = '1.131.0'
|
12300
12300
|
Seahorse::Client::Request.new(handlers, context)
|
12301
12301
|
end
|
12302
12302
|
|
@@ -13,22 +13,22 @@ module Aws::CloudFront
|
|
13
13
|
# @!attribute use_dual_stack
|
14
14
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [boolean]
|
17
17
|
#
|
18
18
|
# @!attribute use_fips
|
19
19
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute endpoint
|
24
24
|
# Override the endpoint used to send this request
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [string]
|
27
27
|
#
|
28
28
|
# @!attribute region
|
29
29
|
# The AWS region used to dispatch the request.
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:use_dual_stack,
|
data/lib/aws-sdk-cloudfront.rb
CHANGED