aws-sdk-cloudfront 1.138.0 → 1.139.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +1 -1
- data/lib/aws-sdk-cloudfront/client_api.rb +3 -0
- data/lib/aws-sdk-cloudfront.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8127a567de813ef676a85cf805ea604c9ace644496a7b993a32c79e612920228
|
|
4
|
+
data.tar.gz: 429d4933e430ad497d109397141db49e544cc0ee28beae4785281c2992a7ac87
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c07163d2d46f93469e180841ab92aac356bd5d57101a23f334afcd125b41519ec6f07aea1e31572bae84ea05b81a6fb59c1198190684a76c04790ce64df853f7
|
|
7
|
+
data.tar.gz: ac381e012a3f12f92495877fb9124b0288688835e5c3721dade10447ee6cfc6f45e8db0e2a7505326e3bdd0331ff433538e39fb6c8d8563289fa6faccfa68c3e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.139.0 (2026-01-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added EntityLimitExceeded exception handling to the following API operations AssociateDistributionWebACL, AssociateDistributionTenantWebACL, UpdateDistributionWithStagingConfig
|
|
8
|
+
|
|
4
9
|
1.138.0 (2026-01-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.139.0
|
|
@@ -13731,7 +13731,7 @@ module Aws::CloudFront
|
|
|
13731
13731
|
tracer: tracer
|
|
13732
13732
|
)
|
|
13733
13733
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
|
13734
|
-
context[:gem_version] = '1.
|
|
13734
|
+
context[:gem_version] = '1.139.0'
|
|
13735
13735
|
Seahorse::Client::Request.new(handlers, context)
|
|
13736
13736
|
end
|
|
13737
13737
|
|
|
@@ -4269,6 +4269,7 @@ module Aws::CloudFront
|
|
|
4269
4269
|
o.errors << Shapes::ShapeRef.new(shape: AccessDenied)
|
|
4270
4270
|
o.errors << Shapes::ShapeRef.new(shape: EntityNotFound)
|
|
4271
4271
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgument)
|
|
4272
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityLimitExceeded)
|
|
4272
4273
|
o.errors << Shapes::ShapeRef.new(shape: InvalidIfMatchVersion)
|
|
4273
4274
|
end)
|
|
4274
4275
|
|
|
@@ -4287,6 +4288,7 @@ module Aws::CloudFront
|
|
|
4287
4288
|
o.errors << Shapes::ShapeRef.new(shape: AccessDenied)
|
|
4288
4289
|
o.errors << Shapes::ShapeRef.new(shape: EntityNotFound)
|
|
4289
4290
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgument)
|
|
4291
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityLimitExceeded)
|
|
4290
4292
|
o.errors << Shapes::ShapeRef.new(shape: InvalidIfMatchVersion)
|
|
4291
4293
|
end)
|
|
4292
4294
|
|
|
@@ -6638,6 +6640,7 @@ module Aws::CloudFront
|
|
|
6638
6640
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFunctionAssociation)
|
|
6639
6641
|
o.errors << Shapes::ShapeRef.new(shape: TooManyDistributionsWithLambdaAssociations)
|
|
6640
6642
|
o.errors << Shapes::ShapeRef.new(shape: TooManyDistributionsAssociatedToKeyGroup)
|
|
6643
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityLimitExceeded)
|
|
6641
6644
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchOrigin)
|
|
6642
6645
|
o.errors << Shapes::ShapeRef.new(shape: TooManyCacheBehaviors)
|
|
6643
6646
|
end)
|
data/lib/aws-sdk-cloudfront.rb
CHANGED