aws-sdk-cloudfront 1.114.0 → 1.115.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 +1742 -117
- data/lib/aws-sdk-cloudfront/client_api.rb +907 -0
- data/lib/aws-sdk-cloudfront/errors.rb +32 -0
- data/lib/aws-sdk-cloudfront/types.rb +1889 -32
- data/lib/aws-sdk-cloudfront/waiters.rb +43 -5
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +454 -9
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +512 -4
- data/sig/waiters.rbs +11 -0
- metadata +2 -2
@@ -59,6 +59,7 @@ module Aws::CloudFront
|
|
59
59
|
# * {IllegalUpdate}
|
60
60
|
# * {InconsistentQuantities}
|
61
61
|
# * {InvalidArgument}
|
62
|
+
# * {InvalidAssociation}
|
62
63
|
# * {InvalidDefaultRootObject}
|
63
64
|
# * {InvalidDomainNameForOriginAccessControl}
|
64
65
|
# * {InvalidErrorCode}
|
@@ -116,6 +117,7 @@ module Aws::CloudFront
|
|
116
117
|
# * {RealtimeLogConfigInUse}
|
117
118
|
# * {RealtimeLogConfigOwnerMismatch}
|
118
119
|
# * {ResourceInUse}
|
120
|
+
# * {ResourceNotDisabled}
|
119
121
|
# * {ResponseHeadersPolicyAlreadyExists}
|
120
122
|
# * {ResponseHeadersPolicyInUse}
|
121
123
|
# * {StagingDistributionInUse}
|
@@ -664,6 +666,21 @@ module Aws::CloudFront
|
|
664
666
|
end
|
665
667
|
end
|
666
668
|
|
669
|
+
class InvalidAssociation < ServiceError
|
670
|
+
|
671
|
+
# @param [Seahorse::Client::RequestContext] context
|
672
|
+
# @param [String] message
|
673
|
+
# @param [Aws::CloudFront::Types::InvalidAssociation] data
|
674
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
675
|
+
super(context, message, data)
|
676
|
+
end
|
677
|
+
|
678
|
+
# @return [String]
|
679
|
+
def message
|
680
|
+
@message || @data[:message]
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
667
684
|
class InvalidDefaultRootObject < ServiceError
|
668
685
|
|
669
686
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1519,6 +1536,21 @@ module Aws::CloudFront
|
|
1519
1536
|
end
|
1520
1537
|
end
|
1521
1538
|
|
1539
|
+
class ResourceNotDisabled < ServiceError
|
1540
|
+
|
1541
|
+
# @param [Seahorse::Client::RequestContext] context
|
1542
|
+
# @param [String] message
|
1543
|
+
# @param [Aws::CloudFront::Types::ResourceNotDisabled] data
|
1544
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1545
|
+
super(context, message, data)
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
# @return [String]
|
1549
|
+
def message
|
1550
|
+
@message || @data[:message]
|
1551
|
+
end
|
1552
|
+
end
|
1553
|
+
|
1522
1554
|
class ResponseHeadersPolicyAlreadyExists < ServiceError
|
1523
1555
|
|
1524
1556
|
# @param [Seahorse::Client::RequestContext] context
|