@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,551 @@
|
|
|
1
|
+
import { ECRServiceException as __BaseException } from "./ECRServiceException";
|
|
2
|
+
export class InvalidParameterException extends __BaseException {
|
|
3
|
+
name = "InvalidParameterException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "InvalidParameterException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class RepositoryNotFoundException extends __BaseException {
|
|
15
|
+
name = "RepositoryNotFoundException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "RepositoryNotFoundException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ServerException extends __BaseException {
|
|
27
|
+
name = "ServerException";
|
|
28
|
+
$fault = "server";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ServerException",
|
|
32
|
+
$fault: "server",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ServerException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class LimitExceededException extends __BaseException {
|
|
39
|
+
name = "LimitExceededException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "LimitExceededException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class UnableToGetUpstreamImageException extends __BaseException {
|
|
51
|
+
name = "UnableToGetUpstreamImageException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "UnableToGetUpstreamImageException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, UnableToGetUpstreamImageException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ValidationException extends __BaseException {
|
|
63
|
+
name = "ValidationException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ValidationException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class EmptyUploadException extends __BaseException {
|
|
75
|
+
name = "EmptyUploadException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "EmptyUploadException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class InvalidLayerException extends __BaseException {
|
|
87
|
+
name = "InvalidLayerException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "InvalidLayerException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class KmsException extends __BaseException {
|
|
99
|
+
name = "KmsException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
kmsError;
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "KmsException",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
Object.setPrototypeOf(this, KmsException.prototype);
|
|
109
|
+
this.kmsError = opts.kmsError;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
export class LayerAlreadyExistsException extends __BaseException {
|
|
113
|
+
name = "LayerAlreadyExistsException";
|
|
114
|
+
$fault = "client";
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "LayerAlreadyExistsException",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export class LayerPartTooSmallException extends __BaseException {
|
|
125
|
+
name = "LayerPartTooSmallException";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "LayerPartTooSmallException",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
export class UploadNotFoundException extends __BaseException {
|
|
137
|
+
name = "UploadNotFoundException";
|
|
138
|
+
$fault = "client";
|
|
139
|
+
constructor(opts) {
|
|
140
|
+
super({
|
|
141
|
+
name: "UploadNotFoundException",
|
|
142
|
+
$fault: "client",
|
|
143
|
+
...opts,
|
|
144
|
+
});
|
|
145
|
+
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
export class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
|
|
149
|
+
name = "PullThroughCacheRuleAlreadyExistsException";
|
|
150
|
+
$fault = "client";
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "PullThroughCacheRuleAlreadyExistsException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
Object.setPrototypeOf(this, PullThroughCacheRuleAlreadyExistsException.prototype);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
export class SecretNotFoundException extends __BaseException {
|
|
161
|
+
name = "SecretNotFoundException";
|
|
162
|
+
$fault = "client";
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "SecretNotFoundException",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
Object.setPrototypeOf(this, SecretNotFoundException.prototype);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
export class UnableToAccessSecretException extends __BaseException {
|
|
173
|
+
name = "UnableToAccessSecretException";
|
|
174
|
+
$fault = "client";
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "UnableToAccessSecretException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, UnableToAccessSecretException.prototype);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
export class UnableToDecryptSecretValueException extends __BaseException {
|
|
185
|
+
name = "UnableToDecryptSecretValueException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "UnableToDecryptSecretValueException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, UnableToDecryptSecretValueException.prototype);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
export class UnsupportedUpstreamRegistryException extends __BaseException {
|
|
197
|
+
name = "UnsupportedUpstreamRegistryException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "UnsupportedUpstreamRegistryException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, UnsupportedUpstreamRegistryException.prototype);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
export class InvalidTagParameterException extends __BaseException {
|
|
209
|
+
name = "InvalidTagParameterException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "InvalidTagParameterException",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
export class RepositoryAlreadyExistsException extends __BaseException {
|
|
221
|
+
name = "RepositoryAlreadyExistsException";
|
|
222
|
+
$fault = "client";
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "RepositoryAlreadyExistsException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export class TooManyTagsException extends __BaseException {
|
|
233
|
+
name = "TooManyTagsException";
|
|
234
|
+
$fault = "client";
|
|
235
|
+
constructor(opts) {
|
|
236
|
+
super({
|
|
237
|
+
name: "TooManyTagsException",
|
|
238
|
+
$fault: "client",
|
|
239
|
+
...opts,
|
|
240
|
+
});
|
|
241
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
export class TemplateAlreadyExistsException extends __BaseException {
|
|
245
|
+
name = "TemplateAlreadyExistsException";
|
|
246
|
+
$fault = "client";
|
|
247
|
+
constructor(opts) {
|
|
248
|
+
super({
|
|
249
|
+
name: "TemplateAlreadyExistsException",
|
|
250
|
+
$fault: "client",
|
|
251
|
+
...opts,
|
|
252
|
+
});
|
|
253
|
+
Object.setPrototypeOf(this, TemplateAlreadyExistsException.prototype);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
export class LifecyclePolicyNotFoundException extends __BaseException {
|
|
257
|
+
name = "LifecyclePolicyNotFoundException";
|
|
258
|
+
$fault = "client";
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "LifecyclePolicyNotFoundException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
Object.setPrototypeOf(this, LifecyclePolicyNotFoundException.prototype);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
export class PullThroughCacheRuleNotFoundException extends __BaseException {
|
|
269
|
+
name = "PullThroughCacheRuleNotFoundException";
|
|
270
|
+
$fault = "client";
|
|
271
|
+
constructor(opts) {
|
|
272
|
+
super({
|
|
273
|
+
name: "PullThroughCacheRuleNotFoundException",
|
|
274
|
+
$fault: "client",
|
|
275
|
+
...opts,
|
|
276
|
+
});
|
|
277
|
+
Object.setPrototypeOf(this, PullThroughCacheRuleNotFoundException.prototype);
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
export class RegistryPolicyNotFoundException extends __BaseException {
|
|
281
|
+
name = "RegistryPolicyNotFoundException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "RegistryPolicyNotFoundException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, RegistryPolicyNotFoundException.prototype);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
export class RepositoryNotEmptyException extends __BaseException {
|
|
293
|
+
name = "RepositoryNotEmptyException";
|
|
294
|
+
$fault = "client";
|
|
295
|
+
constructor(opts) {
|
|
296
|
+
super({
|
|
297
|
+
name: "RepositoryNotEmptyException",
|
|
298
|
+
$fault: "client",
|
|
299
|
+
...opts,
|
|
300
|
+
});
|
|
301
|
+
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
export class TemplateNotFoundException extends __BaseException {
|
|
305
|
+
name = "TemplateNotFoundException";
|
|
306
|
+
$fault = "client";
|
|
307
|
+
constructor(opts) {
|
|
308
|
+
super({
|
|
309
|
+
name: "TemplateNotFoundException",
|
|
310
|
+
$fault: "client",
|
|
311
|
+
...opts,
|
|
312
|
+
});
|
|
313
|
+
Object.setPrototypeOf(this, TemplateNotFoundException.prototype);
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
export class RepositoryPolicyNotFoundException extends __BaseException {
|
|
317
|
+
name = "RepositoryPolicyNotFoundException";
|
|
318
|
+
$fault = "client";
|
|
319
|
+
constructor(opts) {
|
|
320
|
+
super({
|
|
321
|
+
name: "RepositoryPolicyNotFoundException",
|
|
322
|
+
$fault: "client",
|
|
323
|
+
...opts,
|
|
324
|
+
});
|
|
325
|
+
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
export class ExclusionNotFoundException extends __BaseException {
|
|
329
|
+
name = "ExclusionNotFoundException";
|
|
330
|
+
$fault = "client";
|
|
331
|
+
constructor(opts) {
|
|
332
|
+
super({
|
|
333
|
+
name: "ExclusionNotFoundException",
|
|
334
|
+
$fault: "client",
|
|
335
|
+
...opts,
|
|
336
|
+
});
|
|
337
|
+
Object.setPrototypeOf(this, ExclusionNotFoundException.prototype);
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
export class ImageNotFoundException extends __BaseException {
|
|
341
|
+
name = "ImageNotFoundException";
|
|
342
|
+
$fault = "client";
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "ImageNotFoundException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
export class ScanNotFoundException extends __BaseException {
|
|
353
|
+
name = "ScanNotFoundException";
|
|
354
|
+
$fault = "client";
|
|
355
|
+
constructor(opts) {
|
|
356
|
+
super({
|
|
357
|
+
name: "ScanNotFoundException",
|
|
358
|
+
$fault: "client",
|
|
359
|
+
...opts,
|
|
360
|
+
});
|
|
361
|
+
Object.setPrototypeOf(this, ScanNotFoundException.prototype);
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
export class LayerInaccessibleException extends __BaseException {
|
|
365
|
+
name = "LayerInaccessibleException";
|
|
366
|
+
$fault = "client";
|
|
367
|
+
constructor(opts) {
|
|
368
|
+
super({
|
|
369
|
+
name: "LayerInaccessibleException",
|
|
370
|
+
$fault: "client",
|
|
371
|
+
...opts,
|
|
372
|
+
});
|
|
373
|
+
Object.setPrototypeOf(this, LayerInaccessibleException.prototype);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
export class LayersNotFoundException extends __BaseException {
|
|
377
|
+
name = "LayersNotFoundException";
|
|
378
|
+
$fault = "client";
|
|
379
|
+
constructor(opts) {
|
|
380
|
+
super({
|
|
381
|
+
name: "LayersNotFoundException",
|
|
382
|
+
$fault: "client",
|
|
383
|
+
...opts,
|
|
384
|
+
});
|
|
385
|
+
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
export class UnableToGetUpstreamLayerException extends __BaseException {
|
|
389
|
+
name = "UnableToGetUpstreamLayerException";
|
|
390
|
+
$fault = "client";
|
|
391
|
+
constructor(opts) {
|
|
392
|
+
super({
|
|
393
|
+
name: "UnableToGetUpstreamLayerException",
|
|
394
|
+
$fault: "client",
|
|
395
|
+
...opts,
|
|
396
|
+
});
|
|
397
|
+
Object.setPrototypeOf(this, UnableToGetUpstreamLayerException.prototype);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
export class LifecyclePolicyPreviewNotFoundException extends __BaseException {
|
|
401
|
+
name = "LifecyclePolicyPreviewNotFoundException";
|
|
402
|
+
$fault = "client";
|
|
403
|
+
constructor(opts) {
|
|
404
|
+
super({
|
|
405
|
+
name: "LifecyclePolicyPreviewNotFoundException",
|
|
406
|
+
$fault: "client",
|
|
407
|
+
...opts,
|
|
408
|
+
});
|
|
409
|
+
Object.setPrototypeOf(this, LifecyclePolicyPreviewNotFoundException.prototype);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
export class ImageAlreadyExistsException extends __BaseException {
|
|
413
|
+
name = "ImageAlreadyExistsException";
|
|
414
|
+
$fault = "client";
|
|
415
|
+
constructor(opts) {
|
|
416
|
+
super({
|
|
417
|
+
name: "ImageAlreadyExistsException",
|
|
418
|
+
$fault: "client",
|
|
419
|
+
...opts,
|
|
420
|
+
});
|
|
421
|
+
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
export class ImageDigestDoesNotMatchException extends __BaseException {
|
|
425
|
+
name = "ImageDigestDoesNotMatchException";
|
|
426
|
+
$fault = "client";
|
|
427
|
+
constructor(opts) {
|
|
428
|
+
super({
|
|
429
|
+
name: "ImageDigestDoesNotMatchException",
|
|
430
|
+
$fault: "client",
|
|
431
|
+
...opts,
|
|
432
|
+
});
|
|
433
|
+
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
export class ImageTagAlreadyExistsException extends __BaseException {
|
|
437
|
+
name = "ImageTagAlreadyExistsException";
|
|
438
|
+
$fault = "client";
|
|
439
|
+
constructor(opts) {
|
|
440
|
+
super({
|
|
441
|
+
name: "ImageTagAlreadyExistsException",
|
|
442
|
+
$fault: "client",
|
|
443
|
+
...opts,
|
|
444
|
+
});
|
|
445
|
+
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
export class ReferencedImagesNotFoundException extends __BaseException {
|
|
449
|
+
name = "ReferencedImagesNotFoundException";
|
|
450
|
+
$fault = "client";
|
|
451
|
+
constructor(opts) {
|
|
452
|
+
super({
|
|
453
|
+
name: "ReferencedImagesNotFoundException",
|
|
454
|
+
$fault: "client",
|
|
455
|
+
...opts,
|
|
456
|
+
});
|
|
457
|
+
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
export class BlockedByOrganizationPolicyException extends __BaseException {
|
|
461
|
+
name = "BlockedByOrganizationPolicyException";
|
|
462
|
+
$fault = "client";
|
|
463
|
+
constructor(opts) {
|
|
464
|
+
super({
|
|
465
|
+
name: "BlockedByOrganizationPolicyException",
|
|
466
|
+
$fault: "client",
|
|
467
|
+
...opts,
|
|
468
|
+
});
|
|
469
|
+
Object.setPrototypeOf(this, BlockedByOrganizationPolicyException.prototype);
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
export class ExclusionAlreadyExistsException extends __BaseException {
|
|
473
|
+
name = "ExclusionAlreadyExistsException";
|
|
474
|
+
$fault = "client";
|
|
475
|
+
constructor(opts) {
|
|
476
|
+
super({
|
|
477
|
+
name: "ExclusionAlreadyExistsException",
|
|
478
|
+
$fault: "client",
|
|
479
|
+
...opts,
|
|
480
|
+
});
|
|
481
|
+
Object.setPrototypeOf(this, ExclusionAlreadyExistsException.prototype);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
export class ImageArchivedException extends __BaseException {
|
|
485
|
+
name = "ImageArchivedException";
|
|
486
|
+
$fault = "client";
|
|
487
|
+
constructor(opts) {
|
|
488
|
+
super({
|
|
489
|
+
name: "ImageArchivedException",
|
|
490
|
+
$fault: "client",
|
|
491
|
+
...opts,
|
|
492
|
+
});
|
|
493
|
+
Object.setPrototypeOf(this, ImageArchivedException.prototype);
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
export class UnsupportedImageTypeException extends __BaseException {
|
|
497
|
+
name = "UnsupportedImageTypeException";
|
|
498
|
+
$fault = "client";
|
|
499
|
+
constructor(opts) {
|
|
500
|
+
super({
|
|
501
|
+
name: "UnsupportedImageTypeException",
|
|
502
|
+
$fault: "client",
|
|
503
|
+
...opts,
|
|
504
|
+
});
|
|
505
|
+
Object.setPrototypeOf(this, UnsupportedImageTypeException.prototype);
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
export class LifecyclePolicyPreviewInProgressException extends __BaseException {
|
|
509
|
+
name = "LifecyclePolicyPreviewInProgressException";
|
|
510
|
+
$fault = "client";
|
|
511
|
+
constructor(opts) {
|
|
512
|
+
super({
|
|
513
|
+
name: "LifecyclePolicyPreviewInProgressException",
|
|
514
|
+
$fault: "client",
|
|
515
|
+
...opts,
|
|
516
|
+
});
|
|
517
|
+
Object.setPrototypeOf(this, LifecyclePolicyPreviewInProgressException.prototype);
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
export class ImageStorageClassUpdateNotSupportedException extends __BaseException {
|
|
521
|
+
name = "ImageStorageClassUpdateNotSupportedException";
|
|
522
|
+
$fault = "client";
|
|
523
|
+
constructor(opts) {
|
|
524
|
+
super({
|
|
525
|
+
name: "ImageStorageClassUpdateNotSupportedException",
|
|
526
|
+
$fault: "client",
|
|
527
|
+
...opts,
|
|
528
|
+
});
|
|
529
|
+
Object.setPrototypeOf(this, ImageStorageClassUpdateNotSupportedException.prototype);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
export class InvalidLayerPartException extends __BaseException {
|
|
533
|
+
name = "InvalidLayerPartException";
|
|
534
|
+
$fault = "client";
|
|
535
|
+
registryId;
|
|
536
|
+
repositoryName;
|
|
537
|
+
uploadId;
|
|
538
|
+
lastValidByteReceived;
|
|
539
|
+
constructor(opts) {
|
|
540
|
+
super({
|
|
541
|
+
name: "InvalidLayerPartException",
|
|
542
|
+
$fault: "client",
|
|
543
|
+
...opts,
|
|
544
|
+
});
|
|
545
|
+
Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
|
|
546
|
+
this.registryId = opts.registryId;
|
|
547
|
+
this.repositoryName = opts.repositoryName;
|
|
548
|
+
this.uploadId = opts.uploadId;
|
|
549
|
+
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
550
|
+
}
|
|
551
|
+
}
|