aws-sdk-cloudfront 1.118.0 → 1.123.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +219 -80
- data/lib/aws-sdk-cloudfront/client_api.rb +18 -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 +419 -138
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +10 -3
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +4 -2
- metadata +4 -4
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,
|
@@ -292,7 +293,8 @@ module Aws
|
|
292
293
|
]?
|
293
294
|
}?,
|
294
295
|
s3_origin_config: {
|
295
|
-
origin_access_identity: ::String
|
296
|
+
origin_access_identity: ::String,
|
297
|
+
origin_read_timeout: ::Integer?
|
296
298
|
}?,
|
297
299
|
custom_origin_config: {
|
298
300
|
http_port: ::Integer,
|
@@ -312,6 +314,7 @@ module Aws
|
|
312
314
|
}?,
|
313
315
|
connection_attempts: ::Integer?,
|
314
316
|
connection_timeout: ::Integer?,
|
317
|
+
response_completion_timeout: ::Integer?,
|
315
318
|
origin_shield: {
|
316
319
|
enabled: bool,
|
317
320
|
origin_shield_region: ::String?
|
@@ -638,7 +641,8 @@ module Aws
|
|
638
641
|
]?
|
639
642
|
}?,
|
640
643
|
s3_origin_config: {
|
641
|
-
origin_access_identity: ::String
|
644
|
+
origin_access_identity: ::String,
|
645
|
+
origin_read_timeout: ::Integer?
|
642
646
|
}?,
|
643
647
|
custom_origin_config: {
|
644
648
|
http_port: ::Integer,
|
@@ -658,6 +662,7 @@ module Aws
|
|
658
662
|
}?,
|
659
663
|
connection_attempts: ::Integer?,
|
660
664
|
connection_timeout: ::Integer?,
|
665
|
+
response_completion_timeout: ::Integer?,
|
661
666
|
origin_shield: {
|
662
667
|
enabled: bool,
|
663
668
|
origin_shield_region: ::String?
|
@@ -2562,7 +2567,8 @@ module Aws
|
|
2562
2567
|
]?
|
2563
2568
|
}?,
|
2564
2569
|
s3_origin_config: {
|
2565
|
-
origin_access_identity: ::String
|
2570
|
+
origin_access_identity: ::String,
|
2571
|
+
origin_read_timeout: ::Integer?
|
2566
2572
|
}?,
|
2567
2573
|
custom_origin_config: {
|
2568
2574
|
http_port: ::Integer,
|
@@ -2582,6 +2588,7 @@ module Aws
|
|
2582
2588
|
}?,
|
2583
2589
|
connection_attempts: ::Integer?,
|
2584
2590
|
connection_timeout: ::Integer?,
|
2591
|
+
response_completion_timeout: ::Integer?,
|
2585
2592
|
origin_shield: {
|
2586
2593
|
enabled: bool,
|
2587
2594
|
origin_shield_region: ::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
|
@@ -2581,6 +2581,7 @@ module Aws::CloudFront
|
|
2581
2581
|
attr_accessor vpc_origin_config: Types::VpcOriginConfig
|
2582
2582
|
attr_accessor connection_attempts: ::Integer
|
2583
2583
|
attr_accessor connection_timeout: ::Integer
|
2584
|
+
attr_accessor response_completion_timeout: ::Integer
|
2584
2585
|
attr_accessor origin_shield: Types::OriginShield
|
2585
2586
|
attr_accessor origin_access_control_id: ::String
|
2586
2587
|
SENSITIVE: []
|
@@ -3085,6 +3086,7 @@ module Aws::CloudFront
|
|
3085
3086
|
|
3086
3087
|
class S3OriginConfig
|
3087
3088
|
attr_accessor origin_access_identity: ::String
|
3089
|
+
attr_accessor origin_read_timeout: ::Integer
|
3088
3090
|
SENSITIVE: []
|
3089
3091
|
end
|
3090
3092
|
|
@@ -3192,7 +3194,7 @@ module Aws::CloudFront
|
|
3192
3194
|
attr_accessor comment: ::String
|
3193
3195
|
attr_accessor default_value: ::String
|
3194
3196
|
attr_accessor required: bool
|
3195
|
-
SENSITIVE: []
|
3197
|
+
SENSITIVE: [:comment]
|
3196
3198
|
end
|
3197
3199
|
|
3198
3200
|
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.123.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.228.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.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,7 +87,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
88
88
|
- - ">="
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: '2.
|
90
|
+
version: '2.7'
|
91
91
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
92
|
requirements:
|
93
93
|
- - ">="
|