aws-sdk-cloudfront 1.115.0 → 1.117.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 +7 -5
- data/lib/aws-sdk-cloudfront/client_api.rb +135 -135
- data/lib/aws-sdk-cloudfront/endpoint_provider.rb +3 -3
- data/lib/aws-sdk-cloudfront/types.rb +22 -19
- data/lib/aws-sdk-cloudfront.rb +1 -1
- metadata +3 -6
@@ -22,13 +22,13 @@ module Aws::CloudFront
|
|
22
22
|
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
23
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
24
24
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"cloudfront", "signingRegion"=>"us-east-1"}]})
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "us-east-1"}]})
|
26
26
|
end
|
27
27
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
28
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"cloudfront", "signingRegion"=>"us-east-1"}]})
|
28
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "us-east-1"}]})
|
29
29
|
end
|
30
30
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
31
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"cloudfront", "signingRegion"=>"cn-northwest-1"}]})
|
31
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "cn-northwest-1"}]})
|
32
32
|
end
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
34
34
|
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"))
|
@@ -557,10 +557,10 @@ module Aws::CloudFront
|
|
557
557
|
# @!attribute [rw] trusted_signers
|
558
558
|
# We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
|
559
559
|
#
|
560
|
-
#
|
560
|
+
# A list of Amazon Web Services account IDs whose public keys
|
561
561
|
# CloudFront can use to validate signed URLs or signed cookies.
|
562
562
|
#
|
563
|
-
#
|
563
|
+
# When a cache behavior contains trusted signers, CloudFront requires
|
564
564
|
# signed URLs or signed cookies for all requests that match the cache
|
565
565
|
# behavior. The URLs or cookies must be signed with the private key of
|
566
566
|
# a CloudFront key pair in the trusted signer's Amazon Web Services
|
@@ -3422,10 +3422,10 @@ module Aws::CloudFront
|
|
3422
3422
|
# @!attribute [rw] trusted_signers
|
3423
3423
|
# We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
|
3424
3424
|
#
|
3425
|
-
#
|
3425
|
+
# A list of Amazon Web Services account IDs whose public keys
|
3426
3426
|
# CloudFront can use to validate signed URLs or signed cookies.
|
3427
3427
|
#
|
3428
|
-
#
|
3428
|
+
# When a cache behavior contains trusted signers, CloudFront requires
|
3429
3429
|
# signed URLs or signed cookies for all requests that match the cache
|
3430
3430
|
# behavior. The URLs or cookies must be signed with the private key of
|
3431
3431
|
# a CloudFront key pair in a trusted signer's Amazon Web Services
|
@@ -4328,7 +4328,7 @@ module Aws::CloudFront
|
|
4328
4328
|
# @!attribute [rw] active_trusted_signers
|
4329
4329
|
# We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
|
4330
4330
|
#
|
4331
|
-
#
|
4331
|
+
# This field contains a list of Amazon Web Services account IDs and
|
4332
4332
|
# the active CloudFront key pairs in each account that CloudFront can
|
4333
4333
|
# use to verify the signatures of signed URLs or signed cookies.
|
4334
4334
|
# @return [Types::ActiveTrustedSigners]
|
@@ -6594,8 +6594,8 @@ module Aws::CloudFront
|
|
6594
6594
|
end
|
6595
6595
|
|
6596
6596
|
# @!attribute [rw] identifier
|
6597
|
-
# The
|
6598
|
-
# name of the distribution tenant.
|
6597
|
+
# The identifier of the distribution tenant. You can specify the ARN,
|
6598
|
+
# ID, or name of the distribution tenant.
|
6599
6599
|
# @return [String]
|
6600
6600
|
#
|
6601
6601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetDistributionTenantRequest AWS API Documentation
|
@@ -6915,7 +6915,8 @@ module Aws::CloudFront
|
|
6915
6915
|
end
|
6916
6916
|
|
6917
6917
|
# @!attribute [rw] identifier
|
6918
|
-
# The identifier of the
|
6918
|
+
# The identifier of the distribution tenant. You can specify the ARN,
|
6919
|
+
# ID, or name of the distribution tenant.
|
6919
6920
|
# @return [String]
|
6920
6921
|
#
|
6921
6922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetManagedCertificateDetailsRequest AWS API Documentation
|
@@ -12782,36 +12783,37 @@ module Aws::CloudFront
|
|
12782
12783
|
# a website endpoint, use the `CustomOriginConfig` element instead.
|
12783
12784
|
#
|
12784
12785
|
# @!attribute [rw] origin_access_identity
|
12785
|
-
# <note markdown="1"> If you're using origin access control (OAC)
|
12786
|
+
# <note markdown="1"> If you're using origin access control (OAC)
|
12787
|
+
# instead of origin
|
12786
12788
|
# access identity, specify an empty `OriginAccessIdentity` element.
|
12787
12789
|
# For more information, see [Restricting access to an Amazon Web
|
12788
12790
|
# Services][1] in the *Amazon CloudFront Developer Guide*.
|
12789
12791
|
#
|
12790
12792
|
# </note>
|
12791
12793
|
#
|
12792
|
-
#
|
12794
|
+
# The CloudFront origin access identity to associate with the origin.
|
12793
12795
|
# Use an origin access identity to configure the origin so that
|
12794
12796
|
# viewers can *only* access objects in an Amazon S3 bucket through
|
12795
12797
|
# CloudFront. The format of the value is:
|
12796
12798
|
#
|
12797
|
-
#
|
12799
|
+
# `origin-access-identity/cloudfront/ID-of-origin-access-identity`
|
12798
12800
|
#
|
12799
|
-
#
|
12801
|
+
# The ` ID-of-origin-access-identity ` is the value that CloudFront
|
12800
12802
|
# returned in the `ID` element when you created the origin access
|
12801
12803
|
# identity.
|
12802
12804
|
#
|
12803
|
-
#
|
12805
|
+
# If you want viewers to be able to access objects using either the
|
12804
12806
|
# CloudFront URL or the Amazon S3 URL, specify an empty
|
12805
12807
|
# `OriginAccessIdentity` element.
|
12806
12808
|
#
|
12807
|
-
#
|
12809
|
+
# To delete the origin access identity from an existing distribution,
|
12808
12810
|
# update the distribution configuration and include an empty
|
12809
12811
|
# `OriginAccessIdentity` element.
|
12810
12812
|
#
|
12811
|
-
#
|
12813
|
+
# To replace the origin access identity, update the distribution
|
12812
12814
|
# configuration and specify the new origin access identity.
|
12813
12815
|
#
|
12814
|
-
#
|
12816
|
+
# For more information about the origin access identity, see [Serving
|
12815
12817
|
# Private Content through CloudFront][2] in the *Amazon CloudFront
|
12816
12818
|
# Developer Guide*.
|
12817
12819
|
#
|
@@ -15486,7 +15488,8 @@ module Aws::CloudFront
|
|
15486
15488
|
# @return [String]
|
15487
15489
|
#
|
15488
15490
|
# @!attribute [rw] identifier
|
15489
|
-
# The
|
15491
|
+
# The identifier of the distribution tenant. You can specify the ARN,
|
15492
|
+
# ID, or name of the distribution tenant.
|
15490
15493
|
# @return [String]
|
15491
15494
|
#
|
15492
15495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/VerifyDnsConfigurationRequest AWS API Documentation
|
@@ -15630,8 +15633,8 @@ module Aws::CloudFront
|
|
15630
15633
|
# * `static-ip` - Do not specify this value unless your distribution
|
15631
15634
|
# has been enabled for this feature by the CloudFront team. If you
|
15632
15635
|
# have a use case that requires static IP addresses for a
|
15633
|
-
# distribution, contact CloudFront through the [Amazon Web
|
15634
|
-
#
|
15636
|
+
# distribution, contact CloudFront through the [Amazon Web
|
15637
|
+
# ServicesSupport Center][2].
|
15635
15638
|
#
|
15636
15639
|
# If the distribution uses the CloudFront domain name such as
|
15637
15640
|
# `d111111abcdef8.cloudfront.net`, don't set a value for this field.
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.117.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -81,7 +80,6 @@ licenses:
|
|
81
80
|
metadata:
|
82
81
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudfront
|
83
82
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudfront/CHANGELOG.md
|
84
|
-
post_install_message:
|
85
83
|
rdoc_options: []
|
86
84
|
require_paths:
|
87
85
|
- lib
|
@@ -96,8 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
94
|
- !ruby/object:Gem::Version
|
97
95
|
version: '0'
|
98
96
|
requirements: []
|
99
|
-
rubygems_version: 3.
|
100
|
-
signing_key:
|
97
|
+
rubygems_version: 3.6.7
|
101
98
|
specification_version: 4
|
102
99
|
summary: AWS SDK for Ruby - CloudFront
|
103
100
|
test_files: []
|