aws-sdk-cloudfront 1.92.0 → 1.95.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +26 -6
- data/lib/aws-sdk-cloudfront/client_api.rb +1 -0
- data/lib/aws-sdk-cloudfront/types.rb +6 -4
- data/lib/aws-sdk-cloudfront.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5cac8b60d19c3be7bffedf3a377d64cf5ec5e5b7fa04c4db289021652f1a5ec
|
|
4
|
+
data.tar.gz: b974400ab6f8bb00fdac3c6a92800e8d71a75b821554a3c50f3a37cb85688595
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc63616be8ddd45aae81638e242a7ef6f03da1cb881ecd617361879c9df243451ea45d37b9b8a0a6f0367c57299737d8dbe06f5a9d5f6534d481de57eddbb9bc
|
|
7
|
+
data.tar.gz: 6e98a0b12cb040c322b349dcc0e0dc0f64327ea430c31248413278b983b34dac1992a8f5d114b83f00bf1bace964f1e98beafa0584c76328c11bff602c4e2f42
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.95.0 (2024-06-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Doc only update for CloudFront that fixes customer-reported issue
|
|
8
|
+
|
|
9
|
+
1.94.0 (2024-06-25)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.93.0 (2024-06-24)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
4
19
|
1.92.0 (2024-06-05)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.95.0
|
|
@@ -89,6 +89,11 @@ module Aws::CloudFront
|
|
|
89
89
|
|
|
90
90
|
# @overload initialize(options)
|
|
91
91
|
# @param [Hash] options
|
|
92
|
+
#
|
|
93
|
+
# @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
|
|
94
|
+
# A list of plugins to apply to the client. Each plugin is either a
|
|
95
|
+
# class name or an instance of a plugin class.
|
|
96
|
+
#
|
|
92
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
|
93
98
|
# Your AWS credentials. This can be an instance of any one of the
|
|
94
99
|
# following classes:
|
|
@@ -209,7 +214,6 @@ module Aws::CloudFront
|
|
|
209
214
|
# 'https://example.com'
|
|
210
215
|
# 'http://example.com:123'
|
|
211
216
|
#
|
|
212
|
-
#
|
|
213
217
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
214
218
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
215
219
|
# for endpoint discovery enabled operations. Defaults to 1000.
|
|
@@ -298,7 +302,6 @@ module Aws::CloudFront
|
|
|
298
302
|
# throttling. This is a provisional mode that may change behavior
|
|
299
303
|
# in the future.
|
|
300
304
|
#
|
|
301
|
-
#
|
|
302
305
|
# @option options [String] :sdk_ua_app_id
|
|
303
306
|
# A unique and opaque application ID that is appended to the
|
|
304
307
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
@@ -7245,7 +7248,13 @@ module Aws::CloudFront
|
|
|
7245
7248
|
req.send_request(options)
|
|
7246
7249
|
end
|
|
7247
7250
|
|
|
7248
|
-
# List tags for a CloudFront resource.
|
|
7251
|
+
# List tags for a CloudFront resource. For more information, see
|
|
7252
|
+
# [Tagging a distribution][1] in the *Amazon CloudFront Developer
|
|
7253
|
+
# Guide*.
|
|
7254
|
+
#
|
|
7255
|
+
#
|
|
7256
|
+
#
|
|
7257
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
|
|
7249
7258
|
#
|
|
7250
7259
|
# @option params [required, String] :resource
|
|
7251
7260
|
# An ARN of a CloudFront resource.
|
|
@@ -7329,7 +7338,12 @@ module Aws::CloudFront
|
|
|
7329
7338
|
req.send_request(options)
|
|
7330
7339
|
end
|
|
7331
7340
|
|
|
7332
|
-
# Add tags to a CloudFront resource.
|
|
7341
|
+
# Add tags to a CloudFront resource. For more information, see [Tagging
|
|
7342
|
+
# a distribution][1] in the *Amazon CloudFront Developer Guide*.
|
|
7343
|
+
#
|
|
7344
|
+
#
|
|
7345
|
+
#
|
|
7346
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
|
|
7333
7347
|
#
|
|
7334
7348
|
# @option params [required, String] :resource
|
|
7335
7349
|
# An ARN of a CloudFront resource.
|
|
@@ -7442,7 +7456,13 @@ module Aws::CloudFront
|
|
|
7442
7456
|
req.send_request(options)
|
|
7443
7457
|
end
|
|
7444
7458
|
|
|
7445
|
-
# Remove tags from a CloudFront resource.
|
|
7459
|
+
# Remove tags from a CloudFront resource. For more information, see
|
|
7460
|
+
# [Tagging a distribution][1] in the *Amazon CloudFront Developer
|
|
7461
|
+
# Guide*.
|
|
7462
|
+
#
|
|
7463
|
+
#
|
|
7464
|
+
#
|
|
7465
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
|
|
7446
7466
|
#
|
|
7447
7467
|
# @option params [required, String] :resource
|
|
7448
7468
|
# An ARN of a CloudFront resource.
|
|
@@ -9428,7 +9448,7 @@ module Aws::CloudFront
|
|
|
9428
9448
|
params: params,
|
|
9429
9449
|
config: config)
|
|
9430
9450
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
|
9431
|
-
context[:gem_version] = '1.
|
|
9451
|
+
context[:gem_version] = '1.95.0'
|
|
9432
9452
|
Seahorse::Client::Request.new(handlers, context)
|
|
9433
9453
|
end
|
|
9434
9454
|
|
|
@@ -269,9 +269,9 @@ module Aws::CloudFront
|
|
|
269
269
|
# *Amazon CloudFront Developer Guide*.
|
|
270
270
|
#
|
|
271
271
|
# If you don't want to specify any cache behaviors, include only an
|
|
272
|
-
# empty `CacheBehaviors` element.
|
|
273
|
-
#
|
|
274
|
-
#
|
|
272
|
+
# empty `CacheBehaviors` element. Don't specify an empty individual
|
|
273
|
+
# `CacheBehavior` element, because this is invalid. For more
|
|
274
|
+
# information, see [CacheBehaviors][2].
|
|
275
275
|
#
|
|
276
276
|
# To delete all cache behaviors in an existing distribution, update the
|
|
277
277
|
# distribution configuration and include only an empty `CacheBehaviors`
|
|
@@ -998,7 +998,9 @@ module Aws::CloudFront
|
|
|
998
998
|
#
|
|
999
999
|
# @!attribute [rw] items
|
|
1000
1000
|
# A complex type that contains the HTTP methods that you want
|
|
1001
|
-
# CloudFront to cache responses to.
|
|
1001
|
+
# CloudFront to cache responses to. Valid values for `CachedMethods`
|
|
1002
|
+
# include `GET`, `HEAD`, and `OPTIONS`, depending on which caching
|
|
1003
|
+
# option you choose. For more information, see the preceding section.
|
|
1002
1004
|
# @return [Array<String>]
|
|
1003
1005
|
#
|
|
1004
1006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CachedMethods AWS API Documentation
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.95.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.199.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.199.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|