aws-sdk-ecr 1.28.0 → 1.33.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/lib/aws-sdk-ecr.rb +3 -1
- data/lib/aws-sdk-ecr/client.rb +27 -9
- data/lib/aws-sdk-ecr/client_api.rb +10 -0
- data/lib/aws-sdk-ecr/customizations.rb +1 -0
- data/lib/aws-sdk-ecr/errors.rb +18 -0
- data/lib/aws-sdk-ecr/resource.rb +2 -0
- data/lib/aws-sdk-ecr/types.rb +150 -11
- data/lib/aws-sdk-ecr/waiters.rb +2 -0
- 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: 6954dd0033c1368041d7d973927c9233c1f1cddd18bfecbf4e9f534eeb597174
|
4
|
+
data.tar.gz: bc27920674c82bdc4d115d663d9f22592a1dafb0083e34e3a8da01a8815f5163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ae5317c3ff61f2f9f7810a8dd2544fb8b186f92110f63000d01194d91bbfb5896eb90003b0c654a5f16a5aa306fa7b5c5ad4035b3af824ee9afb7ce1a3b6040
|
7
|
+
data.tar.gz: f99f05c5fb4c1c21db52b28ed785f9655ba6363db78bc5d1ed9e36e5fa28de5e201486053e9274423215887038431d27903de79fd4370a2dd9caa7ad5af5ef6b
|
data/lib/aws-sdk-ecr.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-ecr/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::ECR
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.33.0'
|
50
52
|
|
51
53
|
end
|
data/lib/aws-sdk-ecr/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ECR
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::ECR
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ECR
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -549,6 +553,7 @@ module Aws::ECR
|
|
549
553
|
# resp.images[0].image_id.image_digest #=> String
|
550
554
|
# resp.images[0].image_id.image_tag #=> String
|
551
555
|
# resp.images[0].image_manifest #=> String
|
556
|
+
# resp.images[0].image_manifest_media_type #=> String
|
552
557
|
# resp.failures #=> Array
|
553
558
|
# resp.failures[0].image_id.image_digest #=> String
|
554
559
|
# resp.failures[0].image_id.image_tag #=> String
|
@@ -1678,10 +1683,18 @@ module Aws::ECR
|
|
1678
1683
|
# @option params [required, String] :image_manifest
|
1679
1684
|
# The image manifest corresponding to the image to be uploaded.
|
1680
1685
|
#
|
1686
|
+
# @option params [String] :image_manifest_media_type
|
1687
|
+
# The media type of the image manifest. If you push an image manifest
|
1688
|
+
# that does not contain the `mediaType` field, you must specify the
|
1689
|
+
# `imageManifestMediaType` in the request.
|
1690
|
+
#
|
1681
1691
|
# @option params [String] :image_tag
|
1682
1692
|
# The tag to associate with the image. This parameter is required for
|
1683
1693
|
# images that use the Docker Image Manifest V2 Schema 2 or OCI formats.
|
1684
1694
|
#
|
1695
|
+
# @option params [String] :image_digest
|
1696
|
+
# The image digest of the image manifest corresponding to the image.
|
1697
|
+
#
|
1685
1698
|
# @return [Types::PutImageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1686
1699
|
#
|
1687
1700
|
# * {Types::PutImageResponse#image #image} => Types::Image
|
@@ -1692,7 +1705,9 @@ module Aws::ECR
|
|
1692
1705
|
# registry_id: "RegistryId",
|
1693
1706
|
# repository_name: "RepositoryName", # required
|
1694
1707
|
# image_manifest: "ImageManifest", # required
|
1708
|
+
# image_manifest_media_type: "MediaType",
|
1695
1709
|
# image_tag: "ImageTag",
|
1710
|
+
# image_digest: "ImageDigest",
|
1696
1711
|
# })
|
1697
1712
|
#
|
1698
1713
|
# @example Response structure
|
@@ -1702,6 +1717,7 @@ module Aws::ECR
|
|
1702
1717
|
# resp.image.image_id.image_digest #=> String
|
1703
1718
|
# resp.image.image_id.image_tag #=> String
|
1704
1719
|
# resp.image.image_manifest #=> String
|
1720
|
+
# resp.image.image_manifest_media_type #=> String
|
1705
1721
|
#
|
1706
1722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutImage AWS API Documentation
|
1707
1723
|
#
|
@@ -1865,7 +1881,7 @@ module Aws::ECR
|
|
1865
1881
|
#
|
1866
1882
|
#
|
1867
1883
|
#
|
1868
|
-
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/
|
1884
|
+
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policies.html
|
1869
1885
|
#
|
1870
1886
|
# @option params [String] :registry_id
|
1871
1887
|
# The AWS account ID associated with the registry that contains the
|
@@ -1877,12 +1893,12 @@ module Aws::ECR
|
|
1877
1893
|
#
|
1878
1894
|
# @option params [required, String] :policy_text
|
1879
1895
|
# The JSON repository policy text to apply to the repository. For more
|
1880
|
-
# information, see [Amazon ECR Repository
|
1881
|
-
#
|
1896
|
+
# information, see [Amazon ECR Repository Policies][1] in the *Amazon
|
1897
|
+
# Elastic Container Registry User Guide*.
|
1882
1898
|
#
|
1883
1899
|
#
|
1884
1900
|
#
|
1885
|
-
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/
|
1901
|
+
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html
|
1886
1902
|
#
|
1887
1903
|
# @option params [Boolean] :force
|
1888
1904
|
# If the policy you are attempting to set on a repository policy would
|
@@ -2114,10 +2130,12 @@ module Aws::ECR
|
|
2114
2130
|
# associate with the layer part upload.
|
2115
2131
|
#
|
2116
2132
|
# @option params [required, Integer] :part_first_byte
|
2117
|
-
# The
|
2133
|
+
# The position of the first byte of the layer part witin the overall
|
2134
|
+
# image layer.
|
2118
2135
|
#
|
2119
2136
|
# @option params [required, Integer] :part_last_byte
|
2120
|
-
# The
|
2137
|
+
# The position of the last byte of the layer part within the overall
|
2138
|
+
# image layer.
|
2121
2139
|
#
|
2122
2140
|
# @option params [required, String, IO] :layer_part_blob
|
2123
2141
|
# The base64-encoded layer part payload.
|
@@ -2169,7 +2187,7 @@ module Aws::ECR
|
|
2169
2187
|
params: params,
|
2170
2188
|
config: config)
|
2171
2189
|
context[:gem_name] = 'aws-sdk-ecr'
|
2172
|
-
context[:gem_version] = '1.
|
2190
|
+
context[:gem_version] = '1.33.0'
|
2173
2191
|
Seahorse::Client::Request.new(handlers, context)
|
2174
2192
|
end
|
2175
2193
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -72,6 +74,7 @@ module Aws::ECR
|
|
72
74
|
ImageDetail = Shapes::StructureShape.new(name: 'ImageDetail')
|
73
75
|
ImageDetailList = Shapes::ListShape.new(name: 'ImageDetailList')
|
74
76
|
ImageDigest = Shapes::StringShape.new(name: 'ImageDigest')
|
77
|
+
ImageDigestDoesNotMatchException = Shapes::StructureShape.new(name: 'ImageDigestDoesNotMatchException')
|
75
78
|
ImageFailure = Shapes::StructureShape.new(name: 'ImageFailure')
|
76
79
|
ImageFailureCode = Shapes::StringShape.new(name: 'ImageFailureCode')
|
77
80
|
ImageFailureList = Shapes::ListShape.new(name: 'ImageFailureList')
|
@@ -383,6 +386,7 @@ module Aws::ECR
|
|
383
386
|
Image.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
384
387
|
Image.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageIdentifier, location_name: "imageId"))
|
385
388
|
Image.add_member(:image_manifest, Shapes::ShapeRef.new(shape: ImageManifest, location_name: "imageManifest"))
|
389
|
+
Image.add_member(:image_manifest_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "imageManifestMediaType"))
|
386
390
|
Image.struct_class = Types::Image
|
387
391
|
|
388
392
|
ImageAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
@@ -400,6 +404,9 @@ module Aws::ECR
|
|
400
404
|
|
401
405
|
ImageDetailList.member = Shapes::ShapeRef.new(shape: ImageDetail)
|
402
406
|
|
407
|
+
ImageDigestDoesNotMatchException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
408
|
+
ImageDigestDoesNotMatchException.struct_class = Types::ImageDigestDoesNotMatchException
|
409
|
+
|
403
410
|
ImageFailure.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageIdentifier, location_name: "imageId"))
|
404
411
|
ImageFailure.add_member(:failure_code, Shapes::ShapeRef.new(shape: ImageFailureCode, location_name: "failureCode"))
|
405
412
|
ImageFailure.add_member(:failure_reason, Shapes::ShapeRef.new(shape: ImageFailureReason, location_name: "failureReason"))
|
@@ -558,7 +565,9 @@ module Aws::ECR
|
|
558
565
|
PutImageRequest.add_member(:registry_id, Shapes::ShapeRef.new(shape: RegistryId, location_name: "registryId"))
|
559
566
|
PutImageRequest.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
560
567
|
PutImageRequest.add_member(:image_manifest, Shapes::ShapeRef.new(shape: ImageManifest, required: true, location_name: "imageManifest"))
|
568
|
+
PutImageRequest.add_member(:image_manifest_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "imageManifestMediaType"))
|
561
569
|
PutImageRequest.add_member(:image_tag, Shapes::ShapeRef.new(shape: ImageTag, location_name: "imageTag"))
|
570
|
+
PutImageRequest.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "imageDigest"))
|
562
571
|
PutImageRequest.struct_class = Types::PutImageRequest
|
563
572
|
|
564
573
|
PutImageResponse.add_member(:image, Shapes::ShapeRef.new(shape: Image, location_name: "image"))
|
@@ -995,6 +1004,7 @@ module Aws::ECR
|
|
995
1004
|
o.errors << Shapes::ShapeRef.new(shape: ReferencedImagesNotFoundException)
|
996
1005
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
997
1006
|
o.errors << Shapes::ShapeRef.new(shape: ImageTagAlreadyExistsException)
|
1007
|
+
o.errors << Shapes::ShapeRef.new(shape: ImageDigestDoesNotMatchException)
|
998
1008
|
end)
|
999
1009
|
|
1000
1010
|
api.add_operation(:put_image_scanning_configuration, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ecr/errors.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -27,6 +29,7 @@ module Aws::ECR
|
|
27
29
|
# ## Error Classes
|
28
30
|
# * {EmptyUploadException}
|
29
31
|
# * {ImageAlreadyExistsException}
|
32
|
+
# * {ImageDigestDoesNotMatchException}
|
30
33
|
# * {ImageNotFoundException}
|
31
34
|
# * {ImageTagAlreadyExistsException}
|
32
35
|
# * {InvalidLayerException}
|
@@ -88,6 +91,21 @@ module Aws::ECR
|
|
88
91
|
end
|
89
92
|
end
|
90
93
|
|
94
|
+
class ImageDigestDoesNotMatchException < ServiceError
|
95
|
+
|
96
|
+
# @param [Seahorse::Client::RequestContext] context
|
97
|
+
# @param [String] message
|
98
|
+
# @param [Aws::ECR::Types::ImageDigestDoesNotMatchException] data
|
99
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
100
|
+
super(context, message, data)
|
101
|
+
end
|
102
|
+
|
103
|
+
# @return [String]
|
104
|
+
def message
|
105
|
+
@message || @data[:message]
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
91
109
|
class ImageNotFoundException < ServiceError
|
92
110
|
|
93
111
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-ecr/resource.rb
CHANGED
data/lib/aws-sdk-ecr/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -23,6 +25,7 @@ module Aws::ECR
|
|
23
25
|
class Attribute < Struct.new(
|
24
26
|
:key,
|
25
27
|
:value)
|
28
|
+
SENSITIVE = []
|
26
29
|
include Aws::Structure
|
27
30
|
end
|
28
31
|
|
@@ -53,6 +56,7 @@ module Aws::ECR
|
|
53
56
|
:authorization_token,
|
54
57
|
:expires_at,
|
55
58
|
:proxy_endpoint)
|
59
|
+
SENSITIVE = []
|
56
60
|
include Aws::Structure
|
57
61
|
end
|
58
62
|
|
@@ -86,6 +90,7 @@ module Aws::ECR
|
|
86
90
|
:registry_id,
|
87
91
|
:repository_name,
|
88
92
|
:layer_digests)
|
93
|
+
SENSITIVE = []
|
89
94
|
include Aws::Structure
|
90
95
|
end
|
91
96
|
|
@@ -103,6 +108,7 @@ module Aws::ECR
|
|
103
108
|
class BatchCheckLayerAvailabilityResponse < Struct.new(
|
104
109
|
:layers,
|
105
110
|
:failures)
|
111
|
+
SENSITIVE = []
|
106
112
|
include Aws::Structure
|
107
113
|
end
|
108
114
|
|
@@ -145,6 +151,7 @@ module Aws::ECR
|
|
145
151
|
:registry_id,
|
146
152
|
:repository_name,
|
147
153
|
:image_ids)
|
154
|
+
SENSITIVE = []
|
148
155
|
include Aws::Structure
|
149
156
|
end
|
150
157
|
|
@@ -161,6 +168,7 @@ module Aws::ECR
|
|
161
168
|
class BatchDeleteImageResponse < Struct.new(
|
162
169
|
:image_ids,
|
163
170
|
:failures)
|
171
|
+
SENSITIVE = []
|
164
172
|
include Aws::Structure
|
165
173
|
end
|
166
174
|
|
@@ -210,6 +218,7 @@ module Aws::ECR
|
|
210
218
|
:repository_name,
|
211
219
|
:image_ids,
|
212
220
|
:accepted_media_types)
|
221
|
+
SENSITIVE = []
|
213
222
|
include Aws::Structure
|
214
223
|
end
|
215
224
|
|
@@ -227,6 +236,7 @@ module Aws::ECR
|
|
227
236
|
class BatchGetImageResponse < Struct.new(
|
228
237
|
:images,
|
229
238
|
:failures)
|
239
|
+
SENSITIVE = []
|
230
240
|
include Aws::Structure
|
231
241
|
end
|
232
242
|
|
@@ -266,6 +276,7 @@ module Aws::ECR
|
|
266
276
|
:repository_name,
|
267
277
|
:upload_id,
|
268
278
|
:layer_digests)
|
279
|
+
SENSITIVE = []
|
269
280
|
include Aws::Structure
|
270
281
|
end
|
271
282
|
|
@@ -292,6 +303,7 @@ module Aws::ECR
|
|
292
303
|
:repository_name,
|
293
304
|
:upload_id,
|
294
305
|
:layer_digest)
|
306
|
+
SENSITIVE = []
|
295
307
|
include Aws::Structure
|
296
308
|
end
|
297
309
|
|
@@ -348,6 +360,7 @@ module Aws::ECR
|
|
348
360
|
:tags,
|
349
361
|
:image_tag_mutability,
|
350
362
|
:image_scanning_configuration)
|
363
|
+
SENSITIVE = []
|
351
364
|
include Aws::Structure
|
352
365
|
end
|
353
366
|
|
@@ -359,6 +372,7 @@ module Aws::ECR
|
|
359
372
|
#
|
360
373
|
class CreateRepositoryResponse < Struct.new(
|
361
374
|
:repository)
|
375
|
+
SENSITIVE = []
|
362
376
|
include Aws::Structure
|
363
377
|
end
|
364
378
|
|
@@ -385,6 +399,7 @@ module Aws::ECR
|
|
385
399
|
class DeleteLifecyclePolicyRequest < Struct.new(
|
386
400
|
:registry_id,
|
387
401
|
:repository_name)
|
402
|
+
SENSITIVE = []
|
388
403
|
include Aws::Structure
|
389
404
|
end
|
390
405
|
|
@@ -411,6 +426,7 @@ module Aws::ECR
|
|
411
426
|
:repository_name,
|
412
427
|
:lifecycle_policy_text,
|
413
428
|
:last_evaluated_at)
|
429
|
+
SENSITIVE = []
|
414
430
|
include Aws::Structure
|
415
431
|
end
|
416
432
|
|
@@ -438,6 +454,7 @@ module Aws::ECR
|
|
438
454
|
class DeleteRepositoryPolicyRequest < Struct.new(
|
439
455
|
:registry_id,
|
440
456
|
:repository_name)
|
457
|
+
SENSITIVE = []
|
441
458
|
include Aws::Structure
|
442
459
|
end
|
443
460
|
|
@@ -459,6 +476,7 @@ module Aws::ECR
|
|
459
476
|
:registry_id,
|
460
477
|
:repository_name,
|
461
478
|
:policy_text)
|
479
|
+
SENSITIVE = []
|
462
480
|
include Aws::Structure
|
463
481
|
end
|
464
482
|
|
@@ -491,6 +509,7 @@ module Aws::ECR
|
|
491
509
|
:registry_id,
|
492
510
|
:repository_name,
|
493
511
|
:force)
|
512
|
+
SENSITIVE = []
|
494
513
|
include Aws::Structure
|
495
514
|
end
|
496
515
|
|
@@ -502,6 +521,7 @@ module Aws::ECR
|
|
502
521
|
#
|
503
522
|
class DeleteRepositoryResponse < Struct.new(
|
504
523
|
:repository)
|
524
|
+
SENSITIVE = []
|
505
525
|
include Aws::Structure
|
506
526
|
end
|
507
527
|
|
@@ -563,6 +583,7 @@ module Aws::ECR
|
|
563
583
|
:image_id,
|
564
584
|
:next_token,
|
565
585
|
:max_results)
|
586
|
+
SENSITIVE = []
|
566
587
|
include Aws::Structure
|
567
588
|
end
|
568
589
|
|
@@ -603,6 +624,7 @@ module Aws::ECR
|
|
603
624
|
:image_scan_status,
|
604
625
|
:image_scan_findings,
|
605
626
|
:next_token)
|
627
|
+
SENSITIVE = []
|
606
628
|
include Aws::Structure
|
607
629
|
end
|
608
630
|
|
@@ -624,6 +646,7 @@ module Aws::ECR
|
|
624
646
|
#
|
625
647
|
class DescribeImagesFilter < Struct.new(
|
626
648
|
:tag_status)
|
649
|
+
SENSITIVE = []
|
627
650
|
include Aws::Structure
|
628
651
|
end
|
629
652
|
|
@@ -696,6 +719,7 @@ module Aws::ECR
|
|
696
719
|
:next_token,
|
697
720
|
:max_results,
|
698
721
|
:filter)
|
722
|
+
SENSITIVE = []
|
699
723
|
include Aws::Structure
|
700
724
|
end
|
701
725
|
|
@@ -716,6 +740,7 @@ module Aws::ECR
|
|
716
740
|
class DescribeImagesResponse < Struct.new(
|
717
741
|
:image_details,
|
718
742
|
:next_token)
|
743
|
+
SENSITIVE = []
|
719
744
|
include Aws::Structure
|
720
745
|
end
|
721
746
|
|
@@ -776,6 +801,7 @@ module Aws::ECR
|
|
776
801
|
:repository_names,
|
777
802
|
:next_token,
|
778
803
|
:max_results)
|
804
|
+
SENSITIVE = []
|
779
805
|
include Aws::Structure
|
780
806
|
end
|
781
807
|
|
@@ -796,6 +822,7 @@ module Aws::ECR
|
|
796
822
|
class DescribeRepositoriesResponse < Struct.new(
|
797
823
|
:repositories,
|
798
824
|
:next_token)
|
825
|
+
SENSITIVE = []
|
799
826
|
include Aws::Structure
|
800
827
|
end
|
801
828
|
|
@@ -809,6 +836,7 @@ module Aws::ECR
|
|
809
836
|
#
|
810
837
|
class EmptyUploadException < Struct.new(
|
811
838
|
:message)
|
839
|
+
SENSITIVE = []
|
812
840
|
include Aws::Structure
|
813
841
|
end
|
814
842
|
|
@@ -829,6 +857,7 @@ module Aws::ECR
|
|
829
857
|
#
|
830
858
|
class GetAuthorizationTokenRequest < Struct.new(
|
831
859
|
:registry_ids)
|
860
|
+
SENSITIVE = []
|
832
861
|
include Aws::Structure
|
833
862
|
end
|
834
863
|
|
@@ -841,6 +870,7 @@ module Aws::ECR
|
|
841
870
|
#
|
842
871
|
class GetAuthorizationTokenResponse < Struct.new(
|
843
872
|
:authorization_data)
|
873
|
+
SENSITIVE = []
|
844
874
|
include Aws::Structure
|
845
875
|
end
|
846
876
|
|
@@ -874,6 +904,7 @@ module Aws::ECR
|
|
874
904
|
:registry_id,
|
875
905
|
:repository_name,
|
876
906
|
:layer_digest)
|
907
|
+
SENSITIVE = []
|
877
908
|
include Aws::Structure
|
878
909
|
end
|
879
910
|
|
@@ -890,6 +921,7 @@ module Aws::ECR
|
|
890
921
|
class GetDownloadUrlForLayerResponse < Struct.new(
|
891
922
|
:download_url,
|
892
923
|
:layer_digest)
|
924
|
+
SENSITIVE = []
|
893
925
|
include Aws::Structure
|
894
926
|
end
|
895
927
|
|
@@ -964,6 +996,7 @@ module Aws::ECR
|
|
964
996
|
:next_token,
|
965
997
|
:max_results,
|
966
998
|
:filter)
|
999
|
+
SENSITIVE = []
|
967
1000
|
include Aws::Structure
|
968
1001
|
end
|
969
1002
|
|
@@ -1009,6 +1042,7 @@ module Aws::ECR
|
|
1009
1042
|
:next_token,
|
1010
1043
|
:preview_results,
|
1011
1044
|
:summary)
|
1045
|
+
SENSITIVE = []
|
1012
1046
|
include Aws::Structure
|
1013
1047
|
end
|
1014
1048
|
|
@@ -1035,6 +1069,7 @@ module Aws::ECR
|
|
1035
1069
|
class GetLifecyclePolicyRequest < Struct.new(
|
1036
1070
|
:registry_id,
|
1037
1071
|
:repository_name)
|
1072
|
+
SENSITIVE = []
|
1038
1073
|
include Aws::Structure
|
1039
1074
|
end
|
1040
1075
|
|
@@ -1061,6 +1096,7 @@ module Aws::ECR
|
|
1061
1096
|
:repository_name,
|
1062
1097
|
:lifecycle_policy_text,
|
1063
1098
|
:last_evaluated_at)
|
1099
|
+
SENSITIVE = []
|
1064
1100
|
include Aws::Structure
|
1065
1101
|
end
|
1066
1102
|
|
@@ -1087,6 +1123,7 @@ module Aws::ECR
|
|
1087
1123
|
class GetRepositoryPolicyRequest < Struct.new(
|
1088
1124
|
:registry_id,
|
1089
1125
|
:repository_name)
|
1126
|
+
SENSITIVE = []
|
1090
1127
|
include Aws::Structure
|
1091
1128
|
end
|
1092
1129
|
|
@@ -1108,6 +1145,7 @@ module Aws::ECR
|
|
1108
1145
|
:registry_id,
|
1109
1146
|
:repository_name,
|
1110
1147
|
:policy_text)
|
1148
|
+
SENSITIVE = []
|
1111
1149
|
include Aws::Structure
|
1112
1150
|
end
|
1113
1151
|
|
@@ -1131,13 +1169,19 @@ module Aws::ECR
|
|
1131
1169
|
# The image manifest associated with the image.
|
1132
1170
|
# @return [String]
|
1133
1171
|
#
|
1172
|
+
# @!attribute [rw] image_manifest_media_type
|
1173
|
+
# The media type associated with the image manifest.
|
1174
|
+
# @return [String]
|
1175
|
+
#
|
1134
1176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/Image AWS API Documentation
|
1135
1177
|
#
|
1136
1178
|
class Image < Struct.new(
|
1137
1179
|
:registry_id,
|
1138
1180
|
:repository_name,
|
1139
1181
|
:image_id,
|
1140
|
-
:image_manifest
|
1182
|
+
:image_manifest,
|
1183
|
+
:image_manifest_media_type)
|
1184
|
+
SENSITIVE = []
|
1141
1185
|
include Aws::Structure
|
1142
1186
|
end
|
1143
1187
|
|
@@ -1152,6 +1196,7 @@ module Aws::ECR
|
|
1152
1196
|
#
|
1153
1197
|
class ImageAlreadyExistsException < Struct.new(
|
1154
1198
|
:message)
|
1199
|
+
SENSITIVE = []
|
1155
1200
|
include Aws::Structure
|
1156
1201
|
end
|
1157
1202
|
|
@@ -1214,6 +1259,21 @@ module Aws::ECR
|
|
1214
1259
|
:image_pushed_at,
|
1215
1260
|
:image_scan_status,
|
1216
1261
|
:image_scan_findings_summary)
|
1262
|
+
SENSITIVE = []
|
1263
|
+
include Aws::Structure
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
# The specified image digest does not match the digest that Amazon ECR
|
1267
|
+
# calculated for the image.
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] message
|
1270
|
+
# @return [String]
|
1271
|
+
#
|
1272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/ImageDigestDoesNotMatchException AWS API Documentation
|
1273
|
+
#
|
1274
|
+
class ImageDigestDoesNotMatchException < Struct.new(
|
1275
|
+
:message)
|
1276
|
+
SENSITIVE = []
|
1217
1277
|
include Aws::Structure
|
1218
1278
|
end
|
1219
1279
|
|
@@ -1237,6 +1297,7 @@ module Aws::ECR
|
|
1237
1297
|
:image_id,
|
1238
1298
|
:failure_code,
|
1239
1299
|
:failure_reason)
|
1300
|
+
SENSITIVE = []
|
1240
1301
|
include Aws::Structure
|
1241
1302
|
end
|
1242
1303
|
|
@@ -1263,6 +1324,7 @@ module Aws::ECR
|
|
1263
1324
|
class ImageIdentifier < Struct.new(
|
1264
1325
|
:image_digest,
|
1265
1326
|
:image_tag)
|
1327
|
+
SENSITIVE = []
|
1266
1328
|
include Aws::Structure
|
1267
1329
|
end
|
1268
1330
|
|
@@ -1275,6 +1337,7 @@ module Aws::ECR
|
|
1275
1337
|
#
|
1276
1338
|
class ImageNotFoundException < Struct.new(
|
1277
1339
|
:message)
|
1340
|
+
SENSITIVE = []
|
1278
1341
|
include Aws::Structure
|
1279
1342
|
end
|
1280
1343
|
|
@@ -1310,6 +1373,7 @@ module Aws::ECR
|
|
1310
1373
|
:uri,
|
1311
1374
|
:severity,
|
1312
1375
|
:attributes)
|
1376
|
+
SENSITIVE = []
|
1313
1377
|
include Aws::Structure
|
1314
1378
|
end
|
1315
1379
|
|
@@ -1338,6 +1402,7 @@ module Aws::ECR
|
|
1338
1402
|
:vulnerability_source_updated_at,
|
1339
1403
|
:findings,
|
1340
1404
|
:finding_severity_counts)
|
1405
|
+
SENSITIVE = []
|
1341
1406
|
include Aws::Structure
|
1342
1407
|
end
|
1343
1408
|
|
@@ -1361,6 +1426,7 @@ module Aws::ECR
|
|
1361
1426
|
:image_scan_completed_at,
|
1362
1427
|
:vulnerability_source_updated_at,
|
1363
1428
|
:finding_severity_counts)
|
1429
|
+
SENSITIVE = []
|
1364
1430
|
include Aws::Structure
|
1365
1431
|
end
|
1366
1432
|
|
@@ -1379,6 +1445,7 @@ module Aws::ECR
|
|
1379
1445
|
class ImageScanStatus < Struct.new(
|
1380
1446
|
:status,
|
1381
1447
|
:description)
|
1448
|
+
SENSITIVE = []
|
1382
1449
|
include Aws::Structure
|
1383
1450
|
end
|
1384
1451
|
|
@@ -1403,6 +1470,7 @@ module Aws::ECR
|
|
1403
1470
|
#
|
1404
1471
|
class ImageScanningConfiguration < Struct.new(
|
1405
1472
|
:scan_on_push)
|
1473
|
+
SENSITIVE = []
|
1406
1474
|
include Aws::Structure
|
1407
1475
|
end
|
1408
1476
|
|
@@ -1416,6 +1484,7 @@ module Aws::ECR
|
|
1416
1484
|
#
|
1417
1485
|
class ImageTagAlreadyExistsException < Struct.new(
|
1418
1486
|
:message)
|
1487
|
+
SENSITIVE = []
|
1419
1488
|
include Aws::Structure
|
1420
1489
|
end
|
1421
1490
|
|
@@ -1442,6 +1511,7 @@ module Aws::ECR
|
|
1442
1511
|
class InitiateLayerUploadRequest < Struct.new(
|
1443
1512
|
:registry_id,
|
1444
1513
|
:repository_name)
|
1514
|
+
SENSITIVE = []
|
1445
1515
|
include Aws::Structure
|
1446
1516
|
end
|
1447
1517
|
|
@@ -1460,6 +1530,7 @@ module Aws::ECR
|
|
1460
1530
|
class InitiateLayerUploadResponse < Struct.new(
|
1461
1531
|
:upload_id,
|
1462
1532
|
:part_size)
|
1533
|
+
SENSITIVE = []
|
1463
1534
|
include Aws::Structure
|
1464
1535
|
end
|
1465
1536
|
|
@@ -1474,6 +1545,7 @@ module Aws::ECR
|
|
1474
1545
|
#
|
1475
1546
|
class InvalidLayerException < Struct.new(
|
1476
1547
|
:message)
|
1548
|
+
SENSITIVE = []
|
1477
1549
|
include Aws::Structure
|
1478
1550
|
end
|
1479
1551
|
|
@@ -1509,6 +1581,7 @@ module Aws::ECR
|
|
1509
1581
|
:upload_id,
|
1510
1582
|
:last_valid_byte_received,
|
1511
1583
|
:message)
|
1584
|
+
SENSITIVE = []
|
1512
1585
|
include Aws::Structure
|
1513
1586
|
end
|
1514
1587
|
|
@@ -1523,6 +1596,7 @@ module Aws::ECR
|
|
1523
1596
|
#
|
1524
1597
|
class InvalidParameterException < Struct.new(
|
1525
1598
|
:message)
|
1599
|
+
SENSITIVE = []
|
1526
1600
|
include Aws::Structure
|
1527
1601
|
end
|
1528
1602
|
|
@@ -1537,6 +1611,7 @@ module Aws::ECR
|
|
1537
1611
|
#
|
1538
1612
|
class InvalidTagParameterException < Struct.new(
|
1539
1613
|
:message)
|
1614
|
+
SENSITIVE = []
|
1540
1615
|
include Aws::Structure
|
1541
1616
|
end
|
1542
1617
|
|
@@ -1567,6 +1642,7 @@ module Aws::ECR
|
|
1567
1642
|
:layer_availability,
|
1568
1643
|
:layer_size,
|
1569
1644
|
:media_type)
|
1645
|
+
SENSITIVE = []
|
1570
1646
|
include Aws::Structure
|
1571
1647
|
end
|
1572
1648
|
|
@@ -1580,6 +1656,7 @@ module Aws::ECR
|
|
1580
1656
|
#
|
1581
1657
|
class LayerAlreadyExistsException < Struct.new(
|
1582
1658
|
:message)
|
1659
|
+
SENSITIVE = []
|
1583
1660
|
include Aws::Structure
|
1584
1661
|
end
|
1585
1662
|
|
@@ -1603,6 +1680,7 @@ module Aws::ECR
|
|
1603
1680
|
:layer_digest,
|
1604
1681
|
:failure_code,
|
1605
1682
|
:failure_reason)
|
1683
|
+
SENSITIVE = []
|
1606
1684
|
include Aws::Structure
|
1607
1685
|
end
|
1608
1686
|
|
@@ -1617,6 +1695,7 @@ module Aws::ECR
|
|
1617
1695
|
#
|
1618
1696
|
class LayerInaccessibleException < Struct.new(
|
1619
1697
|
:message)
|
1698
|
+
SENSITIVE = []
|
1620
1699
|
include Aws::Structure
|
1621
1700
|
end
|
1622
1701
|
|
@@ -1630,6 +1709,7 @@ module Aws::ECR
|
|
1630
1709
|
#
|
1631
1710
|
class LayerPartTooSmallException < Struct.new(
|
1632
1711
|
:message)
|
1712
|
+
SENSITIVE = []
|
1633
1713
|
include Aws::Structure
|
1634
1714
|
end
|
1635
1715
|
|
@@ -1644,6 +1724,7 @@ module Aws::ECR
|
|
1644
1724
|
#
|
1645
1725
|
class LayersNotFoundException < Struct.new(
|
1646
1726
|
:message)
|
1727
|
+
SENSITIVE = []
|
1647
1728
|
include Aws::Structure
|
1648
1729
|
end
|
1649
1730
|
|
@@ -1657,6 +1738,7 @@ module Aws::ECR
|
|
1657
1738
|
#
|
1658
1739
|
class LifecyclePolicyNotFoundException < Struct.new(
|
1659
1740
|
:message)
|
1741
|
+
SENSITIVE = []
|
1660
1742
|
include Aws::Structure
|
1661
1743
|
end
|
1662
1744
|
|
@@ -1677,6 +1759,7 @@ module Aws::ECR
|
|
1677
1759
|
#
|
1678
1760
|
class LifecyclePolicyPreviewFilter < Struct.new(
|
1679
1761
|
:tag_status)
|
1762
|
+
SENSITIVE = []
|
1680
1763
|
include Aws::Structure
|
1681
1764
|
end
|
1682
1765
|
|
@@ -1690,6 +1773,7 @@ module Aws::ECR
|
|
1690
1773
|
#
|
1691
1774
|
class LifecyclePolicyPreviewInProgressException < Struct.new(
|
1692
1775
|
:message)
|
1776
|
+
SENSITIVE = []
|
1693
1777
|
include Aws::Structure
|
1694
1778
|
end
|
1695
1779
|
|
@@ -1702,6 +1786,7 @@ module Aws::ECR
|
|
1702
1786
|
#
|
1703
1787
|
class LifecyclePolicyPreviewNotFoundException < Struct.new(
|
1704
1788
|
:message)
|
1789
|
+
SENSITIVE = []
|
1705
1790
|
include Aws::Structure
|
1706
1791
|
end
|
1707
1792
|
|
@@ -1736,6 +1821,7 @@ module Aws::ECR
|
|
1736
1821
|
:image_pushed_at,
|
1737
1822
|
:action,
|
1738
1823
|
:applied_rule_priority)
|
1824
|
+
SENSITIVE = []
|
1739
1825
|
include Aws::Structure
|
1740
1826
|
end
|
1741
1827
|
|
@@ -1749,6 +1835,7 @@ module Aws::ECR
|
|
1749
1835
|
#
|
1750
1836
|
class LifecyclePolicyPreviewSummary < Struct.new(
|
1751
1837
|
:expiring_image_total_count)
|
1838
|
+
SENSITIVE = []
|
1752
1839
|
include Aws::Structure
|
1753
1840
|
end
|
1754
1841
|
|
@@ -1762,17 +1849,17 @@ module Aws::ECR
|
|
1762
1849
|
#
|
1763
1850
|
class LifecyclePolicyRuleAction < Struct.new(
|
1764
1851
|
:type)
|
1852
|
+
SENSITIVE = []
|
1765
1853
|
include Aws::Structure
|
1766
1854
|
end
|
1767
1855
|
|
1768
1856
|
# The operation did not succeed because it would have exceeded a service
|
1769
|
-
# limit for your account. For more information, see [Amazon ECR
|
1770
|
-
#
|
1771
|
-
# Guide.
|
1857
|
+
# limit for your account. For more information, see [Amazon ECR Service
|
1858
|
+
# Quotas][1] in the Amazon Elastic Container Registry User Guide.
|
1772
1859
|
#
|
1773
1860
|
#
|
1774
1861
|
#
|
1775
|
-
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/
|
1862
|
+
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html
|
1776
1863
|
#
|
1777
1864
|
# @!attribute [rw] message
|
1778
1865
|
# The error message associated with the exception.
|
@@ -1782,6 +1869,7 @@ module Aws::ECR
|
|
1782
1869
|
#
|
1783
1870
|
class LimitExceededException < Struct.new(
|
1784
1871
|
:message)
|
1872
|
+
SENSITIVE = []
|
1785
1873
|
include Aws::Structure
|
1786
1874
|
end
|
1787
1875
|
|
@@ -1803,6 +1891,7 @@ module Aws::ECR
|
|
1803
1891
|
#
|
1804
1892
|
class ListImagesFilter < Struct.new(
|
1805
1893
|
:tag_status)
|
1894
|
+
SENSITIVE = []
|
1806
1895
|
include Aws::Structure
|
1807
1896
|
end
|
1808
1897
|
|
@@ -1867,6 +1956,7 @@ module Aws::ECR
|
|
1867
1956
|
:next_token,
|
1868
1957
|
:max_results,
|
1869
1958
|
:filter)
|
1959
|
+
SENSITIVE = []
|
1870
1960
|
include Aws::Structure
|
1871
1961
|
end
|
1872
1962
|
|
@@ -1886,6 +1976,7 @@ module Aws::ECR
|
|
1886
1976
|
class ListImagesResponse < Struct.new(
|
1887
1977
|
:image_ids,
|
1888
1978
|
:next_token)
|
1979
|
+
SENSITIVE = []
|
1889
1980
|
include Aws::Structure
|
1890
1981
|
end
|
1891
1982
|
|
@@ -1906,6 +1997,7 @@ module Aws::ECR
|
|
1906
1997
|
#
|
1907
1998
|
class ListTagsForResourceRequest < Struct.new(
|
1908
1999
|
:resource_arn)
|
2000
|
+
SENSITIVE = []
|
1909
2001
|
include Aws::Structure
|
1910
2002
|
end
|
1911
2003
|
|
@@ -1917,6 +2009,7 @@ module Aws::ECR
|
|
1917
2009
|
#
|
1918
2010
|
class ListTagsForResourceResponse < Struct.new(
|
1919
2011
|
:tags)
|
2012
|
+
SENSITIVE = []
|
1920
2013
|
include Aws::Structure
|
1921
2014
|
end
|
1922
2015
|
|
@@ -1927,7 +2020,9 @@ module Aws::ECR
|
|
1927
2020
|
# registry_id: "RegistryId",
|
1928
2021
|
# repository_name: "RepositoryName", # required
|
1929
2022
|
# image_manifest: "ImageManifest", # required
|
2023
|
+
# image_manifest_media_type: "MediaType",
|
1930
2024
|
# image_tag: "ImageTag",
|
2025
|
+
# image_digest: "ImageDigest",
|
1931
2026
|
# }
|
1932
2027
|
#
|
1933
2028
|
# @!attribute [rw] registry_id
|
@@ -1944,19 +2039,32 @@ module Aws::ECR
|
|
1944
2039
|
# The image manifest corresponding to the image to be uploaded.
|
1945
2040
|
# @return [String]
|
1946
2041
|
#
|
2042
|
+
# @!attribute [rw] image_manifest_media_type
|
2043
|
+
# The media type of the image manifest. If you push an image manifest
|
2044
|
+
# that does not contain the `mediaType` field, you must specify the
|
2045
|
+
# `imageManifestMediaType` in the request.
|
2046
|
+
# @return [String]
|
2047
|
+
#
|
1947
2048
|
# @!attribute [rw] image_tag
|
1948
2049
|
# The tag to associate with the image. This parameter is required for
|
1949
2050
|
# images that use the Docker Image Manifest V2 Schema 2 or OCI
|
1950
2051
|
# formats.
|
1951
2052
|
# @return [String]
|
1952
2053
|
#
|
2054
|
+
# @!attribute [rw] image_digest
|
2055
|
+
# The image digest of the image manifest corresponding to the image.
|
2056
|
+
# @return [String]
|
2057
|
+
#
|
1953
2058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutImageRequest AWS API Documentation
|
1954
2059
|
#
|
1955
2060
|
class PutImageRequest < Struct.new(
|
1956
2061
|
:registry_id,
|
1957
2062
|
:repository_name,
|
1958
2063
|
:image_manifest,
|
1959
|
-
:
|
2064
|
+
:image_manifest_media_type,
|
2065
|
+
:image_tag,
|
2066
|
+
:image_digest)
|
2067
|
+
SENSITIVE = []
|
1960
2068
|
include Aws::Structure
|
1961
2069
|
end
|
1962
2070
|
|
@@ -1968,6 +2076,7 @@ module Aws::ECR
|
|
1968
2076
|
#
|
1969
2077
|
class PutImageResponse < Struct.new(
|
1970
2078
|
:image)
|
2079
|
+
SENSITIVE = []
|
1971
2080
|
include Aws::Structure
|
1972
2081
|
end
|
1973
2082
|
|
@@ -2006,6 +2115,7 @@ module Aws::ECR
|
|
2006
2115
|
:registry_id,
|
2007
2116
|
:repository_name,
|
2008
2117
|
:image_scanning_configuration)
|
2118
|
+
SENSITIVE = []
|
2009
2119
|
include Aws::Structure
|
2010
2120
|
end
|
2011
2121
|
|
@@ -2027,6 +2137,7 @@ module Aws::ECR
|
|
2027
2137
|
:registry_id,
|
2028
2138
|
:repository_name,
|
2029
2139
|
:image_scanning_configuration)
|
2140
|
+
SENSITIVE = []
|
2030
2141
|
include Aws::Structure
|
2031
2142
|
end
|
2032
2143
|
|
@@ -2063,6 +2174,7 @@ module Aws::ECR
|
|
2063
2174
|
:registry_id,
|
2064
2175
|
:repository_name,
|
2065
2176
|
:image_tag_mutability)
|
2177
|
+
SENSITIVE = []
|
2066
2178
|
include Aws::Structure
|
2067
2179
|
end
|
2068
2180
|
|
@@ -2084,6 +2196,7 @@ module Aws::ECR
|
|
2084
2196
|
:registry_id,
|
2085
2197
|
:repository_name,
|
2086
2198
|
:image_tag_mutability)
|
2199
|
+
SENSITIVE = []
|
2087
2200
|
include Aws::Structure
|
2088
2201
|
end
|
2089
2202
|
|
@@ -2116,6 +2229,7 @@ module Aws::ECR
|
|
2116
2229
|
:registry_id,
|
2117
2230
|
:repository_name,
|
2118
2231
|
:lifecycle_policy_text)
|
2232
|
+
SENSITIVE = []
|
2119
2233
|
include Aws::Structure
|
2120
2234
|
end
|
2121
2235
|
|
@@ -2137,6 +2251,7 @@ module Aws::ECR
|
|
2137
2251
|
:registry_id,
|
2138
2252
|
:repository_name,
|
2139
2253
|
:lifecycle_policy_text)
|
2254
|
+
SENSITIVE = []
|
2140
2255
|
include Aws::Structure
|
2141
2256
|
end
|
2142
2257
|
|
@@ -2149,6 +2264,7 @@ module Aws::ECR
|
|
2149
2264
|
#
|
2150
2265
|
class ReferencedImagesNotFoundException < Struct.new(
|
2151
2266
|
:message)
|
2267
|
+
SENSITIVE = []
|
2152
2268
|
include Aws::Structure
|
2153
2269
|
end
|
2154
2270
|
|
@@ -2199,6 +2315,7 @@ module Aws::ECR
|
|
2199
2315
|
:created_at,
|
2200
2316
|
:image_tag_mutability,
|
2201
2317
|
:image_scanning_configuration)
|
2318
|
+
SENSITIVE = []
|
2202
2319
|
include Aws::Structure
|
2203
2320
|
end
|
2204
2321
|
|
@@ -2212,6 +2329,7 @@ module Aws::ECR
|
|
2212
2329
|
#
|
2213
2330
|
class RepositoryAlreadyExistsException < Struct.new(
|
2214
2331
|
:message)
|
2332
|
+
SENSITIVE = []
|
2215
2333
|
include Aws::Structure
|
2216
2334
|
end
|
2217
2335
|
|
@@ -2227,6 +2345,7 @@ module Aws::ECR
|
|
2227
2345
|
#
|
2228
2346
|
class RepositoryNotEmptyException < Struct.new(
|
2229
2347
|
:message)
|
2348
|
+
SENSITIVE = []
|
2230
2349
|
include Aws::Structure
|
2231
2350
|
end
|
2232
2351
|
|
@@ -2242,6 +2361,7 @@ module Aws::ECR
|
|
2242
2361
|
#
|
2243
2362
|
class RepositoryNotFoundException < Struct.new(
|
2244
2363
|
:message)
|
2364
|
+
SENSITIVE = []
|
2245
2365
|
include Aws::Structure
|
2246
2366
|
end
|
2247
2367
|
|
@@ -2256,6 +2376,7 @@ module Aws::ECR
|
|
2256
2376
|
#
|
2257
2377
|
class RepositoryPolicyNotFoundException < Struct.new(
|
2258
2378
|
:message)
|
2379
|
+
SENSITIVE = []
|
2259
2380
|
include Aws::Structure
|
2260
2381
|
end
|
2261
2382
|
|
@@ -2269,6 +2390,7 @@ module Aws::ECR
|
|
2269
2390
|
#
|
2270
2391
|
class ScanNotFoundException < Struct.new(
|
2271
2392
|
:message)
|
2393
|
+
SENSITIVE = []
|
2272
2394
|
include Aws::Structure
|
2273
2395
|
end
|
2274
2396
|
|
@@ -2282,6 +2404,7 @@ module Aws::ECR
|
|
2282
2404
|
#
|
2283
2405
|
class ServerException < Struct.new(
|
2284
2406
|
:message)
|
2407
|
+
SENSITIVE = []
|
2285
2408
|
include Aws::Structure
|
2286
2409
|
end
|
2287
2410
|
|
@@ -2307,12 +2430,12 @@ module Aws::ECR
|
|
2307
2430
|
#
|
2308
2431
|
# @!attribute [rw] policy_text
|
2309
2432
|
# The JSON repository policy text to apply to the repository. For more
|
2310
|
-
# information, see [Amazon ECR Repository
|
2311
|
-
#
|
2433
|
+
# information, see [Amazon ECR Repository Policies][1] in the *Amazon
|
2434
|
+
# Elastic Container Registry User Guide*.
|
2312
2435
|
#
|
2313
2436
|
#
|
2314
2437
|
#
|
2315
|
-
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/
|
2438
|
+
# [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html
|
2316
2439
|
# @return [String]
|
2317
2440
|
#
|
2318
2441
|
# @!attribute [rw] force
|
@@ -2329,6 +2452,7 @@ module Aws::ECR
|
|
2329
2452
|
:repository_name,
|
2330
2453
|
:policy_text,
|
2331
2454
|
:force)
|
2455
|
+
SENSITIVE = []
|
2332
2456
|
include Aws::Structure
|
2333
2457
|
end
|
2334
2458
|
|
@@ -2350,6 +2474,7 @@ module Aws::ECR
|
|
2350
2474
|
:registry_id,
|
2351
2475
|
:repository_name,
|
2352
2476
|
:policy_text)
|
2477
|
+
SENSITIVE = []
|
2353
2478
|
include Aws::Structure
|
2354
2479
|
end
|
2355
2480
|
|
@@ -2385,6 +2510,7 @@ module Aws::ECR
|
|
2385
2510
|
:registry_id,
|
2386
2511
|
:repository_name,
|
2387
2512
|
:image_id)
|
2513
|
+
SENSITIVE = []
|
2388
2514
|
include Aws::Structure
|
2389
2515
|
end
|
2390
2516
|
|
@@ -2411,6 +2537,7 @@ module Aws::ECR
|
|
2411
2537
|
:repository_name,
|
2412
2538
|
:image_id,
|
2413
2539
|
:image_scan_status)
|
2540
|
+
SENSITIVE = []
|
2414
2541
|
include Aws::Structure
|
2415
2542
|
end
|
2416
2543
|
|
@@ -2444,6 +2571,7 @@ module Aws::ECR
|
|
2444
2571
|
:registry_id,
|
2445
2572
|
:repository_name,
|
2446
2573
|
:lifecycle_policy_text)
|
2574
|
+
SENSITIVE = []
|
2447
2575
|
include Aws::Structure
|
2448
2576
|
end
|
2449
2577
|
|
@@ -2470,6 +2598,7 @@ module Aws::ECR
|
|
2470
2598
|
:repository_name,
|
2471
2599
|
:lifecycle_policy_text,
|
2472
2600
|
:status)
|
2601
|
+
SENSITIVE = []
|
2473
2602
|
include Aws::Structure
|
2474
2603
|
end
|
2475
2604
|
|
@@ -2503,6 +2632,7 @@ module Aws::ECR
|
|
2503
2632
|
class Tag < Struct.new(
|
2504
2633
|
:key,
|
2505
2634
|
:value)
|
2635
|
+
SENSITIVE = []
|
2506
2636
|
include Aws::Structure
|
2507
2637
|
end
|
2508
2638
|
|
@@ -2537,6 +2667,7 @@ module Aws::ECR
|
|
2537
2667
|
class TagResourceRequest < Struct.new(
|
2538
2668
|
:resource_arn,
|
2539
2669
|
:tags)
|
2670
|
+
SENSITIVE = []
|
2540
2671
|
include Aws::Structure
|
2541
2672
|
end
|
2542
2673
|
|
@@ -2554,6 +2685,7 @@ module Aws::ECR
|
|
2554
2685
|
#
|
2555
2686
|
class TooManyTagsException < Struct.new(
|
2556
2687
|
:message)
|
2688
|
+
SENSITIVE = []
|
2557
2689
|
include Aws::Structure
|
2558
2690
|
end
|
2559
2691
|
|
@@ -2566,6 +2698,7 @@ module Aws::ECR
|
|
2566
2698
|
#
|
2567
2699
|
class UnsupportedImageTypeException < Struct.new(
|
2568
2700
|
:message)
|
2701
|
+
SENSITIVE = []
|
2569
2702
|
include Aws::Structure
|
2570
2703
|
end
|
2571
2704
|
|
@@ -2592,6 +2725,7 @@ module Aws::ECR
|
|
2592
2725
|
class UntagResourceRequest < Struct.new(
|
2593
2726
|
:resource_arn,
|
2594
2727
|
:tag_keys)
|
2728
|
+
SENSITIVE = []
|
2595
2729
|
include Aws::Structure
|
2596
2730
|
end
|
2597
2731
|
|
@@ -2627,11 +2761,13 @@ module Aws::ECR
|
|
2627
2761
|
# @return [String]
|
2628
2762
|
#
|
2629
2763
|
# @!attribute [rw] part_first_byte
|
2630
|
-
# The
|
2764
|
+
# The position of the first byte of the layer part witin the overall
|
2765
|
+
# image layer.
|
2631
2766
|
# @return [Integer]
|
2632
2767
|
#
|
2633
2768
|
# @!attribute [rw] part_last_byte
|
2634
|
-
# The
|
2769
|
+
# The position of the last byte of the layer part within the overall
|
2770
|
+
# image layer.
|
2635
2771
|
# @return [Integer]
|
2636
2772
|
#
|
2637
2773
|
# @!attribute [rw] layer_part_blob
|
@@ -2647,6 +2783,7 @@ module Aws::ECR
|
|
2647
2783
|
:part_first_byte,
|
2648
2784
|
:part_last_byte,
|
2649
2785
|
:layer_part_blob)
|
2786
|
+
SENSITIVE = []
|
2650
2787
|
include Aws::Structure
|
2651
2788
|
end
|
2652
2789
|
|
@@ -2673,6 +2810,7 @@ module Aws::ECR
|
|
2673
2810
|
:repository_name,
|
2674
2811
|
:upload_id,
|
2675
2812
|
:last_byte_received)
|
2813
|
+
SENSITIVE = []
|
2676
2814
|
include Aws::Structure
|
2677
2815
|
end
|
2678
2816
|
|
@@ -2687,6 +2825,7 @@ module Aws::ECR
|
|
2687
2825
|
#
|
2688
2826
|
class UploadNotFoundException < Struct.new(
|
2689
2827
|
:message)
|
2828
|
+
SENSITIVE = []
|
2690
2829
|
include Aws::Structure
|
2691
2830
|
end
|
2692
2831
|
|
data/lib/aws-sdk-ecr/waiters.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ecr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.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: 2020-
|
11
|
+
date: 2020-06-30 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|