@aws-sdk/client-ecr-public 3.183.0 → 3.185.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 (40) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/ECRPUBLIC.js +101 -94
  4. package/dist-es/ECRPUBLICClient.js +28 -22
  5. package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +28 -21
  6. package/dist-es/commands/BatchDeleteImageCommand.js +28 -21
  7. package/dist-es/commands/CompleteLayerUploadCommand.js +28 -21
  8. package/dist-es/commands/CreateRepositoryCommand.js +28 -21
  9. package/dist-es/commands/DeleteRepositoryCommand.js +28 -21
  10. package/dist-es/commands/DeleteRepositoryPolicyCommand.js +28 -21
  11. package/dist-es/commands/DescribeImageTagsCommand.js +28 -21
  12. package/dist-es/commands/DescribeImagesCommand.js +28 -21
  13. package/dist-es/commands/DescribeRegistriesCommand.js +28 -21
  14. package/dist-es/commands/DescribeRepositoriesCommand.js +28 -21
  15. package/dist-es/commands/GetAuthorizationTokenCommand.js +28 -21
  16. package/dist-es/commands/GetRegistryCatalogDataCommand.js +28 -21
  17. package/dist-es/commands/GetRepositoryCatalogDataCommand.js +28 -21
  18. package/dist-es/commands/GetRepositoryPolicyCommand.js +28 -21
  19. package/dist-es/commands/InitiateLayerUploadCommand.js +28 -21
  20. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  21. package/dist-es/commands/PutImageCommand.js +28 -21
  22. package/dist-es/commands/PutRegistryCatalogDataCommand.js +28 -21
  23. package/dist-es/commands/PutRepositoryCatalogDataCommand.js +28 -21
  24. package/dist-es/commands/SetRepositoryPolicyCommand.js +28 -21
  25. package/dist-es/commands/TagResourceCommand.js +28 -21
  26. package/dist-es/commands/UntagResourceCommand.js +28 -21
  27. package/dist-es/commands/UploadLayerPartCommand.js +28 -21
  28. package/dist-es/endpoints.js +8 -8
  29. package/dist-es/models/ECRPUBLICServiceException.js +10 -5
  30. package/dist-es/models/models_0.js +320 -443
  31. package/dist-es/pagination/DescribeImageTagsPaginator.js +68 -25
  32. package/dist-es/pagination/DescribeImagesPaginator.js +68 -25
  33. package/dist-es/pagination/DescribeRegistriesPaginator.js +68 -25
  34. package/dist-es/pagination/DescribeRepositoriesPaginator.js +68 -25
  35. package/dist-es/protocols/Aws_json1_1.js +2211 -1747
  36. package/dist-es/runtimeConfig.browser.js +12 -26
  37. package/dist-es/runtimeConfig.js +12 -30
  38. package/dist-es/runtimeConfig.native.js +5 -8
  39. package/dist-es/runtimeConfig.shared.js +11 -8
  40. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { ECRPUBLICServiceException as __BaseException } from "./ECRPUBLICServiceException";
2
3
  export var LayerFailureCode;
3
4
  (function (LayerFailureCode) {
@@ -9,54 +10,54 @@ export var LayerAvailability;
9
10
  LayerAvailability["AVAILABLE"] = "AVAILABLE";
10
11
  LayerAvailability["UNAVAILABLE"] = "UNAVAILABLE";
11
12
  })(LayerAvailability || (LayerAvailability = {}));
