aws-sdk-cloudfront 1.119.0 → 1.121.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-cloudfront/client.rb +179 -80
- data/lib/aws-sdk-cloudfront/client_api.rb +16 -9
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +9 -9
- data/lib/aws-sdk-cloudfront/endpoint_provider.rb +14 -11
- data/lib/aws-sdk-cloudfront/types.rb +364 -133
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -2
- metadata +3 -3
data/lib/aws-sdk-cloudfront.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -1069,7 +1069,7 @@ module Aws::CloudFront
|
|
1069
1069
|
attr_accessor staging: bool
|
1070
1070
|
attr_accessor connection_mode: ("direct" | "tenant-only")
|
1071
1071
|
attr_accessor anycast_ip_list_id: ::String
|
1072
|
-
SENSITIVE: []
|
1072
|
+
SENSITIVE: [:comment]
|
1073
1073
|
end
|
1074
1074
|
|
1075
1075
|
class DistributionTenant
|
@@ -3192,7 +3192,7 @@ module Aws::CloudFront
|
|
3192
3192
|
attr_accessor comment: ::String
|
3193
3193
|
attr_accessor default_value: ::String
|
3194
3194
|
attr_accessor required: bool
|
3195
|
-
SENSITIVE: []
|
3195
|
+
SENSITIVE: [:comment]
|
3196
3196
|
end
|
3197
3197
|
|
3198
3198
|
class Tag
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudfront
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.121.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|