aws-sdk-cloudfront 1.118.0 → 1.132.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 +70 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +254 -103
- data/lib/aws-sdk-cloudfront/client_api.rb +20 -9
- data/lib/aws-sdk-cloudfront/customizations.rb +0 -1
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +12 -12
- data/lib/aws-sdk-cloudfront/endpoint_provider.rb +14 -11
- data/lib/aws-sdk-cloudfront/signer.rb +14 -20
- data/lib/aws-sdk-cloudfront/types.rb +435 -139
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +19 -9
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +6 -3
- 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,
|
|
@@ -303,7 +305,8 @@ module Aws
|
|
|
303
305
|
items: Array[("SSLv3" | "TLSv1" | "TLSv1.1" | "TLSv1.2")]
|
|
304
306
|
}?,
|
|
305
307
|
origin_read_timeout: ::Integer?,
|
|
306
|
-
origin_keepalive_timeout: ::Integer
|
|
308
|
+
origin_keepalive_timeout: ::Integer?,
|
|
309
|
+
ip_address_type: ("ipv4" | "ipv6" | "dualstack")?
|
|
307
310
|
}?,
|
|
308
311
|
vpc_origin_config: {
|
|
309
312
|
vpc_origin_id: ::String,
|
|
@@ -312,6 +315,7 @@ module Aws
|
|
|
312
315
|
}?,
|
|
313
316
|
connection_attempts: ::Integer?,
|
|
314
317
|
connection_timeout: ::Integer?,
|
|
318
|
+
response_completion_timeout: ::Integer?,
|
|
315
319
|
origin_shield: {
|
|
316
320
|
enabled: bool,
|
|
317
321
|
origin_shield_region: ::String?
|
|
@@ -518,7 +522,7 @@ module Aws
|
|
|
518
522
|
iam_certificate_id: ::String?,
|
|
519
523
|
acm_certificate_arn: ::String?,
|
|
520
524
|
ssl_support_method: ("sni-only" | "vip" | "static-ip")?,
|
|
521
|
-
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021")?,
|
|
525
|
+
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025" | "TLSv1.2_2025")?,
|
|
522
526
|
certificate: ::String?,
|
|
523
527
|
certificate_source: ("cloudfront" | "iam" | "acm")?
|
|
524
528
|
}?,
|
|
@@ -638,7 +642,8 @@ module Aws
|
|
|
638
642
|
]?
|
|
639
643
|
}?,
|
|
640
644
|
s3_origin_config: {
|
|
641
|
-
origin_access_identity: ::String
|
|
645
|
+
origin_access_identity: ::String,
|
|
646
|
+
origin_read_timeout: ::Integer?
|
|
642
647
|
}?,
|
|
643
648
|
custom_origin_config: {
|
|
644
649
|
http_port: ::Integer,
|
|
@@ -649,7 +654,8 @@ module Aws
|
|
|
649
654
|
items: Array[("SSLv3" | "TLSv1" | "TLSv1.1" | "TLSv1.2")]
|
|
650
655
|
}?,
|
|
651
656
|
origin_read_timeout: ::Integer?,
|
|
652
|
-
origin_keepalive_timeout: ::Integer
|
|
657
|
+
origin_keepalive_timeout: ::Integer?,
|
|
658
|
+
ip_address_type: ("ipv4" | "ipv6" | "dualstack")?
|
|
653
659
|
}?,
|
|
654
660
|
vpc_origin_config: {
|
|
655
661
|
vpc_origin_id: ::String,
|
|
@@ -658,6 +664,7 @@ module Aws
|
|
|
658
664
|
}?,
|
|
659
665
|
connection_attempts: ::Integer?,
|
|
660
666
|
connection_timeout: ::Integer?,
|
|
667
|
+
response_completion_timeout: ::Integer?,
|
|
661
668
|
origin_shield: {
|
|
662
669
|
enabled: bool,
|
|
663
670
|
origin_shield_region: ::String?
|
|
@@ -864,7 +871,7 @@ module Aws
|
|
|
864
871
|
iam_certificate_id: ::String?,
|
|
865
872
|
acm_certificate_arn: ::String?,
|
|
866
873
|
ssl_support_method: ("sni-only" | "vip" | "static-ip")?,
|
|
867
|
-
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021")?,
|
|
874
|
+
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025" | "TLSv1.2_2025")?,
|
|
868
875
|
certificate: ::String?,
|
|
869
876
|
certificate_source: ("cloudfront" | "iam" | "acm")?
|
|
870
877
|
}?,
|
|
@@ -2562,7 +2569,8 @@ module Aws
|
|
|
2562
2569
|
]?
|
|
2563
2570
|
}?,
|
|
2564
2571
|
s3_origin_config: {
|
|
2565
|
-
origin_access_identity: ::String
|
|
2572
|
+
origin_access_identity: ::String,
|
|
2573
|
+
origin_read_timeout: ::Integer?
|
|
2566
2574
|
}?,
|
|
2567
2575
|
custom_origin_config: {
|
|
2568
2576
|
http_port: ::Integer,
|
|
@@ -2573,7 +2581,8 @@ module Aws
|
|
|
2573
2581
|
items: Array[("SSLv3" | "TLSv1" | "TLSv1.1" | "TLSv1.2")]
|
|
2574
2582
|
}?,
|
|
2575
2583
|
origin_read_timeout: ::Integer?,
|
|
2576
|
-
origin_keepalive_timeout: ::Integer
|
|
2584
|
+
origin_keepalive_timeout: ::Integer?,
|
|
2585
|
+
ip_address_type: ("ipv4" | "ipv6" | "dualstack")?
|
|
2577
2586
|
}?,
|
|
2578
2587
|
vpc_origin_config: {
|
|
2579
2588
|
vpc_origin_id: ::String,
|
|
@@ -2582,6 +2591,7 @@ module Aws
|
|
|
2582
2591
|
}?,
|
|
2583
2592
|
connection_attempts: ::Integer?,
|
|
2584
2593
|
connection_timeout: ::Integer?,
|
|
2594
|
+
response_completion_timeout: ::Integer?,
|
|
2585
2595
|
origin_shield: {
|
|
2586
2596
|
enabled: bool,
|
|
2587
2597
|
origin_shield_region: ::String?
|
|
@@ -2788,7 +2798,7 @@ module Aws
|
|
|
2788
2798
|
iam_certificate_id: ::String?,
|
|
2789
2799
|
acm_certificate_arn: ::String?,
|
|
2790
2800
|
ssl_support_method: ("sni-only" | "vip" | "static-ip")?,
|
|
2791
|
-
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021")?,
|
|
2801
|
+
minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025" | "TLSv1.2_2025")?,
|
|
2792
2802
|
certificate: ::String?,
|
|
2793
2803
|
certificate_source: ("cloudfront" | "iam" | "acm")?
|
|
2794
2804
|
}?,
|
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
|
@@ -754,6 +754,7 @@ module Aws::CloudFront
|
|
|
754
754
|
attr_accessor origin_ssl_protocols: Types::OriginSslProtocols
|
|
755
755
|
attr_accessor origin_read_timeout: ::Integer
|
|
756
756
|
attr_accessor origin_keepalive_timeout: ::Integer
|
|
757
|
+
attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
|
|
757
758
|
SENSITIVE: []
|
|
758
759
|
end
|
|
759
760
|
|
|
@@ -1069,7 +1070,7 @@ module Aws::CloudFront
|
|
|
1069
1070
|
attr_accessor staging: bool
|
|
1070
1071
|
attr_accessor connection_mode: ("direct" | "tenant-only")
|
|
1071
1072
|
attr_accessor anycast_ip_list_id: ::String
|
|
1072
|
-
SENSITIVE: []
|
|
1073
|
+
SENSITIVE: [:comment]
|
|
1073
1074
|
end
|
|
1074
1075
|
|
|
1075
1076
|
class DistributionTenant
|
|
@@ -2581,6 +2582,7 @@ module Aws::CloudFront
|
|
|
2581
2582
|
attr_accessor vpc_origin_config: Types::VpcOriginConfig
|
|
2582
2583
|
attr_accessor connection_attempts: ::Integer
|
|
2583
2584
|
attr_accessor connection_timeout: ::Integer
|
|
2585
|
+
attr_accessor response_completion_timeout: ::Integer
|
|
2584
2586
|
attr_accessor origin_shield: Types::OriginShield
|
|
2585
2587
|
attr_accessor origin_access_control_id: ::String
|
|
2586
2588
|
SENSITIVE: []
|
|
@@ -3085,6 +3087,7 @@ module Aws::CloudFront
|
|
|
3085
3087
|
|
|
3086
3088
|
class S3OriginConfig
|
|
3087
3089
|
attr_accessor origin_access_identity: ::String
|
|
3090
|
+
attr_accessor origin_read_timeout: ::Integer
|
|
3088
3091
|
SENSITIVE: []
|
|
3089
3092
|
end
|
|
3090
3093
|
|
|
@@ -3192,7 +3195,7 @@ module Aws::CloudFront
|
|
|
3192
3195
|
attr_accessor comment: ::String
|
|
3193
3196
|
attr_accessor default_value: ::String
|
|
3194
3197
|
attr_accessor required: bool
|
|
3195
|
-
SENSITIVE: []
|
|
3198
|
+
SENSITIVE: [:comment]
|
|
3196
3199
|
end
|
|
3197
3200
|
|
|
3198
3201
|
class Tag
|
|
@@ -3845,7 +3848,7 @@ module Aws::CloudFront
|
|
|
3845
3848
|
attr_accessor iam_certificate_id: ::String
|
|
3846
3849
|
attr_accessor acm_certificate_arn: ::String
|
|
3847
3850
|
attr_accessor ssl_support_method: ("sni-only" | "vip" | "static-ip")
|
|
3848
|
-
attr_accessor minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021")
|
|
3851
|
+
attr_accessor minimum_protocol_version: ("SSLv3" | "TLSv1" | "TLSv1_2016" | "TLSv1.1_2016" | "TLSv1.2_2018" | "TLSv1.2_2019" | "TLSv1.2_2021" | "TLSv1.3_2025" | "TLSv1.2_2025")
|
|
3849
3852
|
attr_accessor certificate: ::String
|
|
3850
3853
|
attr_accessor certificate_source: ("cloudfront" | "iam" | "acm")
|
|
3851
3854
|
SENSITIVE: []
|
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.132.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.234.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.234.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
|
- - ">="
|