aws-sdk-ecr 1.49.0 → 1.53.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecr/client.rb +362 -11
- data/lib/aws-sdk-ecr/client_api.rb +373 -1
- data/lib/aws-sdk-ecr/errors.rb +48 -0
- data/lib/aws-sdk-ecr/types.rb +973 -15
- data/lib/aws-sdk-ecr.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-ecr/errors.rb
CHANGED
@@ -45,6 +45,8 @@ module Aws::ECR
|
|
45
45
|
# * {LifecyclePolicyPreviewInProgressException}
|
46
46
|
# * {LifecyclePolicyPreviewNotFoundException}
|
47
47
|
# * {LimitExceededException}
|
48
|
+
# * {PullThroughCacheRuleAlreadyExistsException}
|
49
|
+
# * {PullThroughCacheRuleNotFoundException}
|
48
50
|
# * {ReferencedImagesNotFoundException}
|
49
51
|
# * {RegistryPolicyNotFoundException}
|
50
52
|
# * {RepositoryAlreadyExistsException}
|
@@ -55,6 +57,7 @@ module Aws::ECR
|
|
55
57
|
# * {ServerException}
|
56
58
|
# * {TooManyTagsException}
|
57
59
|
# * {UnsupportedImageTypeException}
|
60
|
+
# * {UnsupportedUpstreamRegistryException}
|
58
61
|
# * {UploadNotFoundException}
|
59
62
|
# * {ValidationException}
|
60
63
|
#
|
@@ -359,6 +362,36 @@ module Aws::ECR
|
|
359
362
|
end
|
360
363
|
end
|
361
364
|
|
365
|
+
class PullThroughCacheRuleAlreadyExistsException < ServiceError
|
366
|
+
|
367
|
+
# @param [Seahorse::Client::RequestContext] context
|
368
|
+
# @param [String] message
|
369
|
+
# @param [Aws::ECR::Types::PullThroughCacheRuleAlreadyExistsException] data
|
370
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
371
|
+
super(context, message, data)
|
372
|
+
end
|
373
|
+
|
374
|
+
# @return [String]
|
375
|
+
def message
|
376
|
+
@message || @data[:message]
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
class PullThroughCacheRuleNotFoundException < ServiceError
|
381
|
+
|
382
|
+
# @param [Seahorse::Client::RequestContext] context
|
383
|
+
# @param [String] message
|
384
|
+
# @param [Aws::ECR::Types::PullThroughCacheRuleNotFoundException] data
|
385
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
386
|
+
super(context, message, data)
|
387
|
+
end
|
388
|
+
|
389
|
+
# @return [String]
|
390
|
+
def message
|
391
|
+
@message || @data[:message]
|
392
|
+
end
|
393
|
+
end
|
394
|
+
|
362
395
|
class ReferencedImagesNotFoundException < ServiceError
|
363
396
|
|
364
397
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -509,6 +542,21 @@ module Aws::ECR
|
|
509
542
|
end
|
510
543
|
end
|
511
544
|
|
545
|
+
class UnsupportedUpstreamRegistryException < ServiceError
|
546
|
+
|
547
|
+
# @param [Seahorse::Client::RequestContext] context
|
548
|
+
# @param [String] message
|
549
|
+
# @param [Aws::ECR::Types::UnsupportedUpstreamRegistryException] data
|
550
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
551
|
+
super(context, message, data)
|
552
|
+
end
|
553
|
+
|
554
|
+
# @return [String]
|
555
|
+
def message
|
556
|
+
@message || @data[:message]
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
512
560
|
class UploadNotFoundException < ServiceError
|
513
561
|
|
514
562
|
# @param [Seahorse::Client::RequestContext] context
|