12
- export class InvalidParameterException extends __BaseException {
13
- constructor(opts) {
14
- super({
15
- name: "InvalidParameterException",
16
- $fault: "client",
17
- ...opts,
18
- });
19
- this.name = "InvalidParameterException";
20
- this.$fault = "client";
21
- Object.setPrototypeOf(this, InvalidParameterException.prototype);
13
+ var InvalidParameterException = (function (_super) {
14
+ __extends(InvalidParameterException, _super);
15
+ function InvalidParameterException(opts) {
16
+ var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
17
+ _this.name = "InvalidParameterException";
18
+ _this.$fault = "client";
19
+ Object.setPrototypeOf(_this, InvalidParameterException.prototype);
20
+ return _this;
22
21
  }
23
- }
24
- export class RegistryNotFoundException extends __BaseException {
25
- constructor(opts) {
26
- super({
27
- name: "RegistryNotFoundException",
28
- $fault: "client",
29
- ...opts,
30
- });
31
- this.name = "RegistryNotFoundException";
32
- this.$fault = "client";
33
- Object.setPrototypeOf(this, RegistryNotFoundException.prototype);
22
+ return InvalidParameterException;
23
+ }(__BaseException));
24
+ export { InvalidParameterException };
25
+ var RegistryNotFoundException = (function (_super) {
26
+ __extends(RegistryNotFoundException, _super);
27
+ function RegistryNotFoundException(opts) {
28
+ var _this = _super.call(this, __assign({ name: "RegistryNotFoundException", $fault: "client" }, opts)) || this;
29
+ _this.name = "RegistryNotFoundException";
30
+ _this.$fault = "client";
31
+ Object.setPrototypeOf(_this, RegistryNotFoundException.prototype);
32
+ return _this;
34
33
  }
35
- }
36
- export class RepositoryNotFoundException extends __BaseException {
37
- constructor(opts) {
38
- super({
39
- name: "RepositoryNotFoundException",
40
- $fault: "client",
41
- ...opts,
42
- });
43
- this.name = "RepositoryNotFoundException";
44
- this.$fault = "client";
45
- Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
34
+ return RegistryNotFoundException;
35
+ }(__BaseException));
36
+ export { RegistryNotFoundException };
37
+ var RepositoryNotFoundException = (function (_super) {
38
+ __extends(RepositoryNotFoundException, _super);
39
+ function RepositoryNotFoundException(opts) {
40
+ var _this = _super.call(this, __assign({ name: "RepositoryNotFoundException", $fault: "client" }, opts)) || this;
41
+ _this.name = "RepositoryNotFoundException";
42
+ _this.$fault = "client";
43
+ Object.setPrototypeOf(_this, RepositoryNotFoundException.prototype);
44
+ return _this;
46
45
  }
47
- }
48
- export class ServerException extends __BaseException {
49
- constructor(opts) {
50
- super({
51
- name: "ServerException",
52
- $fault: "server",
53
- ...opts,
54
- });
55
- this.name = "ServerException";
56
- this.$fault = "server";
57
- Object.setPrototypeOf(this, ServerException.prototype);
46
+ return RepositoryNotFoundException;
47
+ }(__BaseException));
48
+ export { RepositoryNotFoundException };
49
+ var ServerException = (function (_super) {
50
+ __extends(ServerException, _super);
51
+ function ServerException(opts) {
52
+ var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
53
+ _this.name = "ServerException";
54
+ _this.$fault = "server";
55
+ Object.setPrototypeOf(_this, ServerException.prototype);
56
+ return _this;
58
57
  }
59
- }
58
+ return ServerException;
59
+ }(__BaseException));
60
+ export { ServerException };
60
61
  export var ImageFailureCode;
61
62
  (function (ImageFailureCode) {
62
63
  ImageFailureCode["ImageNotFound"] = "ImageNotFound";
@@ -67,427 +68,303 @@ export var ImageFailureCode;
67
68
  ImageFailureCode["KmsError"] = "KmsError";
68
69
  ImageFailureCode["MissingDigestAndTag"] = "MissingDigestAndTag";
69
70
  })(ImageFailureCode || (ImageFailureCode = {}));
70
- export class EmptyUploadException extends __BaseException {
71
- constructor(opts) {
72
- super({
73
- name: "EmptyUploadException",
74
- $fault: "client",
75
- ...opts,
76
- });
77
- this.name = "EmptyUploadException";
78
- this.$fault = "client";
79
- Object.setPrototypeOf(this, EmptyUploadException.prototype);
71
+ var EmptyUploadException = (function (_super) {
72
+ __extends(EmptyUploadException, _super);
73
+ function EmptyUploadException(opts) {
74
+ var _this = _super.call(this, __assign({ name: "EmptyUploadException", $fault: "client" }, opts)) || this;
75
+ _this.name = "EmptyUploadException";
76
+ _this.$fault = "client";
77
+ Object.setPrototypeOf(_this, EmptyUploadException.prototype);
78
+ return _this;
80
79
  }
81
- }
82
- export class InvalidLayerException extends __BaseException {
83
- constructor(opts) {
84
- super({
85
- name: "InvalidLayerException",
86
- $fault: "client",
87
- ...opts,
88
- });
89
- this.name = "InvalidLayerException";
90
- this.$fault = "client";
91
- Object.setPrototypeOf(this, InvalidLayerException.prototype);
80
+ return EmptyUploadException;
81
+ }(__BaseException));
82
+ export { EmptyUploadException };
83
+ var InvalidLayerException = (function (_super) {
84
+ __extends(InvalidLayerException, _super);
85
+ function InvalidLayerException(opts) {
86
+ var _this = _super.call(this, __assign({ name: "InvalidLayerException", $fault: "client" }, opts)) || this;
87
+ _this.name = "InvalidLayerException";
88
+ _this.$fault = "client";
89
+ Object.setPrototypeOf(_this, InvalidLayerException.prototype);
90
+ return _this;
92
91
  }
93
- }
94
- export class LayerAlreadyExistsException extends __BaseException {
95
- constructor(opts) {
96
- super({
97
- name: "LayerAlreadyExistsException",
98
- $fault: "client",
99
- ...opts,
100
- });
101
- this.name = "LayerAlreadyExistsException";
102
- this.$fault = "client";
103
- Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
92
+ return InvalidLayerException;
93
+ }(__BaseException));
94
+ export { InvalidLayerException };
95
+ var LayerAlreadyExistsException = (function (_super) {
96
+ __extends(LayerAlreadyExistsException, _super);
97
+ function LayerAlreadyExistsException(opts) {
98
+ var _this = _super.call(this, __assign({ name: "LayerAlreadyExistsException", $fault: "client" }, opts)) || this;
99
+ _this.name = "LayerAlreadyExistsException";
100
+ _this.$fault = "client";
101
+ Object.setPrototypeOf(_this, LayerAlreadyExistsException.prototype);
102
+ return _this;
104
103
  }
105
- }
106
- export class LayerPartTooSmallException extends __BaseException {
107
- constructor(opts) {
108
- super({
109
- name: "LayerPartTooSmallException",
110
- $fault: "client",
111
- ...opts,
112
- });
113
- this.name = "LayerPartTooSmallException";
114
- this.$fault = "client";
115
- Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
104
+ return LayerAlreadyExistsException;
105
+ }(__BaseException));
106
+ export { LayerAlreadyExistsException };
107
+ var LayerPartTooSmallException = (function (_super) {
108
+ __extends(LayerPartTooSmallException, _super);
109
+ function LayerPartTooSmallException(opts) {
110
+ var _this = _super.call(this, __assign({ name: "LayerPartTooSmallException", $fault: "client" }, opts)) || this;
111
+ _this.name = "LayerPartTooSmallException";
112
+ _this.$fault = "client";
113
+ Object.setPrototypeOf(_this, LayerPartTooSmallException.prototype);
114
+ return _this;
116
115
  }
117
- }
118
- export class UnsupportedCommandException extends __BaseException {
119
- constructor(opts) {
120
- super({
121
- name: "UnsupportedCommandException",
122
- $fault: "client",
123
- ...opts,
124
- });
125
- this.name = "UnsupportedCommandException";
126
- this.$fault = "client";
127
- Object.setPrototypeOf(this, UnsupportedCommandException.prototype);
116
+ return LayerPartTooSmallException;
117
+ }(__BaseException));
118
+ export { LayerPartTooSmallException };
119
+ var UnsupportedCommandException = (function (_super) {
120
+ __extends(UnsupportedCommandException, _super);
121
+ function UnsupportedCommandException(opts) {
122
+ var _this = _super.call(this, __assign({ name: "UnsupportedCommandException", $fault: "client" }, opts)) || this;
123
+ _this.name = "UnsupportedCommandException";
124
+ _this.$fault = "client";
125
+ Object.setPrototypeOf(_this, UnsupportedCommandException.prototype);
126
+ return _this;
128
127
  }
129
- }
130
- export class UploadNotFoundException extends __BaseException {
131
- constructor(opts) {
132
- super({
133
- name: "UploadNotFoundException",
134
- $fault: "client",
135
- ...opts,
136
- });
137
- this.name = "UploadNotFoundException";
138
- this.$fault = "client";
139
- Object.setPrototypeOf(this, UploadNotFoundException.prototype);
128
+ return UnsupportedCommandException;
129
+ }(__BaseException));
130
+ export { UnsupportedCommandException };
131
+ var UploadNotFoundException = (function (_super) {
132
+ __extends(UploadNotFoundException, _super);
133
+ function UploadNotFoundException(opts) {
134
+ var _this = _super.call(this, __assign({ name: "UploadNotFoundException", $fault: "client" }, opts)) || this;
135
+ _this.name = "UploadNotFoundException";
136
+ _this.$fault = "client";
137
+ Object.setPrototypeOf(_this, UploadNotFoundException.prototype);
138
+ return _this;
140
139
  }
141
- }
142
- export class InvalidTagParameterException extends __BaseException {
143
- constructor(opts) {
144
- super({
145
- name: "InvalidTagParameterException",
146
- $fault: "client",
147
- ...opts,
148
- });
149
- this.name = "InvalidTagParameterException";
150
- this.$fault = "client";
151
- Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
140
+ return UploadNotFoundException;
141
+ }(__BaseException));
142
+ export { UploadNotFoundException };
143
+ var InvalidTagParameterException = (function (_super) {
144
+ __extends(InvalidTagParameterException, _super);
145
+ function InvalidTagParameterException(opts) {
146
+ var _this = _super.call(this, __assign({ name: "InvalidTagParameterException", $fault: "client" }, opts)) || this;
147
+ _this.name = "InvalidTagParameterException";
148
+ _this.$fault = "client";
149
+ Object.setPrototypeOf(_this, InvalidTagParameterException.prototype);
150
+ return _this;
152
151
  }
153
- }
154
- export class LimitExceededException extends __BaseException {
155
- constructor(opts) {
156
- super({
157
- name: "LimitExceededException",
158
- $fault: "client",
159
- ...opts,
160
- });
161
- this.name = "LimitExceededException";
162
- this.$fault = "client";
163
- Object.setPrototypeOf(this, LimitExceededException.prototype);
152
+ return InvalidTagParameterException;
153
+ }(__BaseException));
154
+ export { InvalidTagParameterException };
155
+ var LimitExceededException = (function (_super) {
156
+ __extends(LimitExceededException, _super);
157
+ function LimitExceededException(opts) {
158
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
159
+ _this.name = "LimitExceededException";
160
+ _this.$fault = "client";
161
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
162
+ return _this;
164
163
  }
165
- }
166
- export class RepositoryAlreadyExistsException extends __BaseException {
167
- constructor(opts) {
168
- super({
169
- name: "RepositoryAlreadyExistsException",
170
- $fault: "client",
171
- ...opts,
172
- });
173
- this.name = "RepositoryAlreadyExistsException";
174
- this.$fault = "client";
175
- Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
164
+ return LimitExceededException;
165
+ }(__BaseException));
166
+ export { LimitExceededException };
167
+ var RepositoryAlreadyExistsException = (function (_super) {
168
+ __extends(RepositoryAlreadyExistsException, _super);
169
+ function RepositoryAlreadyExistsException(opts) {
170
+ var _this = _super.call(this, __assign({ name: "RepositoryAlreadyExistsException", $fault: "client" }, opts)) || this;
171
+ _this.name = "RepositoryAlreadyExistsException";
172
+ _this.$fault = "client";
173
+ Object.setPrototypeOf(_this, RepositoryAlreadyExistsException.prototype);
174
+ return _this;
176
175
  }
177
- }
178
- export class TooManyTagsException extends __BaseException {
179
- constructor(opts) {
180
- super({
181
- name: "TooManyTagsException",
182
- $fault: "client",
183
- ...opts,
184
- });
185
- this.name = "TooManyTagsException";
186
- this.$fault = "client";
187
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
176
+ return RepositoryAlreadyExistsException;
177
+ }(__BaseException));
178
+ export { RepositoryAlreadyExistsException };
179
+ var TooManyTagsException = (function (_super) {
180
+ __extends(TooManyTagsException, _super);
181
+ function TooManyTagsException(opts) {
182
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
183
+ _this.name = "TooManyTagsException";
184
+ _this.$fault = "client";
185
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
186
+ return _this;
188
187
  }
189
- }
190
- export class RepositoryNotEmptyException extends __BaseException {
191
- constructor(opts) {
192
- super({
193
- name: "RepositoryNotEmptyException",
194
- $fault: "client",
195
- ...opts,
196
- });
197
- this.name = "RepositoryNotEmptyException";
198
- this.$fault = "client";
199
- Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
188
+ return TooManyTagsException;
189
+ }(__BaseException));
190
+ export { TooManyTagsException };
191
+ var RepositoryNotEmptyException = (function (_super) {
192
+ __extends(RepositoryNotEmptyException, _super);
193
+ function RepositoryNotEmptyException(opts) {
194
+ var _this = _super.call(this, __assign({ name: "RepositoryNotEmptyException", $fault: "client" }, opts)) || this;
195
+ _this.name = "RepositoryNotEmptyException";
196
+ _this.$fault = "client";
197
+ Object.setPrototypeOf(_this, RepositoryNotEmptyException.prototype);
198
+ return _this;
200
199
  }
201
- }
202
- export class RepositoryPolicyNotFoundException extends __BaseException {
203
- constructor(opts) {
204
- super({
205
- name: "RepositoryPolicyNotFoundException",
206
- $fault: "client",
207
- ...opts,
208
- });
209
- this.name = "RepositoryPolicyNotFoundException";
210
- this.$fault = "client";
211
- Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
200
+ return RepositoryNotEmptyException;
201
+ }(__BaseException));
202
+ export { RepositoryNotEmptyException };
203
+ var RepositoryPolicyNotFoundException = (function (_super) {
204
+ __extends(RepositoryPolicyNotFoundException, _super);
205
+ function RepositoryPolicyNotFoundException(opts) {
206
+ var _this = _super.call(this, __assign({ name: "RepositoryPolicyNotFoundException", $fault: "client" }, opts)) || this;
207
+ _this.name = "RepositoryPolicyNotFoundException";
208
+ _this.$fault = "client";
209
+ Object.setPrototypeOf(_this, RepositoryPolicyNotFoundException.prototype);
210
+ return _this;
212
211
  }
213
- }
214
- export class ImageNotFoundException extends __BaseException {
215
- constructor(opts) {
216
- super({
217
- name: "ImageNotFoundException",
218
- $fault: "client",
219
- ...opts,
220
- });
221
- this.name = "ImageNotFoundException";
222
- this.$fault = "client";
223
- Object.setPrototypeOf(this, ImageNotFoundException.prototype);
212
+ return RepositoryPolicyNotFoundException;
213
+ }(__BaseException));
214
+ export { RepositoryPolicyNotFoundException };
215
+ var ImageNotFoundException = (function (_super) {
216
+ __extends(ImageNotFoundException, _super);
217
+ function ImageNotFoundException(opts) {
218
+ var _this = _super.call(this, __assign({ name: "ImageNotFoundException", $fault: "client" }, opts)) || this;
219
+ _this.name = "ImageNotFoundException";
220
+ _this.$fault = "client";
221
+ Object.setPrototypeOf(_this, ImageNotFoundException.prototype);
222
+ return _this;
224
223
  }
225
- }
224
+ return ImageNotFoundException;
225
+ }(__BaseException));
226
+ export { ImageNotFoundException };
226
227
  export var RegistryAliasStatus;
227
228
  (function (RegistryAliasStatus) {
228
229
  RegistryAliasStatus["ACTIVE"] = "ACTIVE";
229
230
  RegistryAliasStatus["PENDING"] = "PENDING";
230
231
  RegistryAliasStatus["REJECTED"] = "REJECTED";
231
232
  })(RegistryAliasStatus || (RegistryAliasStatus = {}));
232
- export class ImageAlreadyExistsException extends __BaseException {
233
- constructor(opts) {
234
- super({
235
- name: "ImageAlreadyExistsException",
236
- $fault: "client",
237
- ...opts,
238
- });
239
- this.name = "ImageAlreadyExistsException";
240
- this.$fault = "client";
241
- Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
233
+ var ImageAlreadyExistsException = (function (_super) {
234
+ __extends(ImageAlreadyExistsException, _super);
235
+ function ImageAlreadyExistsException(opts) {
236
+ var _this = _super.call(this, __assign({ name: "ImageAlreadyExistsException", $fault: "client" }, opts)) || this;
237
+ _this.name = "ImageAlreadyExistsException";
238
+ _this.$fault = "client";
239
+ Object.setPrototypeOf(_this, ImageAlreadyExistsException.prototype);
240
+ return _this;
242
241
  }
243
- }
244
- export class ImageDigestDoesNotMatchException extends __BaseException {
245
- constructor(opts) {
246
- super({
247
- name: "ImageDigestDoesNotMatchException",
248
- $fault: "client",
249
- ...opts,
250
- });
251
- this.name = "ImageDigestDoesNotMatchException";
252
- this.$fault = "client";
253
- Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
242
+ return ImageAlreadyExistsException;
243
+ }(__BaseException));
244
+ export { ImageAlreadyExistsException };
245
+ var ImageDigestDoesNotMatchException = (function (_super) {
246
+ __extends(ImageDigestDoesNotMatchException, _super);
247
+ function ImageDigestDoesNotMatchException(opts) {
248
+ var _this = _super.call(this, __assign({ name: "ImageDigestDoesNotMatchException", $fault: "client" }, opts)) || this;
249
+ _this.name = "ImageDigestDoesNotMatchException";
250
+ _this.$fault = "client";
251
+ Object.setPrototypeOf(_this, ImageDigestDoesNotMatchException.prototype);
252
+ return _this;
254
253
  }
255
- }
256
- export class ImageTagAlreadyExistsException extends __BaseException {
257
- constructor(opts) {
258
- super({
259
- name: "ImageTagAlreadyExistsException",
260
- $fault: "client",
261
- ...opts,
262
- });
263
- this.name = "ImageTagAlreadyExistsException";
264
- this.$fault = "client";
265
- Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
254
+ return ImageDigestDoesNotMatchException;
255
+ }(__BaseException));
256
+ export { ImageDigestDoesNotMatchException };
257
+ var ImageTagAlreadyExistsException = (function (_super) {
258
+ __extends(ImageTagAlreadyExistsException, _super);
259
+ function ImageTagAlreadyExistsException(opts) {
260
+ var _this = _super.call(this, __assign({ name: "ImageTagAlreadyExistsException", $fault: "client" }, opts)) || this;
261
+ _this.name = "ImageTagAlreadyExistsException";
262
+ _this.$fault = "client";
263
+ Object.setPrototypeOf(_this, ImageTagAlreadyExistsException.prototype);
264
+ return _this;
266
265
  }
267
- }
268
- export class InvalidLayerPartException extends __BaseException {
269
- constructor(opts) {
270
- super({
271
- name: "InvalidLayerPartException",
272
- $fault: "client",
273
- ...opts,
274
- });
275
- this.name = "InvalidLayerPartException";
276
- this.$fault = "client";
277
- Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
278
- this.registryId = opts.registryId;
279
- this.repositoryName = opts.repositoryName;
280
- this.uploadId = opts.uploadId;
281
- this.lastValidByteReceived = opts.lastValidByteReceived;
266
+ return ImageTagAlreadyExistsException;
267
+ }(__BaseException));
268
+ export { ImageTagAlreadyExistsException };
269
+ var InvalidLayerPartException = (function (_super) {
270
+ __extends(InvalidLayerPartException, _super);
271
+ function InvalidLayerPartException(opts) {
272
+ var _this = _super.call(this, __assign({ name: "InvalidLayerPartException", $fault: "client" }, opts)) || this;
273
+ _this.name = "InvalidLayerPartException";
274
+ _this.$fault = "client";
275
+ Object.setPrototypeOf(_this, InvalidLayerPartException.prototype);
276
+ _this.registryId = opts.registryId;
277
+ _this.repositoryName = opts.repositoryName;
278
+ _this.uploadId = opts.uploadId;
279
+ _this.lastValidByteReceived = opts.lastValidByteReceived;
280
+ return _this;
282
281
  }
283
- }
284
- export class LayersNotFoundException extends __BaseException {
285
- constructor(opts) {
286
- super({
287
- name: "LayersNotFoundException",
288
- $fault: "client",
289
- ...opts,
290
- });
291
- this.name = "LayersNotFoundException";
292
- this.$fault = "client";
293
- Object.setPrototypeOf(this, LayersNotFoundException.prototype);
282
+ return InvalidLayerPartException;
283
+ }(__BaseException));
284
+ export { InvalidLayerPartException };
285
+ var LayersNotFoundException = (function (_super) {
286
+ __extends(LayersNotFoundException, _super);
287
+ function LayersNotFoundException(opts) {
288
+ var _this = _super.call(this, __assign({ name: "LayersNotFoundException", $fault: "client" }, opts)) || this;
289
+ _this.name = "LayersNotFoundException";
290
+ _this.$fault = "client";
291
+ Object.setPrototypeOf(_this, LayersNotFoundException.prototype);
292
+ return _this;
294
293
  }
295
- }
296
- export class ReferencedImagesNotFoundException extends __BaseException {
297
- constructor(opts) {
298
- super({
299
- name: "ReferencedImagesNotFoundException",
300
- $fault: "client",
301
- ...opts,
302
- });
303
- this.name = "ReferencedImagesNotFoundException";
304
- this.$fault = "client";
305
- Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
294
+ return LayersNotFoundException;
295
+ }(__BaseException));
296
+ export { LayersNotFoundException };
297
+ var ReferencedImagesNotFoundException = (function (_super) {
298
+ __extends(ReferencedImagesNotFoundException, _super);
299
+ function ReferencedImagesNotFoundException(opts) {
300
+ var _this = _super.call(this, __assign({ name: "ReferencedImagesNotFoundException", $fault: "client" }, opts)) || this;
301
+ _this.name = "ReferencedImagesNotFoundException";
302
+ _this.$fault = "client";
303
+ Object.setPrototypeOf(_this, ReferencedImagesNotFoundException.prototype);
304
+ return _this;
306
305
  }
307
- }
308
- export const AuthorizationDataFilterSensitiveLog = (obj) => ({
309
- ...obj,
310
- });
311
- export const BatchCheckLayerAvailabilityRequestFilterSensitiveLog = (obj) => ({
312
- ...obj,
313
- });
314
- export const LayerFailureFilterSensitiveLog = (obj) => ({
315
- ...obj,
316
- });
317
- export const LayerFilterSensitiveLog = (obj) => ({
318
- ...obj,
319
- });
320
- export const BatchCheckLayerAvailabilityResponseFilterSensitiveLog = (obj) => ({
321
- ...obj,
322
- });
323
- export const ImageIdentifierFilterSensitiveLog = (obj) => ({
324
- ...obj,
325
- });
326
- export const BatchDeleteImageRequestFilterSensitiveLog = (obj) => ({
327
- ...obj,
328
- });
329
- export const ImageFailureFilterSensitiveLog = (obj) => ({
330
- ...obj,
331
- });
332
- export const BatchDeleteImageResponseFilterSensitiveLog = (obj) => ({
333
- ...obj,
334
- });
335
- export const CompleteLayerUploadRequestFilterSensitiveLog = (obj) => ({
336
- ...obj,
337
- });
338
- export const CompleteLayerUploadResponseFilterSensitiveLog = (obj) => ({
339
- ...obj,
340
- });
341
- export const RepositoryCatalogDataInputFilterSensitiveLog = (obj) => ({
342
- ...obj,
343
- });
344
- export const TagFilterSensitiveLog = (obj) => ({
345
- ...obj,
346
- });
347
- export const CreateRepositoryRequestFilterSensitiveLog = (obj) => ({
348
- ...obj,
349
- });
350
- export const RepositoryCatalogDataFilterSensitiveLog = (obj) => ({
351
- ...obj,
352
- });
353
- export const RepositoryFilterSensitiveLog = (obj) => ({
354
- ...obj,
355
- });
356
- export const CreateRepositoryResponseFilterSensitiveLog = (obj) => ({
357
- ...obj,
358
- });
359
- export const DeleteRepositoryRequestFilterSensitiveLog = (obj) => ({
360
- ...obj,
361
- });
362
- export const DeleteRepositoryResponseFilterSensitiveLog = (obj) => ({
363
- ...obj,
364
- });
365
- export const DeleteRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
366
- ...obj,
367
- });
368
- export const DeleteRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
369
- ...obj,
370
- });
371
- export const DescribeImagesRequestFilterSensitiveLog = (obj) => ({
372
- ...obj,
373
- });
374
- export const ImageDetailFilterSensitiveLog = (obj) => ({
375
- ...obj,
376
- });
377
- export const DescribeImagesResponseFilterSensitiveLog = (obj) => ({
378
- ...obj,
379
- });
380
- export const DescribeImageTagsRequestFilterSensitiveLog = (obj) => ({
381
- ...obj,
382
- });
383
- export const ReferencedImageDetailFilterSensitiveLog = (obj) => ({
384
- ...obj,
385
- });
386
- export const ImageTagDetailFilterSensitiveLog = (obj) => ({
387
- ...obj,
388
- });
389
- export const DescribeImageTagsResponseFilterSensitiveLog = (obj) => ({
390
- ...obj,
391
- });
392
- export const DescribeRegistriesRequestFilterSensitiveLog = (obj) => ({
393
- ...obj,
394
- });
395
- export const RegistryAliasFilterSensitiveLog = (obj) => ({
396
- ...obj,
397
- });
398
- export const RegistryFilterSensitiveLog = (obj) => ({
399
- ...obj,
400
- });
401
- export const DescribeRegistriesResponseFilterSensitiveLog = (obj) => ({
402
- ...obj,
403
- });
404
- export const DescribeRepositoriesRequestFilterSensitiveLog = (obj) => ({
405
- ...obj,
406
- });
407
- export const DescribeRepositoriesResponseFilterSensitiveLog = (obj) => ({
408
- ...obj,
409
- });
410
- export const GetAuthorizationTokenRequestFilterSensitiveLog = (obj) => ({
411
- ...obj,
412
- });
413
- export const GetAuthorizationTokenResponseFilterSensitiveLog = (obj) => ({
414
- ...obj,
415
- });
416
- export const GetRegistryCatalogDataRequestFilterSensitiveLog = (obj) => ({
417
- ...obj,
418
- });
419
- export const RegistryCatalogDataFilterSensitiveLog = (obj) => ({
420
- ...obj,
421
- });
422
- export const GetRegistryCatalogDataResponseFilterSensitiveLog = (obj) => ({
423
- ...obj,
424
- });
425
- export const GetRepositoryCatalogDataRequestFilterSensitiveLog = (obj) => ({
426
- ...obj,
427
- });
428
- export const GetRepositoryCatalogDataResponseFilterSensitiveLog = (obj) => ({
429
- ...obj,
430
- });
431
- export const GetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
432
- ...obj,
433
- });
434
- export const GetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
435
- ...obj,
436
- });
437
- export const ImageFilterSensitiveLog = (obj) => ({
438
- ...obj,
439
- });
440
- export const InitiateLayerUploadRequestFilterSensitiveLog = (obj) => ({
441
- ...obj,
442
- });
443
- export const InitiateLayerUploadResponseFilterSensitiveLog = (obj) => ({
444
- ...obj,
445
- });
446
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
447
- ...obj,
448
- });
449
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
450
- ...obj,
451
- });
452
- export const PutImageRequestFilterSensitiveLog = (obj) => ({
453
- ...obj,
454
- });
455
- export const PutImageResponseFilterSensitiveLog = (obj) => ({
456
- ...obj,
457
- });
458
- export const PutRegistryCatalogDataRequestFilterSensitiveLog = (obj) => ({
459
- ...obj,
460
- });
461
- export const PutRegistryCatalogDataResponseFilterSensitiveLog = (obj) => ({
462
- ...obj,
463
- });
464
- export const PutRepositoryCatalogDataRequestFilterSensitiveLog = (obj) => ({
465
- ...obj,
466
- });
467
- export const PutRepositoryCatalogDataResponseFilterSensitiveLog = (obj) => ({
468
- ...obj,
469
- });
470
- export const SetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
471
- ...obj,
472
- });
473
- export const SetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
474
- ...obj,
475
- });
476
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
477
- ...obj,
478
- });
479
- export const TagResourceResponseFilterSensitiveLog = (obj) => ({
480
- ...obj,
481
- });
482
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
483
- ...obj,
484
- });
485
- export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
486
- ...obj,
487
- });
488
- export const UploadLayerPartRequestFilterSensitiveLog = (obj) => ({
489
- ...obj,
490
- });
491
- export const UploadLayerPartResponseFilterSensitiveLog = (obj) => ({
492
- ...obj,
493
- });
306
+ return ReferencedImagesNotFoundException;
307
+ }(__BaseException));
308
+ export { ReferencedImagesNotFoundException };
309
+ export var AuthorizationDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
+ export var BatchCheckLayerAvailabilityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
+ export var LayerFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
+ export var LayerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
+ export var BatchCheckLayerAvailabilityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
+ export var ImageIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
+ export var BatchDeleteImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
+ export var ImageFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
+ export var BatchDeleteImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
+ export var CompleteLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
+ export var CompleteLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
+ export var RepositoryCatalogDataInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
+ export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
+ export var CreateRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
+ export var RepositoryCatalogDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
+ export var RepositoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
+ export var CreateRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
+ export var DeleteRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
+ export var DeleteRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
+ export var DeleteRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
+ export var DeleteRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
+ export var DescribeImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
+ export var ImageDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
+ export var DescribeImagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
+ export var DescribeImageTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
+ export var ReferencedImageDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
+ export var ImageTagDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
+ export var DescribeImageTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
+ export var DescribeRegistriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
+ export var RegistryAliasFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
+ export var RegistryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
+ export var DescribeRegistriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
+ export var DescribeRepositoriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
+ export var DescribeRepositoriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
+ export var GetAuthorizationTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
+ export var GetAuthorizationTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
+ export var GetRegistryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
+ export var RegistryCatalogDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
+ export var GetRegistryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
+ export var GetRepositoryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
+ export var GetRepositoryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
+ export var GetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
+ export var GetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
+ export var ImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
+ export var InitiateLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
+ export var InitiateLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
+ export var PutImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
+ export var PutImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
+ export var PutRegistryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
+ export var PutRegistryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
+ export var PutRepositoryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
+ export var PutRepositoryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
+ export var SetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
+ export var SetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
+ export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
+ export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
+ export var UploadLayerPartRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
+ export var UploadLayerPartResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };