@aws-sdk/client-ecr 3.934.0 → 3.935.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.
- package/README.md +40 -0
- package/dist-cjs/index.js +538 -154
- package/dist-es/ECR.js +10 -0
- package/dist-es/commands/DeregisterPullTimeUpdateExclusionCommand.js +16 -0
- package/dist-es/commands/ListImageReferrersCommand.js +16 -0
- package/dist-es/commands/ListPullTimeUpdateExclusionsCommand.js +16 -0
- package/dist-es/commands/RegisterPullTimeUpdateExclusionCommand.js +16 -0
- package/dist-es/commands/UpdateImageStorageClassCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +141 -0
- package/dist-es/models/errors.js +551 -0
- package/dist-es/models/models_0.js +1 -595
- package/dist-es/schemas/schemas_0.js +259 -52
- package/dist-types/ECR.d.ts +36 -0
- package/dist-types/ECRClient.d.ts +7 -2
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetImageCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +107 -0
- package/dist-types/commands/DescribeImageScanFindingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +11 -8
- package/dist-types/commands/GetLifecyclePolicyPreviewCommand.d.ts +9 -1
- package/dist-types/commands/ListImageReferrersCommand.d.ts +224 -0
- package/dist-types/commands/ListImagesCommand.d.ts +1 -0
- package/dist-types/commands/ListPullTimeUpdateExclusionsCommand.d.ts +127 -0
- package/dist-types/commands/PutRegistryScanningConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +93 -0
- package/dist-types/commands/StartImageScanCommand.d.ts +8 -6
- package/dist-types/commands/UpdateImageStorageClassCommand.d.ts +156 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +349 -0
- package/dist-types/models/errors.d.ts +597 -0
- package/dist-types/models/models_0.d.ts +372 -812
- package/dist-types/schemas/schemas_0.d.ts +29 -0
- package/dist-types/ts3.4/ECR.d.ts +92 -0
- package/dist-types/ts3.4/ECRClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListImageReferrersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPullTimeUpdateExclusionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateImageStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +187 -0
- package/dist-types/ts3.4/models/errors.d.ts +369 -0
- package/dist-types/ts3.4/models/models_0.d.ts +100 -461
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,597 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ECRServiceException as __BaseException } from "./ECRServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
5
|
+
* request.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
9
|
+
readonly name: "InvalidParameterException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The specified repository could not be found. Check the spelling of the specified
|
|
18
|
+
* repository and ensure that you are performing operations on the correct registry.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class RepositoryNotFoundException extends __BaseException {
|
|
22
|
+
readonly name: "RepositoryNotFoundException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<RepositoryNotFoundException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>These errors are usually caused by a server-side issue.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ServerException extends __BaseException {
|
|
34
|
+
readonly name: "ServerException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>The operation did not succeed because it would have exceeded a service limit for your
|
|
43
|
+
* account. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html">Amazon ECR service quotas</a> in
|
|
44
|
+
* the Amazon Elastic Container Registry User Guide.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export declare class LimitExceededException extends __BaseException {
|
|
48
|
+
readonly name: "LimitExceededException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>The image or images were unable to be pulled using the pull through cache rule. This
|
|
57
|
+
* is usually caused because of an issue with the Secrets Manager secret containing the credentials
|
|
58
|
+
* for the upstream registry.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class UnableToGetUpstreamImageException extends __BaseException {
|
|
62
|
+
readonly name: "UnableToGetUpstreamImageException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<UnableToGetUpstreamImageException, __BaseException>);
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* <p>There was an exception validating this request.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare class ValidationException extends __BaseException {
|
|
74
|
+
readonly name: "ValidationException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>The specified layer upload does not contain any layer parts.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class EmptyUploadException extends __BaseException {
|
|
86
|
+
readonly name: "EmptyUploadException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
constructor(opts: __ExceptionOptionType<EmptyUploadException, __BaseException>);
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* <p>The layer digest calculation performed by Amazon ECR upon receipt of the image layer does
|
|
95
|
+
* not match the digest specified.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class InvalidLayerException extends __BaseException {
|
|
99
|
+
readonly name: "InvalidLayerException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
104
|
+
constructor(opts: __ExceptionOptionType<InvalidLayerException, __BaseException>);
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* <p>The operation failed due to a KMS exception.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export declare class KmsException extends __BaseException {
|
|
111
|
+
readonly name: "KmsException";
|
|
112
|
+
readonly $fault: "client";
|
|
113
|
+
/**
|
|
114
|
+
* <p>The error code returned by KMS.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
kmsError?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<KmsException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>The image layer already exists in the associated repository.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export declare class LayerAlreadyExistsException extends __BaseException {
|
|
128
|
+
readonly name: "LayerAlreadyExistsException";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
133
|
+
constructor(opts: __ExceptionOptionType<LayerAlreadyExistsException, __BaseException>);
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* <p>Layer parts must be at least 5 MiB in size.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export declare class LayerPartTooSmallException extends __BaseException {
|
|
140
|
+
readonly name: "LayerPartTooSmallException";
|
|
141
|
+
readonly $fault: "client";
|
|
142
|
+
/**
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
constructor(opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>);
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* <p>The upload could not be found, or the specified upload ID is not valid for this
|
|
149
|
+
* repository.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
export declare class UploadNotFoundException extends __BaseException {
|
|
153
|
+
readonly name: "UploadNotFoundException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<UploadNotFoundException, __BaseException>);
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* <p>A pull through cache rule with these settings already exists for the private
|
|
162
|
+
* registry.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export declare class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
|
|
166
|
+
readonly name: "PullThroughCacheRuleAlreadyExistsException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<PullThroughCacheRuleAlreadyExistsException, __BaseException>);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>The ARN of the secret specified in the pull through cache rule was not found. Update
|
|
175
|
+
* the pull through cache rule with a valid secret ARN and try again.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class SecretNotFoundException extends __BaseException {
|
|
179
|
+
readonly name: "SecretNotFoundException";
|
|
180
|
+
readonly $fault: "client";
|
|
181
|
+
/**
|
|
182
|
+
* @internal
|
|
183
|
+
*/
|
|
184
|
+
constructor(opts: __ExceptionOptionType<SecretNotFoundException, __BaseException>);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* <p>The secret is unable to be accessed. Verify the resource permissions for the secret
|
|
188
|
+
* and try again.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
export declare class UnableToAccessSecretException extends __BaseException {
|
|
192
|
+
readonly name: "UnableToAccessSecretException";
|
|
193
|
+
readonly $fault: "client";
|
|
194
|
+
/**
|
|
195
|
+
* @internal
|
|
196
|
+
*/
|
|
197
|
+
constructor(opts: __ExceptionOptionType<UnableToAccessSecretException, __BaseException>);
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* <p>The secret is accessible but is unable to be decrypted. Verify the resource
|
|
201
|
+
* permisisons and try again.</p>
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
204
|
+
export declare class UnableToDecryptSecretValueException extends __BaseException {
|
|
205
|
+
readonly name: "UnableToDecryptSecretValueException";
|
|
206
|
+
readonly $fault: "client";
|
|
207
|
+
/**
|
|
208
|
+
* @internal
|
|
209
|
+
*/
|
|
210
|
+
constructor(opts: __ExceptionOptionType<UnableToDecryptSecretValueException, __BaseException>);
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* <p>The specified upstream registry isn't supported.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export declare class UnsupportedUpstreamRegistryException extends __BaseException {
|
|
217
|
+
readonly name: "UnsupportedUpstreamRegistryException";
|
|
218
|
+
readonly $fault: "client";
|
|
219
|
+
/**
|
|
220
|
+
* @internal
|
|
221
|
+
*/
|
|
222
|
+
constructor(opts: __ExceptionOptionType<UnsupportedUpstreamRegistryException, __BaseException>);
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* <p>An invalid parameter has been specified. Tag keys can have a maximum character length of 128 characters, and tag values can have
|
|
226
|
+
* a maximum length of 256 characters.</p>
|
|
227
|
+
* @public
|
|
228
|
+
*/
|
|
229
|
+
export declare class InvalidTagParameterException extends __BaseException {
|
|
230
|
+
readonly name: "InvalidTagParameterException";
|
|
231
|
+
readonly $fault: "client";
|
|
232
|
+
/**
|
|
233
|
+
* @internal
|
|
234
|
+
*/
|
|
235
|
+
constructor(opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>);
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* <p>The specified repository already exists in the specified registry.</p>
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
export declare class RepositoryAlreadyExistsException extends __BaseException {
|
|
242
|
+
readonly name: "RepositoryAlreadyExistsException";
|
|
243
|
+
readonly $fault: "client";
|
|
244
|
+
/**
|
|
245
|
+
* @internal
|
|
246
|
+
*/
|
|
247
|
+
constructor(opts: __ExceptionOptionType<RepositoryAlreadyExistsException, __BaseException>);
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* <p>The list of tags on the repository is over the limit. The maximum number of tags that
|
|
251
|
+
* can be applied to a repository is 50.</p>
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
255
|
+
readonly name: "TooManyTagsException";
|
|
256
|
+
readonly $fault: "client";
|
|
257
|
+
/**
|
|
258
|
+
* @internal
|
|
259
|
+
*/
|
|
260
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* <p>The repository creation template already exists. Specify a unique prefix and try
|
|
264
|
+
* again.</p>
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
export declare class TemplateAlreadyExistsException extends __BaseException {
|
|
268
|
+
readonly name: "TemplateAlreadyExistsException";
|
|
269
|
+
readonly $fault: "client";
|
|
270
|
+
/**
|
|
271
|
+
* @internal
|
|
272
|
+
*/
|
|
273
|
+
constructor(opts: __ExceptionOptionType<TemplateAlreadyExistsException, __BaseException>);
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* <p>The lifecycle policy could not be found, and no policy is set to the
|
|
277
|
+
* repository.</p>
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
export declare class LifecyclePolicyNotFoundException extends __BaseException {
|
|
281
|
+
readonly name: "LifecyclePolicyNotFoundException";
|
|
282
|
+
readonly $fault: "client";
|
|
283
|
+
/**
|
|
284
|
+
* @internal
|
|
285
|
+
*/
|
|
286
|
+
constructor(opts: __ExceptionOptionType<LifecyclePolicyNotFoundException, __BaseException>);
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* <p>The pull through cache rule was not found. Specify a valid pull through cache rule and
|
|
290
|
+
* try again.</p>
|
|
291
|
+
* @public
|
|
292
|
+
*/
|
|
293
|
+
export declare class PullThroughCacheRuleNotFoundException extends __BaseException {
|
|
294
|
+
readonly name: "PullThroughCacheRuleNotFoundException";
|
|
295
|
+
readonly $fault: "client";
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
constructor(opts: __ExceptionOptionType<PullThroughCacheRuleNotFoundException, __BaseException>);
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* <p>The registry doesn't have an associated registry policy.</p>
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
export declare class RegistryPolicyNotFoundException extends __BaseException {
|
|
306
|
+
readonly name: "RegistryPolicyNotFoundException";
|
|
307
|
+
readonly $fault: "client";
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<RegistryPolicyNotFoundException, __BaseException>);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* <p>The specified repository contains images. To delete a repository that contains images,
|
|
315
|
+
* you must force the deletion with the <code>force</code> parameter.</p>
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export declare class RepositoryNotEmptyException extends __BaseException {
|
|
319
|
+
readonly name: "RepositoryNotEmptyException";
|
|
320
|
+
readonly $fault: "client";
|
|
321
|
+
/**
|
|
322
|
+
* @internal
|
|
323
|
+
*/
|
|
324
|
+
constructor(opts: __ExceptionOptionType<RepositoryNotEmptyException, __BaseException>);
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* <p>The specified repository creation template can't be found. Verify the registry ID and
|
|
328
|
+
* prefix and try again.</p>
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
export declare class TemplateNotFoundException extends __BaseException {
|
|
332
|
+
readonly name: "TemplateNotFoundException";
|
|
333
|
+
readonly $fault: "client";
|
|
334
|
+
/**
|
|
335
|
+
* @internal
|
|
336
|
+
*/
|
|
337
|
+
constructor(opts: __ExceptionOptionType<TemplateNotFoundException, __BaseException>);
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* <p>The specified repository and registry combination does not have an associated
|
|
341
|
+
* repository policy.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
export declare class RepositoryPolicyNotFoundException extends __BaseException {
|
|
345
|
+
readonly name: "RepositoryPolicyNotFoundException";
|
|
346
|
+
readonly $fault: "client";
|
|
347
|
+
/**
|
|
348
|
+
* @internal
|
|
349
|
+
*/
|
|
350
|
+
constructor(opts: __ExceptionOptionType<RepositoryPolicyNotFoundException, __BaseException>);
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* <p>The specified pull time update exclusion was not found.</p>
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
356
|
+
export declare class ExclusionNotFoundException extends __BaseException {
|
|
357
|
+
readonly name: "ExclusionNotFoundException";
|
|
358
|
+
readonly $fault: "client";
|
|
359
|
+
/**
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
constructor(opts: __ExceptionOptionType<ExclusionNotFoundException, __BaseException>);
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* <p>The image requested does not exist in the specified repository.</p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
export declare class ImageNotFoundException extends __BaseException {
|
|
369
|
+
readonly name: "ImageNotFoundException";
|
|
370
|
+
readonly $fault: "client";
|
|
371
|
+
/**
|
|
372
|
+
* @internal
|
|
373
|
+
*/
|
|
374
|
+
constructor(opts: __ExceptionOptionType<ImageNotFoundException, __BaseException>);
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* <p>The specified image scan could not be found. Ensure that image scanning is enabled on
|
|
378
|
+
* the repository and try again.</p>
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
export declare class ScanNotFoundException extends __BaseException {
|
|
382
|
+
readonly name: "ScanNotFoundException";
|
|
383
|
+
readonly $fault: "client";
|
|
384
|
+
/**
|
|
385
|
+
* @internal
|
|
386
|
+
*/
|
|
387
|
+
constructor(opts: __ExceptionOptionType<ScanNotFoundException, __BaseException>);
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* <p>The specified layer is not available because it is not associated with an image.
|
|
391
|
+
* Unassociated image layers may be cleaned up at any time.</p>
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
export declare class LayerInaccessibleException extends __BaseException {
|
|
395
|
+
readonly name: "LayerInaccessibleException";
|
|
396
|
+
readonly $fault: "client";
|
|
397
|
+
/**
|
|
398
|
+
* @internal
|
|
399
|
+
*/
|
|
400
|
+
constructor(opts: __ExceptionOptionType<LayerInaccessibleException, __BaseException>);
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* <p>The specified layers could not be found, or the specified layer is not valid for this
|
|
404
|
+
* repository.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
export declare class LayersNotFoundException extends __BaseException {
|
|
408
|
+
readonly name: "LayersNotFoundException";
|
|
409
|
+
readonly $fault: "client";
|
|
410
|
+
/**
|
|
411
|
+
* @internal
|
|
412
|
+
*/
|
|
413
|
+
constructor(opts: __ExceptionOptionType<LayersNotFoundException, __BaseException>);
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* <p>There was an issue getting the upstream layer matching the pull through cache
|
|
417
|
+
* rule.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
export declare class UnableToGetUpstreamLayerException extends __BaseException {
|
|
421
|
+
readonly name: "UnableToGetUpstreamLayerException";
|
|
422
|
+
readonly $fault: "client";
|
|
423
|
+
/**
|
|
424
|
+
* @internal
|
|
425
|
+
*/
|
|
426
|
+
constructor(opts: __ExceptionOptionType<UnableToGetUpstreamLayerException, __BaseException>);
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* <p>There is no dry run for this repository.</p>
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
export declare class LifecyclePolicyPreviewNotFoundException extends __BaseException {
|
|
433
|
+
readonly name: "LifecyclePolicyPreviewNotFoundException";
|
|
434
|
+
readonly $fault: "client";
|
|
435
|
+
/**
|
|
436
|
+
* @internal
|
|
437
|
+
*/
|
|
438
|
+
constructor(opts: __ExceptionOptionType<LifecyclePolicyPreviewNotFoundException, __BaseException>);
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* <p>The specified image has already been pushed, and there were no changes to the manifest
|
|
442
|
+
* or image tag after the last push.</p>
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
export declare class ImageAlreadyExistsException extends __BaseException {
|
|
446
|
+
readonly name: "ImageAlreadyExistsException";
|
|
447
|
+
readonly $fault: "client";
|
|
448
|
+
/**
|
|
449
|
+
* @internal
|
|
450
|
+
*/
|
|
451
|
+
constructor(opts: __ExceptionOptionType<ImageAlreadyExistsException, __BaseException>);
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* <p>The specified image digest does not match the digest that Amazon ECR calculated for the
|
|
455
|
+
* image.</p>
|
|
456
|
+
* @public
|
|
457
|
+
*/
|
|
458
|
+
export declare class ImageDigestDoesNotMatchException extends __BaseException {
|
|
459
|
+
readonly name: "ImageDigestDoesNotMatchException";
|
|
460
|
+
readonly $fault: "client";
|
|
461
|
+
/**
|
|
462
|
+
* @internal
|
|
463
|
+
*/
|
|
464
|
+
constructor(opts: __ExceptionOptionType<ImageDigestDoesNotMatchException, __BaseException>);
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* <p>The specified image is tagged with a tag that already exists. The repository is
|
|
468
|
+
* configured for tag immutability.</p>
|
|
469
|
+
* @public
|
|
470
|
+
*/
|
|
471
|
+
export declare class ImageTagAlreadyExistsException extends __BaseException {
|
|
472
|
+
readonly name: "ImageTagAlreadyExistsException";
|
|
473
|
+
readonly $fault: "client";
|
|
474
|
+
/**
|
|
475
|
+
* @internal
|
|
476
|
+
*/
|
|
477
|
+
constructor(opts: __ExceptionOptionType<ImageTagAlreadyExistsException, __BaseException>);
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* <p>The manifest list is referencing an image that does not exist.</p>
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
483
|
+
export declare class ReferencedImagesNotFoundException extends __BaseException {
|
|
484
|
+
readonly name: "ReferencedImagesNotFoundException";
|
|
485
|
+
readonly $fault: "client";
|
|
486
|
+
/**
|
|
487
|
+
* @internal
|
|
488
|
+
*/
|
|
489
|
+
constructor(opts: __ExceptionOptionType<ReferencedImagesNotFoundException, __BaseException>);
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* <p>The operation did not succeed because the account is managed by a organization policy.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
export declare class BlockedByOrganizationPolicyException extends __BaseException {
|
|
496
|
+
readonly name: "BlockedByOrganizationPolicyException";
|
|
497
|
+
readonly $fault: "client";
|
|
498
|
+
/**
|
|
499
|
+
* @internal
|
|
500
|
+
*/
|
|
501
|
+
constructor(opts: __ExceptionOptionType<BlockedByOrganizationPolicyException, __BaseException>);
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* <p>The specified pull time update exclusion already exists for the registry.</p>
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
export declare class ExclusionAlreadyExistsException extends __BaseException {
|
|
508
|
+
readonly name: "ExclusionAlreadyExistsException";
|
|
509
|
+
readonly $fault: "client";
|
|
510
|
+
/**
|
|
511
|
+
* @internal
|
|
512
|
+
*/
|
|
513
|
+
constructor(opts: __ExceptionOptionType<ExclusionAlreadyExistsException, __BaseException>);
|
|
514
|
+
}
|
|
515
|
+
/**
|
|
516
|
+
* <p>The specified image is archived and cannot be scanned.</p>
|
|
517
|
+
* @public
|
|
518
|
+
*/
|
|
519
|
+
export declare class ImageArchivedException extends __BaseException {
|
|
520
|
+
readonly name: "ImageArchivedException";
|
|
521
|
+
readonly $fault: "client";
|
|
522
|
+
/**
|
|
523
|
+
* @internal
|
|
524
|
+
*/
|
|
525
|
+
constructor(opts: __ExceptionOptionType<ImageArchivedException, __BaseException>);
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* <p>The image is of a type that cannot be scanned.</p>
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
export declare class UnsupportedImageTypeException extends __BaseException {
|
|
532
|
+
readonly name: "UnsupportedImageTypeException";
|
|
533
|
+
readonly $fault: "client";
|
|
534
|
+
/**
|
|
535
|
+
* @internal
|
|
536
|
+
*/
|
|
537
|
+
constructor(opts: __ExceptionOptionType<UnsupportedImageTypeException, __BaseException>);
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* <p>The previous lifecycle policy preview request has not completed. Wait and try
|
|
541
|
+
* again.</p>
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
544
|
+
export declare class LifecyclePolicyPreviewInProgressException extends __BaseException {
|
|
545
|
+
readonly name: "LifecyclePolicyPreviewInProgressException";
|
|
546
|
+
readonly $fault: "client";
|
|
547
|
+
/**
|
|
548
|
+
* @internal
|
|
549
|
+
*/
|
|
550
|
+
constructor(opts: __ExceptionOptionType<LifecyclePolicyPreviewInProgressException, __BaseException>);
|
|
551
|
+
}
|
|
552
|
+
/**
|
|
553
|
+
* <p>The requested image storage class update is not supported.</p>
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
export declare class ImageStorageClassUpdateNotSupportedException extends __BaseException {
|
|
557
|
+
readonly name: "ImageStorageClassUpdateNotSupportedException";
|
|
558
|
+
readonly $fault: "client";
|
|
559
|
+
/**
|
|
560
|
+
* @internal
|
|
561
|
+
*/
|
|
562
|
+
constructor(opts: __ExceptionOptionType<ImageStorageClassUpdateNotSupportedException, __BaseException>);
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* <p>The layer part size is not valid, or the first byte specified is not consecutive to
|
|
566
|
+
* the last byte of a previous layer part upload.</p>
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
export declare class InvalidLayerPartException extends __BaseException {
|
|
570
|
+
readonly name: "InvalidLayerPartException";
|
|
571
|
+
readonly $fault: "client";
|
|
572
|
+
/**
|
|
573
|
+
* <p>The registry ID associated with the exception.</p>
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
576
|
+
registryId?: string | undefined;
|
|
577
|
+
/**
|
|
578
|
+
* <p>The repository name associated with the exception.</p>
|
|
579
|
+
* @public
|
|
580
|
+
*/
|
|
581
|
+
repositoryName?: string | undefined;
|
|
582
|
+
/**
|
|
583
|
+
* <p>The upload ID associated with the exception.</p>
|
|
584
|
+
* @public
|
|
585
|
+
*/
|
|
586
|
+
uploadId?: string | undefined;
|
|
587
|
+
/**
|
|
588
|
+
* <p>The last valid byte received from the layer part upload that is associated with the
|
|
589
|
+
* exception.</p>
|
|
590
|
+
* @public
|
|
591
|
+
*/
|
|
592
|
+
lastValidByteReceived?: number | undefined;
|
|
593
|
+
/**
|
|
594
|
+
* @internal
|
|
595
|
+
*/
|
|
596
|
+
constructor(opts: __ExceptionOptionType<InvalidLayerPartException, __BaseException>);
|
|
597
|
+
}
|