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
data/sig/errors.rbs
CHANGED
@@ -107,6 +107,9 @@ module Aws
|
|
107
107
|
class InvalidArgument < ::Aws::Errors::ServiceError
|
108
108
|
def message: () -> ::String
|
109
109
|
end
|
110
|
+
class InvalidAssociation < ::Aws::Errors::ServiceError
|
111
|
+
def message: () -> ::String
|
112
|
+
end
|
110
113
|
class InvalidDefaultRootObject < ::Aws::Errors::ServiceError
|
111
114
|
def message: () -> ::String
|
112
115
|
end
|
@@ -278,6 +281,9 @@ module Aws
|
|
278
281
|
class ResourceInUse < ::Aws::Errors::ServiceError
|
279
282
|
def message: () -> ::String
|
280
283
|
end
|
284
|
+
class ResourceNotDisabled < ::Aws::Errors::ServiceError
|
285
|
+
def message: () -> ::String
|
286
|
+
end
|
281
287
|
class ResponseHeadersPolicyAlreadyExists < ::Aws::Errors::ServiceError
|
282
288
|
def message: () -> ::String
|
283
289
|
end
|