@aws-sdk/client-ecr 3.51.0 → 3.54.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ECRServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +439 -3
  5. package/dist-cjs/protocols/Aws_json1_1.js +506 -1673
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ECRServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +403 -1
  9. package/dist-es/protocols/Aws_json1_1.js +1013 -1772
  10. package/dist-types/ECR.d.ts +11 -6
  11. package/dist-types/ECRClient.d.ts +2 -2
  12. package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +1 -1
  13. package/dist-types/commands/CompleteLayerUploadCommand.d.ts +1 -1
  14. package/dist-types/commands/GetDownloadUrlForLayerCommand.d.ts +1 -1
  15. package/dist-types/commands/InitiateLayerUploadCommand.d.ts +1 -1
  16. package/dist-types/commands/PutImageScanningConfigurationCommand.d.ts +6 -1
  17. package/dist-types/commands/UploadLayerPartCommand.d.ts +1 -1
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/models/ECRServiceException.d.ts +10 -0
  20. package/dist-types/models/models_0.d.ts +231 -161
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  22. package/dist-types/runtimeConfig.d.ts +1 -1
  23. package/dist-types/runtimeConfig.native.d.ts +1 -1
  24. package/dist-types/ts3.4/ECRClient.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/ECRServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +153 -133
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  31. package/package.json +34 -34
package/dist-es/index.js CHANGED
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ECRServiceException } from "./models/ECRServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var ECRServiceException = (function (_super) {
4
+ __extends(ECRServiceException, _super);
5
+ function ECRServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, ECRServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return ECRServiceException;
11
+ }(__ServiceException));
12
+ export { ECRServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { ECRServiceException as __BaseException } from "./ECRServiceException";
2
3
  export var BatchCheckLayerAvailabilityRequest;
3
4
  (function (BatchCheckLayerAvailabilityRequest) {
4
5
  BatchCheckLayerAvailabilityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -25,6 +26,42 @@ export var BatchCheckLayerAvailabilityResponse;
25
26
  (function (BatchCheckLayerAvailabilityResponse) {
26
27
  BatchCheckLayerAvailabilityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
27
28
  })(BatchCheckLayerAvailabilityResponse || (BatchCheckLayerAvailabilityResponse = {}));
29
+ var InvalidParameterException = (function (_super) {
30
+ __extends(InvalidParameterException, _super);
31
+ function InvalidParameterException(opts) {
32
+ var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
33
+ _this.name = "InvalidParameterException";
34
+ _this.$fault = "client";
35
+ Object.setPrototypeOf(_this, InvalidParameterException.prototype);
36
+ return _this;
37
+ }
38
+ return InvalidParameterException;
39
+ }(__BaseException));
40
+ export { InvalidParameterException };
41
+ var RepositoryNotFoundException = (function (_super) {
42
+ __extends(RepositoryNotFoundException, _super);
43
+ function RepositoryNotFoundException(opts) {
44
+ var _this = _super.call(this, __assign({ name: "RepositoryNotFoundException", $fault: "client" }, opts)) || this;
45
+ _this.name = "RepositoryNotFoundException";
46
+ _this.$fault = "client";
47
+ Object.setPrototypeOf(_this, RepositoryNotFoundException.prototype);
48
+ return _this;
49
+ }
50
+ return RepositoryNotFoundException;
51
+ }(__BaseException));
52
+ export { RepositoryNotFoundException };
53
+ var ServerException = (function (_super) {
54
+ __extends(ServerException, _super);
55
+ function ServerException(opts) {
56
+ var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
57
+ _this.name = "ServerException";
58
+ _this.$fault = "server";
59
+ Object.setPrototypeOf(_this, ServerException.prototype);
60
+ return _this;
61
+ }
62
+ return ServerException;
63
+ }(__BaseException));
64
+ export { ServerException };
28
65
  export var ImageIdentifier;
29
66
  (function (ImageIdentifier) {
30
67
  ImageIdentifier.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -97,6 +134,18 @@ export var BatchGetRepositoryScanningConfigurationResponse;
97
134
  (function (BatchGetRepositoryScanningConfigurationResponse) {
98
135
  BatchGetRepositoryScanningConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
99
136
  })(BatchGetRepositoryScanningConfigurationResponse || (BatchGetRepositoryScanningConfigurationResponse = {}));
137
+ var ValidationException = (function (_super) {
138
+ __extends(ValidationException, _super);
139
+ function ValidationException(opts) {
140
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
141
+ _this.name = "ValidationException";
142
+ _this.$fault = "client";
143
+ Object.setPrototypeOf(_this, ValidationException.prototype);
144
+ return _this;
145
+ }
146
+ return ValidationException;
147
+ }(__BaseException));
148
+ export { ValidationException };
100
149
  export var CompleteLayerUploadRequest;
101
150
  (function (CompleteLayerUploadRequest) {
102
151
  CompleteLayerUploadRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -105,6 +154,79 @@ export var CompleteLayerUploadResponse;
105
154
  (function (CompleteLayerUploadResponse) {
106
155
  CompleteLayerUploadResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
107
156
  })(CompleteLayerUploadResponse || (CompleteLayerUploadResponse = {}));
157
+ var EmptyUploadException = (function (_super) {
158
+ __extends(EmptyUploadException, _super);
159
+ function EmptyUploadException(opts) {
160
+ var _this = _super.call(this, __assign({ name: "EmptyUploadException", $fault: "client" }, opts)) || this;
161
+ _this.name = "EmptyUploadException";
162
+ _this.$fault = "client";
163
+ Object.setPrototypeOf(_this, EmptyUploadException.prototype);
164
+ return _this;
165
+ }
166
+ return EmptyUploadException;
167
+ }(__BaseException));
168
+ export { EmptyUploadException };
169
+ var InvalidLayerException = (function (_super) {
170
+ __extends(InvalidLayerException, _super);
171
+ function InvalidLayerException(opts) {
172
+ var _this = _super.call(this, __assign({ name: "InvalidLayerException", $fault: "client" }, opts)) || this;
173
+ _this.name = "InvalidLayerException";
174
+ _this.$fault = "client";
175
+ Object.setPrototypeOf(_this, InvalidLayerException.prototype);
176
+ return _this;
177
+ }
178
+ return InvalidLayerException;
179
+ }(__BaseException));
180
+ export { InvalidLayerException };
181
+ var KmsException = (function (_super) {
182
+ __extends(KmsException, _super);
183
+ function KmsException(opts) {
184
+ var _this = _super.call(this, __assign({ name: "KmsException", $fault: "client" }, opts)) || this;
185
+ _this.name = "KmsException";
186
+ _this.$fault = "client";
187
+ Object.setPrototypeOf(_this, KmsException.prototype);
188
+ _this.kmsError = opts.kmsError;
189
+ return _this;
190
+ }
191
+ return KmsException;
192
+ }(__BaseException));
193
+ export { KmsException };
194
+ var LayerAlreadyExistsException = (function (_super) {
195
+ __extends(LayerAlreadyExistsException, _super);
196
+ function LayerAlreadyExistsException(opts) {
197
+ var _this = _super.call(this, __assign({ name: "LayerAlreadyExistsException", $fault: "client" }, opts)) || this;
198
+ _this.name = "LayerAlreadyExistsException";
199
+ _this.$fault = "client";
200
+ Object.setPrototypeOf(_this, LayerAlreadyExistsException.prototype);
201
+ return _this;
202
+ }
203
+ return LayerAlreadyExistsException;
204
+ }(__BaseException));
205
+ export { LayerAlreadyExistsException };
206
+ var LayerPartTooSmallException = (function (_super) {
207
+ __extends(LayerPartTooSmallException, _super);
208
+ function LayerPartTooSmallException(opts) {
209
+ var _this = _super.call(this, __assign({ name: "LayerPartTooSmallException", $fault: "client" }, opts)) || this;
210
+ _this.name = "LayerPartTooSmallException";
211
+ _this.$fault = "client";
212
+ Object.setPrototypeOf(_this, LayerPartTooSmallException.prototype);
213
+ return _this;
214
+ }
215
+ return LayerPartTooSmallException;
216
+ }(__BaseException));
217
+ export { LayerPartTooSmallException };
218
+ var UploadNotFoundException = (function (_super) {
219
+ __extends(UploadNotFoundException, _super);
220
+ function UploadNotFoundException(opts) {
221
+ var _this = _super.call(this, __assign({ name: "UploadNotFoundException", $fault: "client" }, opts)) || this;
222
+ _this.name = "UploadNotFoundException";
223
+ _this.$fault = "client";
224
+ Object.setPrototypeOf(_this, UploadNotFoundException.prototype);
225
+ return _this;
226
+ }
227
+ return UploadNotFoundException;
228
+ }(__BaseException));
229
+ export { UploadNotFoundException };
108
230
  export var CreatePullThroughCacheRuleRequest;
109
231
  (function (CreatePullThroughCacheRuleRequest) {
110
232
  CreatePullThroughCacheRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -113,6 +235,42 @@ export var CreatePullThroughCacheRuleResponse;
113
235
  (function (CreatePullThroughCacheRuleResponse) {
114
236
  CreatePullThroughCacheRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
115
237
  })(CreatePullThroughCacheRuleResponse || (CreatePullThroughCacheRuleResponse = {}));
238
+ var LimitExceededException = (function (_super) {
239
+ __extends(LimitExceededException, _super);
240
+ function LimitExceededException(opts) {
241
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
242
+ _this.name = "LimitExceededException";
243
+ _this.$fault = "client";
244
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
245
+ return _this;
246
+ }
247
+ return LimitExceededException;
248
+ }(__BaseException));
249
+ export { LimitExceededException };
250
+ var PullThroughCacheRuleAlreadyExistsException = (function (_super) {
251
+ __extends(PullThroughCacheRuleAlreadyExistsException, _super);
252
+ function PullThroughCacheRuleAlreadyExistsException(opts) {
253
+ var _this = _super.call(this, __assign({ name: "PullThroughCacheRuleAlreadyExistsException", $fault: "client" }, opts)) || this;
254
+ _this.name = "PullThroughCacheRuleAlreadyExistsException";
255
+ _this.$fault = "client";
256
+ Object.setPrototypeOf(_this, PullThroughCacheRuleAlreadyExistsException.prototype);
257
+ return _this;
258
+ }
259
+ return PullThroughCacheRuleAlreadyExistsException;
260
+ }(__BaseException));
261
+ export { PullThroughCacheRuleAlreadyExistsException };
262
+ var UnsupportedUpstreamRegistryException = (function (_super) {
263
+ __extends(UnsupportedUpstreamRegistryException, _super);
264
+ function UnsupportedUpstreamRegistryException(opts) {
265
+ var _this = _super.call(this, __assign({ name: "UnsupportedUpstreamRegistryException", $fault: "client" }, opts)) || this;
266
+ _this.name = "UnsupportedUpstreamRegistryException";
267
+ _this.$fault = "client";
268
+ Object.setPrototypeOf(_this, UnsupportedUpstreamRegistryException.prototype);
269
+ return _this;
270
+ }
271
+ return UnsupportedUpstreamRegistryException;
272
+ }(__BaseException));
273
+ export { UnsupportedUpstreamRegistryException };
116
274
  export var EncryptionType;
117
275
  (function (EncryptionType) {
118
276
  EncryptionType["AES256"] = "AES256";
@@ -147,6 +305,42 @@ export var CreateRepositoryResponse;
147
305
  (function (CreateRepositoryResponse) {
148
306
  CreateRepositoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
307
  })(CreateRepositoryResponse || (CreateRepositoryResponse = {}));
308
+ var InvalidTagParameterException = (function (_super) {
309
+ __extends(InvalidTagParameterException, _super);
310
+ function InvalidTagParameterException(opts) {
311
+ var _this = _super.call(this, __assign({ name: "InvalidTagParameterException", $fault: "client" }, opts)) || this;
312
+ _this.name = "InvalidTagParameterException";
313
+ _this.$fault = "client";
314
+ Object.setPrototypeOf(_this, InvalidTagParameterException.prototype);
315
+ return _this;
316
+ }
317
+ return InvalidTagParameterException;
318
+ }(__BaseException));
319
+ export { InvalidTagParameterException };
320
+ var RepositoryAlreadyExistsException = (function (_super) {
321
+ __extends(RepositoryAlreadyExistsException, _super);
322
+ function RepositoryAlreadyExistsException(opts) {
323
+ var _this = _super.call(this, __assign({ name: "RepositoryAlreadyExistsException", $fault: "client" }, opts)) || this;
324
+ _this.name = "RepositoryAlreadyExistsException";
325
+ _this.$fault = "client";
326
+ Object.setPrototypeOf(_this, RepositoryAlreadyExistsException.prototype);
327
+ return _this;
328
+ }
329
+ return RepositoryAlreadyExistsException;
330
+ }(__BaseException));
331
+ export { RepositoryAlreadyExistsException };
332
+ var TooManyTagsException = (function (_super) {
333
+ __extends(TooManyTagsException, _super);
334
+ function TooManyTagsException(opts) {
335
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
336
+ _this.name = "TooManyTagsException";
337
+ _this.$fault = "client";
338
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
339
+ return _this;
340
+ }
341
+ return TooManyTagsException;
342
+ }(__BaseException));
343
+ export { TooManyTagsException };
150
344
  export var DeleteLifecyclePolicyRequest;
151
345
  (function (DeleteLifecyclePolicyRequest) {
152
346
  DeleteLifecyclePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -155,6 +349,18 @@ export var DeleteLifecyclePolicyResponse;
155
349
  (function (DeleteLifecyclePolicyResponse) {
156
350
  DeleteLifecyclePolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
351
  })(DeleteLifecyclePolicyResponse || (DeleteLifecyclePolicyResponse = {}));
352
+ var LifecyclePolicyNotFoundException = (function (_super) {
353
+ __extends(LifecyclePolicyNotFoundException, _super);
354
+ function LifecyclePolicyNotFoundException(opts) {
355
+ var _this = _super.call(this, __assign({ name: "LifecyclePolicyNotFoundException", $fault: "client" }, opts)) || this;
356
+ _this.name = "LifecyclePolicyNotFoundException";
357
+ _this.$fault = "client";
358
+ Object.setPrototypeOf(_this, LifecyclePolicyNotFoundException.prototype);
359
+ return _this;
360
+ }
361
+ return LifecyclePolicyNotFoundException;
362
+ }(__BaseException));
363
+ export { LifecyclePolicyNotFoundException };
158
364
  export var DeletePullThroughCacheRuleRequest;
159
365
  (function (DeletePullThroughCacheRuleRequest) {
160
366
  DeletePullThroughCacheRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -163,6 +369,18 @@ export var DeletePullThroughCacheRuleResponse;
163
369
  (function (DeletePullThroughCacheRuleResponse) {
164
370
  DeletePullThroughCacheRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
371
  })(DeletePullThroughCacheRuleResponse || (DeletePullThroughCacheRuleResponse = {}));
372
+ var PullThroughCacheRuleNotFoundException = (function (_super) {
373
+ __extends(PullThroughCacheRuleNotFoundException, _super);
374
+ function PullThroughCacheRuleNotFoundException(opts) {
375
+ var _this = _super.call(this, __assign({ name: "PullThroughCacheRuleNotFoundException", $fault: "client" }, opts)) || this;
376
+ _this.name = "PullThroughCacheRuleNotFoundException";
377
+ _this.$fault = "client";
378
+ Object.setPrototypeOf(_this, PullThroughCacheRuleNotFoundException.prototype);
379
+ return _this;
380
+ }
381
+ return PullThroughCacheRuleNotFoundException;
382
+ }(__BaseException));
383
+ export { PullThroughCacheRuleNotFoundException };
166
384
  export var DeleteRegistryPolicyRequest;
167
385
  (function (DeleteRegistryPolicyRequest) {
168
386
  DeleteRegistryPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -171,6 +389,18 @@ export var DeleteRegistryPolicyResponse;
171
389
  (function (DeleteRegistryPolicyResponse) {
172
390
  DeleteRegistryPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
391
  })(DeleteRegistryPolicyResponse || (DeleteRegistryPolicyResponse = {}));
392
+ var RegistryPolicyNotFoundException = (function (_super) {
393
+ __extends(RegistryPolicyNotFoundException, _super);
394
+ function RegistryPolicyNotFoundException(opts) {
395
+ var _this = _super.call(this, __assign({ name: "RegistryPolicyNotFoundException", $fault: "client" }, opts)) || this;
396
+ _this.name = "RegistryPolicyNotFoundException";
397
+ _this.$fault = "client";
398
+ Object.setPrototypeOf(_this, RegistryPolicyNotFoundException.prototype);
399
+ return _this;
400
+ }
401
+ return RegistryPolicyNotFoundException;
402
+ }(__BaseException));
403
+ export { RegistryPolicyNotFoundException };
174
404
  export var DeleteRepositoryRequest;
175
405
  (function (DeleteRepositoryRequest) {
176
406
  DeleteRepositoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -179,6 +409,18 @@ export var DeleteRepositoryResponse;
179
409
  (function (DeleteRepositoryResponse) {
180
410
  DeleteRepositoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
411
  })(DeleteRepositoryResponse || (DeleteRepositoryResponse = {}));
412
+ var RepositoryNotEmptyException = (function (_super) {
413
+ __extends(RepositoryNotEmptyException, _super);
414
+ function RepositoryNotEmptyException(opts) {
415
+ var _this = _super.call(this, __assign({ name: "RepositoryNotEmptyException", $fault: "client" }, opts)) || this;
416
+ _this.name = "RepositoryNotEmptyException";
417
+ _this.$fault = "client";
418
+ Object.setPrototypeOf(_this, RepositoryNotEmptyException.prototype);
419
+ return _this;
420
+ }
421
+ return RepositoryNotEmptyException;
422
+ }(__BaseException));
423
+ export { RepositoryNotEmptyException };
182
424
  export var DeleteRepositoryPolicyRequest;
183
425
  (function (DeleteRepositoryPolicyRequest) {
184
426
  DeleteRepositoryPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -187,6 +429,18 @@ export var DeleteRepositoryPolicyResponse;
187
429
  (function (DeleteRepositoryPolicyResponse) {
188
430
  DeleteRepositoryPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
431
  })(DeleteRepositoryPolicyResponse || (DeleteRepositoryPolicyResponse = {}));
432
+ var RepositoryPolicyNotFoundException = (function (_super) {
433
+ __extends(RepositoryPolicyNotFoundException, _super);
434
+ function RepositoryPolicyNotFoundException(opts) {
435
+ var _this = _super.call(this, __assign({ name: "RepositoryPolicyNotFoundException", $fault: "client" }, opts)) || this;
436
+ _this.name = "RepositoryPolicyNotFoundException";
437
+ _this.$fault = "client";
438
+ Object.setPrototypeOf(_this, RepositoryPolicyNotFoundException.prototype);
439
+ return _this;
440
+ }
441
+ return RepositoryPolicyNotFoundException;
442
+ }(__BaseException));
443
+ export { RepositoryPolicyNotFoundException };
190
444
  export var DescribeImageReplicationStatusRequest;
191
445
  (function (DescribeImageReplicationStatusRequest) {
192
446
  DescribeImageReplicationStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -205,6 +459,18 @@ export var DescribeImageReplicationStatusResponse;
205
459
  (function (DescribeImageReplicationStatusResponse) {
206
460
  DescribeImageReplicationStatusResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
461
  })(DescribeImageReplicationStatusResponse || (DescribeImageReplicationStatusResponse = {}));
462
+ var ImageNotFoundException = (function (_super) {
463
+ __extends(ImageNotFoundException, _super);
464
+ function ImageNotFoundException(opts) {
465
+ var _this = _super.call(this, __assign({ name: "ImageNotFoundException", $fault: "client" }, opts)) || this;
466
+ _this.name = "ImageNotFoundException";
467
+ _this.$fault = "client";
468
+ Object.setPrototypeOf(_this, ImageNotFoundException.prototype);
469
+ return _this;
470
+ }
471
+ return ImageNotFoundException;
472
+ }(__BaseException));
473
+ export { ImageNotFoundException };
208
474
  export var TagStatus;
209
475
  (function (TagStatus) {
210
476
  TagStatus["ANY"] = "ANY";
@@ -323,6 +589,18 @@ export var DescribeImageScanFindingsResponse;
323
589
  (function (DescribeImageScanFindingsResponse) {
324
590
  DescribeImageScanFindingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
591
  })(DescribeImageScanFindingsResponse || (DescribeImageScanFindingsResponse = {}));
592
+ var ScanNotFoundException = (function (_super) {
593
+ __extends(ScanNotFoundException, _super);
594
+ function ScanNotFoundException(opts) {
595
+ var _this = _super.call(this, __assign({ name: "ScanNotFoundException", $fault: "client" }, opts)) || this;
596
+ _this.name = "ScanNotFoundException";
597
+ _this.$fault = "client";
598
+ Object.setPrototypeOf(_this, ScanNotFoundException.prototype);
599
+ return _this;
600
+ }
601
+ return ScanNotFoundException;
602
+ }(__BaseException));
603
+ export { ScanNotFoundException };
326
604
  export var DescribePullThroughCacheRulesRequest;
327
605
  (function (DescribePullThroughCacheRulesRequest) {
328
606
  DescribePullThroughCacheRulesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -391,6 +669,30 @@ export var GetDownloadUrlForLayerResponse;
391
669
  (function (GetDownloadUrlForLayerResponse) {
392
670
  GetDownloadUrlForLayerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
671
  })(GetDownloadUrlForLayerResponse || (GetDownloadUrlForLayerResponse = {}));
672
+ var LayerInaccessibleException = (function (_super) {
673
+ __extends(LayerInaccessibleException, _super);
674
+ function LayerInaccessibleException(opts) {
675
+ var _this = _super.call(this, __assign({ name: "LayerInaccessibleException", $fault: "client" }, opts)) || this;
676
+ _this.name = "LayerInaccessibleException";
677
+ _this.$fault = "client";
678
+ Object.setPrototypeOf(_this, LayerInaccessibleException.prototype);
679
+ return _this;
680
+ }
681
+ return LayerInaccessibleException;
682
+ }(__BaseException));
683
+ export { LayerInaccessibleException };
684
+ var LayersNotFoundException = (function (_super) {
685
+ __extends(LayersNotFoundException, _super);
686
+ function LayersNotFoundException(opts) {
687
+ var _this = _super.call(this, __assign({ name: "LayersNotFoundException", $fault: "client" }, opts)) || this;
688
+ _this.name = "LayersNotFoundException";
689
+ _this.$fault = "client";
690
+ Object.setPrototypeOf(_this, LayersNotFoundException.prototype);
691
+ return _this;
692
+ }
693
+ return LayersNotFoundException;
694
+ }(__BaseException));
695
+ export { LayersNotFoundException };
394
696
  export var GetLifecyclePolicyRequest;
395
697
  (function (GetLifecyclePolicyRequest) {
396
698
  GetLifecyclePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -434,6 +736,18 @@ export var GetLifecyclePolicyPreviewResponse;
434
736
  (function (GetLifecyclePolicyPreviewResponse) {
435
737
  GetLifecyclePolicyPreviewResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
738
  })(GetLifecyclePolicyPreviewResponse || (GetLifecyclePolicyPreviewResponse = {}));
739
+ var LifecyclePolicyPreviewNotFoundException = (function (_super) {
740
+ __extends(LifecyclePolicyPreviewNotFoundException, _super);
741
+ function LifecyclePolicyPreviewNotFoundException(opts) {
742
+ var _this = _super.call(this, __assign({ name: "LifecyclePolicyPreviewNotFoundException", $fault: "client" }, opts)) || this;
743
+ _this.name = "LifecyclePolicyPreviewNotFoundException";
744
+ _this.$fault = "client";
745
+ Object.setPrototypeOf(_this, LifecyclePolicyPreviewNotFoundException.prototype);
746
+ return _this;
747
+ }
748
+ return LifecyclePolicyPreviewNotFoundException;
749
+ }(__BaseException));
750
+ export { LifecyclePolicyPreviewNotFoundException };
437
751
  export var GetRegistryPolicyRequest;
438
752
  (function (GetRegistryPolicyRequest) {
439
753
  GetRegistryPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -499,6 +813,42 @@ export var ListTagsForResourceResponse;
499
813
  (function (ListTagsForResourceResponse) {
500
814
  ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
501
815
  })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
816
+ var ImageAlreadyExistsException = (function (_super) {
817
+ __extends(ImageAlreadyExistsException, _super);
818
+ function ImageAlreadyExistsException(opts) {
819
+ var _this = _super.call(this, __assign({ name: "ImageAlreadyExistsException", $fault: "client" }, opts)) || this;
820
+ _this.name = "ImageAlreadyExistsException";
821
+ _this.$fault = "client";
822
+ Object.setPrototypeOf(_this, ImageAlreadyExistsException.prototype);
823
+ return _this;
824
+ }
825
+ return ImageAlreadyExistsException;
826
+ }(__BaseException));
827
+ export { ImageAlreadyExistsException };
828
+ var ImageDigestDoesNotMatchException = (function (_super) {
829
+ __extends(ImageDigestDoesNotMatchException, _super);
830
+ function ImageDigestDoesNotMatchException(opts) {
831
+ var _this = _super.call(this, __assign({ name: "ImageDigestDoesNotMatchException", $fault: "client" }, opts)) || this;
832
+ _this.name = "ImageDigestDoesNotMatchException";
833
+ _this.$fault = "client";
834
+ Object.setPrototypeOf(_this, ImageDigestDoesNotMatchException.prototype);
835
+ return _this;
836
+ }
837
+ return ImageDigestDoesNotMatchException;
838
+ }(__BaseException));
839
+ export { ImageDigestDoesNotMatchException };
840
+ var ImageTagAlreadyExistsException = (function (_super) {
841
+ __extends(ImageTagAlreadyExistsException, _super);
842
+ function ImageTagAlreadyExistsException(opts) {
843
+ var _this = _super.call(this, __assign({ name: "ImageTagAlreadyExistsException", $fault: "client" }, opts)) || this;
844
+ _this.name = "ImageTagAlreadyExistsException";
845
+ _this.$fault = "client";
846
+ Object.setPrototypeOf(_this, ImageTagAlreadyExistsException.prototype);
847
+ return _this;
848
+ }
849
+ return ImageTagAlreadyExistsException;
850
+ }(__BaseException));
851
+ export { ImageTagAlreadyExistsException };
502
852
  export var PutImageRequest;
503
853
  (function (PutImageRequest) {
504
854
  PutImageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -507,6 +857,18 @@ export var PutImageResponse;
507
857
  (function (PutImageResponse) {
508
858
  PutImageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
509
859
  })(PutImageResponse || (PutImageResponse = {}));
860
+ var ReferencedImagesNotFoundException = (function (_super) {
861
+ __extends(ReferencedImagesNotFoundException, _super);
862
+ function ReferencedImagesNotFoundException(opts) {
863
+ var _this = _super.call(this, __assign({ name: "ReferencedImagesNotFoundException", $fault: "client" }, opts)) || this;
864
+ _this.name = "ReferencedImagesNotFoundException";
865
+ _this.$fault = "client";
866
+ Object.setPrototypeOf(_this, ReferencedImagesNotFoundException.prototype);
867
+ return _this;
868
+ }
869
+ return ReferencedImagesNotFoundException;
870
+ }(__BaseException));
871
+ export { ReferencedImagesNotFoundException };
510
872
  export var PutImageScanningConfigurationRequest;
511
873
  (function (PutImageScanningConfigurationRequest) {
512
874
  PutImageScanningConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -571,6 +933,30 @@ export var StartImageScanResponse;
571
933
  (function (StartImageScanResponse) {
572
934
  StartImageScanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
573
935
  })(StartImageScanResponse || (StartImageScanResponse = {}));
936
+ var UnsupportedImageTypeException = (function (_super) {
937
+ __extends(UnsupportedImageTypeException, _super);
938
+ function UnsupportedImageTypeException(opts) {
939
+ var _this = _super.call(this, __assign({ name: "UnsupportedImageTypeException", $fault: "client" }, opts)) || this;
940
+ _this.name = "UnsupportedImageTypeException";
941
+ _this.$fault = "client";
942
+ Object.setPrototypeOf(_this, UnsupportedImageTypeException.prototype);
943
+ return _this;
944
+ }
945
+ return UnsupportedImageTypeException;
946
+ }(__BaseException));
947
+ export { UnsupportedImageTypeException };
948
+ var LifecyclePolicyPreviewInProgressException = (function (_super) {
949
+ __extends(LifecyclePolicyPreviewInProgressException, _super);
950
+ function LifecyclePolicyPreviewInProgressException(opts) {
951
+ var _this = _super.call(this, __assign({ name: "LifecyclePolicyPreviewInProgressException", $fault: "client" }, opts)) || this;
952
+ _this.name = "LifecyclePolicyPreviewInProgressException";
953
+ _this.$fault = "client";
954
+ Object.setPrototypeOf(_this, LifecyclePolicyPreviewInProgressException.prototype);
955
+ return _this;
956
+ }
957
+ return LifecyclePolicyPreviewInProgressException;
958
+ }(__BaseException));
959
+ export { LifecyclePolicyPreviewInProgressException };
574
960
  export var StartLifecyclePolicyPreviewRequest;
575
961
  (function (StartLifecyclePolicyPreviewRequest) {
576
962
  StartLifecyclePolicyPreviewRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -595,6 +981,22 @@ export var UntagResourceResponse;
595
981
  (function (UntagResourceResponse) {
596
982
  UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
597
983
  })(UntagResourceResponse || (UntagResourceResponse = {}));
984
+ var InvalidLayerPartException = (function (_super) {
985
+ __extends(InvalidLayerPartException, _super);
986
+ function InvalidLayerPartException(opts) {
987
+ var _this = _super.call(this, __assign({ name: "InvalidLayerPartException", $fault: "client" }, opts)) || this;
988
+ _this.name = "InvalidLayerPartException";
989
+ _this.$fault = "client";
990
+ Object.setPrototypeOf(_this, InvalidLayerPartException.prototype);
991
+ _this.registryId = opts.registryId;
992
+ _this.repositoryName = opts.repositoryName;
993
+ _this.uploadId = opts.uploadId;
994
+ _this.lastValidByteReceived = opts.lastValidByteReceived;
995
+ return _this;
996
+ }
997
+ return InvalidLayerPartException;
998
+ }(__BaseException));
999
+ export { InvalidLayerPartException };
598
1000
  export var UploadLayerPartRequest;
599
1001
  (function (UploadLayerPartRequest) {
600
1002
  UploadLayerPartRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };