@aws-sdk/client-ecr-public 3.987.0 → 3.988.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/dist-cjs/index.js +42 -1213
- package/dist-cjs/models/ECRPUBLICServiceException.js +12 -0
- package/dist-cjs/models/errors.js +324 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +771 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +155 -149
- package/dist-types/schemas/schemas_0.d.ts +32 -25
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -25
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ECRPUBLICServiceException = require('./models/ECRPUBLICServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1061 +113,6 @@ class ECRPUBLICClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ECRPUBLICServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ECRPUBLICServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InvalidParameterException extends ECRPUBLICServiceException {
|
|
121
|
-
name = "InvalidParameterException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "InvalidParameterException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class RegistryNotFoundException extends ECRPUBLICServiceException {
|
|
133
|
-
name = "RegistryNotFoundException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "RegistryNotFoundException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, RegistryNotFoundException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class RepositoryNotFoundException extends ECRPUBLICServiceException {
|
|
145
|
-
name = "RepositoryNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "RepositoryNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ServerException extends ECRPUBLICServiceException {
|
|
157
|
-
name = "ServerException";
|
|
158
|
-
$fault = "server";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ServerException",
|
|
162
|
-
$fault: "server",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ServerException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class UnsupportedCommandException extends ECRPUBLICServiceException {
|
|
169
|
-
name = "UnsupportedCommandException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "UnsupportedCommandException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, UnsupportedCommandException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class EmptyUploadException extends ECRPUBLICServiceException {
|
|
181
|
-
name = "EmptyUploadException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "EmptyUploadException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class InvalidLayerException extends ECRPUBLICServiceException {
|
|
193
|
-
name = "InvalidLayerException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "InvalidLayerException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class LayerAlreadyExistsException extends ECRPUBLICServiceException {
|
|
205
|
-
name = "LayerAlreadyExistsException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "LayerAlreadyExistsException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class LayerPartTooSmallException extends ECRPUBLICServiceException {
|
|
217
|
-
name = "LayerPartTooSmallException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "LayerPartTooSmallException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class UploadNotFoundException extends ECRPUBLICServiceException {
|
|
229
|
-
name = "UploadNotFoundException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "UploadNotFoundException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class InvalidTagParameterException extends ECRPUBLICServiceException {
|
|
241
|
-
name = "InvalidTagParameterException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "InvalidTagParameterException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
class LimitExceededException extends ECRPUBLICServiceException {
|
|
253
|
-
name = "LimitExceededException";
|
|
254
|
-
$fault = "client";
|
|
255
|
-
constructor(opts) {
|
|
256
|
-
super({
|
|
257
|
-
name: "LimitExceededException",
|
|
258
|
-
$fault: "client",
|
|
259
|
-
...opts,
|
|
260
|
-
});
|
|
261
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class RepositoryAlreadyExistsException extends ECRPUBLICServiceException {
|
|
265
|
-
name = "RepositoryAlreadyExistsException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
constructor(opts) {
|
|
268
|
-
super({
|
|
269
|
-
name: "RepositoryAlreadyExistsException",
|
|
270
|
-
$fault: "client",
|
|
271
|
-
...opts,
|
|
272
|
-
});
|
|
273
|
-
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
class TooManyTagsException extends ECRPUBLICServiceException {
|
|
277
|
-
name = "TooManyTagsException";
|
|
278
|
-
$fault = "client";
|
|
279
|
-
constructor(opts) {
|
|
280
|
-
super({
|
|
281
|
-
name: "TooManyTagsException",
|
|
282
|
-
$fault: "client",
|
|
283
|
-
...opts,
|
|
284
|
-
});
|
|
285
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
class RepositoryNotEmptyException extends ECRPUBLICServiceException {
|
|
289
|
-
name = "RepositoryNotEmptyException";
|
|
290
|
-
$fault = "client";
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "RepositoryNotEmptyException",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
class RepositoryPolicyNotFoundException extends ECRPUBLICServiceException {
|
|
301
|
-
name = "RepositoryPolicyNotFoundException";
|
|
302
|
-
$fault = "client";
|
|
303
|
-
constructor(opts) {
|
|
304
|
-
super({
|
|
305
|
-
name: "RepositoryPolicyNotFoundException",
|
|
306
|
-
$fault: "client",
|
|
307
|
-
...opts,
|
|
308
|
-
});
|
|
309
|
-
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
class ImageNotFoundException extends ECRPUBLICServiceException {
|
|
313
|
-
name = "ImageNotFoundException";
|
|
314
|
-
$fault = "client";
|
|
315
|
-
constructor(opts) {
|
|
316
|
-
super({
|
|
317
|
-
name: "ImageNotFoundException",
|
|
318
|
-
$fault: "client",
|
|
319
|
-
...opts,
|
|
320
|
-
});
|
|
321
|
-
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
class RepositoryCatalogDataNotFoundException extends ECRPUBLICServiceException {
|
|
325
|
-
name = "RepositoryCatalogDataNotFoundException";
|
|
326
|
-
$fault = "client";
|
|
327
|
-
constructor(opts) {
|
|
328
|
-
super({
|
|
329
|
-
name: "RepositoryCatalogDataNotFoundException",
|
|
330
|
-
$fault: "client",
|
|
331
|
-
...opts,
|
|
332
|
-
});
|
|
333
|
-
Object.setPrototypeOf(this, RepositoryCatalogDataNotFoundException.prototype);
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
class ImageAlreadyExistsException extends ECRPUBLICServiceException {
|
|
337
|
-
name = "ImageAlreadyExistsException";
|
|
338
|
-
$fault = "client";
|
|
339
|
-
constructor(opts) {
|
|
340
|
-
super({
|
|
341
|
-
name: "ImageAlreadyExistsException",
|
|
342
|
-
$fault: "client",
|
|
343
|
-
...opts,
|
|
344
|
-
});
|
|
345
|
-
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
class ImageDigestDoesNotMatchException extends ECRPUBLICServiceException {
|
|
349
|
-
name = "ImageDigestDoesNotMatchException";
|
|
350
|
-
$fault = "client";
|
|
351
|
-
constructor(opts) {
|
|
352
|
-
super({
|
|
353
|
-
name: "ImageDigestDoesNotMatchException",
|
|
354
|
-
$fault: "client",
|
|
355
|
-
...opts,
|
|
356
|
-
});
|
|
357
|
-
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
class ImageTagAlreadyExistsException extends ECRPUBLICServiceException {
|
|
361
|
-
name = "ImageTagAlreadyExistsException";
|
|
362
|
-
$fault = "client";
|
|
363
|
-
constructor(opts) {
|
|
364
|
-
super({
|
|
365
|
-
name: "ImageTagAlreadyExistsException",
|
|
366
|
-
$fault: "client",
|
|
367
|
-
...opts,
|
|
368
|
-
});
|
|
369
|
-
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
class InvalidLayerPartException extends ECRPUBLICServiceException {
|
|
373
|
-
name = "InvalidLayerPartException";
|
|
374
|
-
$fault = "client";
|
|
375
|
-
registryId;
|
|
376
|
-
repositoryName;
|
|
377
|
-
uploadId;
|
|
378
|
-
lastValidByteReceived;
|
|
379
|
-
constructor(opts) {
|
|
380
|
-
super({
|
|
381
|
-
name: "InvalidLayerPartException",
|
|
382
|
-
$fault: "client",
|
|
383
|
-
...opts,
|
|
384
|
-
});
|
|
385
|
-
Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
|
|
386
|
-
this.registryId = opts.registryId;
|
|
387
|
-
this.repositoryName = opts.repositoryName;
|
|
388
|
-
this.uploadId = opts.uploadId;
|
|
389
|
-
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
class LayersNotFoundException extends ECRPUBLICServiceException {
|
|
393
|
-
name = "LayersNotFoundException";
|
|
394
|
-
$fault = "client";
|
|
395
|
-
constructor(opts) {
|
|
396
|
-
super({
|
|
397
|
-
name: "LayersNotFoundException",
|
|
398
|
-
$fault: "client",
|
|
399
|
-
...opts,
|
|
400
|
-
});
|
|
401
|
-
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
class ReferencedImagesNotFoundException extends ECRPUBLICServiceException {
|
|
405
|
-
name = "ReferencedImagesNotFoundException";
|
|
406
|
-
$fault = "client";
|
|
407
|
-
constructor(opts) {
|
|
408
|
-
super({
|
|
409
|
-
name: "ReferencedImagesNotFoundException",
|
|
410
|
-
$fault: "client",
|
|
411
|
-
...opts,
|
|
412
|
-
});
|
|
413
|
-
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
const _AD = "AuthorizationData";
|
|
418
|
-
const _BCLA = "BatchCheckLayerAvailability";
|
|
419
|
-
const _BCLAR = "BatchCheckLayerAvailabilityRequest";
|
|
420
|
-
const _BCLARa = "BatchCheckLayerAvailabilityResponse";
|
|
421
|
-
const _BDI = "BatchDeleteImage";
|
|
422
|
-
const _BDIR = "BatchDeleteImageRequest";
|
|
423
|
-
const _BDIRa = "BatchDeleteImageResponse";
|
|
424
|
-
const _CLU = "CompleteLayerUpload";
|
|
425
|
-
const _CLUR = "CompleteLayerUploadRequest";
|
|
426
|
-
const _CLURo = "CompleteLayerUploadResponse";
|
|
427
|
-
const _CR = "CreateRepository";
|
|
428
|
-
const _CRR = "CreateRepositoryRequest";
|
|
429
|
-
const _CRRr = "CreateRepositoryResponse";
|
|
430
|
-
const _DI = "DescribeImages";
|
|
431
|
-
const _DIR = "DescribeImagesRequest";
|
|
432
|
-
const _DIRe = "DescribeImagesResponse";
|
|
433
|
-
const _DIT = "DescribeImageTags";
|
|
434
|
-
const _DITR = "DescribeImageTagsRequest";
|
|
435
|
-
const _DITRe = "DescribeImageTagsResponse";
|
|
436
|
-
const _DR = "DeleteRepository";
|
|
437
|
-
const _DRP = "DeleteRepositoryPolicy";
|
|
438
|
-
const _DRPR = "DeleteRepositoryPolicyRequest";
|
|
439
|
-
const _DRPRe = "DeleteRepositoryPolicyResponse";
|
|
440
|
-
const _DRR = "DeleteRepositoryRequest";
|
|
441
|
-
const _DRRe = "DeleteRepositoryResponse";
|
|
442
|
-
const _DRRes = "DescribeRegistriesRequest";
|
|
443
|
-
const _DRResc = "DescribeRegistriesResponse";
|
|
444
|
-
const _DRRescr = "DescribeRepositoriesRequest";
|
|
445
|
-
const _DRRescri = "DescribeRepositoriesResponse";
|
|
446
|
-
const _DRe = "DescribeRegistries";
|
|
447
|
-
const _DRes = "DescribeRepositories";
|
|
448
|
-
const _EUE = "EmptyUploadException";
|
|
449
|
-
const _GAT = "GetAuthorizationToken";
|
|
450
|
-
const _GATR = "GetAuthorizationTokenRequest";
|
|
451
|
-
const _GATRe = "GetAuthorizationTokenResponse";
|
|
452
|
-
const _GRCD = "GetRegistryCatalogData";
|
|
453
|
-
const _GRCDR = "GetRegistryCatalogDataRequest";
|
|
454
|
-
const _GRCDRe = "GetRegistryCatalogDataResponse";
|
|
455
|
-
const _GRCDRet = "GetRepositoryCatalogDataRequest";
|
|
456
|
-
const _GRCDRete = "GetRepositoryCatalogDataResponse";
|
|
457
|
-
const _GRCDe = "GetRepositoryCatalogData";
|
|
458
|
-
const _GRP = "GetRepositoryPolicy";
|
|
459
|
-
const _GRPR = "GetRepositoryPolicyRequest";
|
|
460
|
-
const _GRPRe = "GetRepositoryPolicyResponse";
|
|
461
|
-
const _I = "Image";
|
|
462
|
-
const _IAEE = "ImageAlreadyExistsException";
|
|
463
|
-
const _ID = "ImageDetail";
|
|
464
|
-
const _IDDNME = "ImageDigestDoesNotMatchException";
|
|
465
|
-
const _IDL = "ImageDetailList";
|
|
466
|
-
const _IF = "ImageFailure";
|
|
467
|
-
const _IFL = "ImageFailureList";
|
|
468
|
-
const _II = "ImageIdentifier";
|
|
469
|
-
const _IIL = "ImageIdentifierList";
|
|
470
|
-
const _ILE = "InvalidLayerException";
|
|
471
|
-
const _ILPE = "InvalidLayerPartException";
|
|
472
|
-
const _ILU = "InitiateLayerUpload";
|
|
473
|
-
const _ILUR = "InitiateLayerUploadRequest";
|
|
474
|
-
const _ILURn = "InitiateLayerUploadResponse";
|
|
475
|
-
const _INFE = "ImageNotFoundException";
|
|
476
|
-
const _IPE = "InvalidParameterException";
|
|
477
|
-
const _ITAEE = "ImageTagAlreadyExistsException";
|
|
478
|
-
const _ITD = "ImageTagDetail";
|
|
479
|
-
const _ITDL = "ImageTagDetailList";
|
|
480
|
-
const _ITPE = "InvalidTagParameterException";
|
|
481
|
-
const _K = "Key";
|
|
482
|
-
const _L = "Layer";
|
|
483
|
-
const _LAEE = "LayerAlreadyExistsException";
|
|
484
|
-
const _LEE = "LimitExceededException";
|
|
485
|
-
const _LF = "LayerFailure";
|
|
486
|
-
const _LFL = "LayerFailureList";
|
|
487
|
-
const _LL = "LayerList";
|
|
488
|
-
const _LNFE = "LayersNotFoundException";
|
|
489
|
-
const _LPTSE = "LayerPartTooSmallException";
|
|
490
|
-
const _LTFR = "ListTagsForResource";
|
|
491
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
492
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
493
|
-
const _PI = "PutImage";
|
|
494
|
-
const _PIR = "PutImageRequest";
|
|
495
|
-
const _PIRu = "PutImageResponse";
|
|
496
|
-
const _PRCD = "PutRegistryCatalogData";
|
|
497
|
-
const _PRCDR = "PutRegistryCatalogDataRequest";
|
|
498
|
-
const _PRCDRu = "PutRegistryCatalogDataResponse";
|
|
499
|
-
const _PRCDRut = "PutRepositoryCatalogDataRequest";
|
|
500
|
-
const _PRCDRute = "PutRepositoryCatalogDataResponse";
|
|
501
|
-
const _PRCDu = "PutRepositoryCatalogData";
|
|
502
|
-
const _R = "Registry";
|
|
503
|
-
const _RA = "RegistryAlias";
|
|
504
|
-
const _RAEE = "RepositoryAlreadyExistsException";
|
|
505
|
-
const _RAL = "RegistryAliasList";
|
|
506
|
-
const _RCD = "RegistryCatalogData";
|
|
507
|
-
const _RCDI = "RepositoryCatalogDataInput";
|
|
508
|
-
const _RCDNFE = "RepositoryCatalogDataNotFoundException";
|
|
509
|
-
const _RCDe = "RepositoryCatalogData";
|
|
510
|
-
const _RID = "ReferencedImageDetail";
|
|
511
|
-
const _RINFE = "ReferencedImagesNotFoundException";
|
|
512
|
-
const _RL = "RegistryList";
|
|
513
|
-
const _RLe = "RepositoryList";
|
|
514
|
-
const _RNEE = "RepositoryNotEmptyException";
|
|
515
|
-
const _RNFE = "RegistryNotFoundException";
|
|
516
|
-
const _RNFEe = "RepositoryNotFoundException";
|
|
517
|
-
const _RPNFE = "RepositoryPolicyNotFoundException";
|
|
518
|
-
const _Re = "Repository";
|
|
519
|
-
const _SE = "ServerException";
|
|
520
|
-
const _SRP = "SetRepositoryPolicy";
|
|
521
|
-
const _SRPR = "SetRepositoryPolicyRequest";
|
|
522
|
-
const _SRPRe = "SetRepositoryPolicyResponse";
|
|
523
|
-
const _T = "Tag";
|
|
524
|
-
const _TL = "TagList";
|
|
525
|
-
const _TMTE = "TooManyTagsException";
|
|
526
|
-
const _TR = "TagResource";
|
|
527
|
-
const _TRR = "TagResourceRequest";
|
|
528
|
-
const _TRRa = "TagResourceResponse";
|
|
529
|
-
const _UCE = "UnsupportedCommandException";
|
|
530
|
-
const _ULP = "UploadLayerPart";
|
|
531
|
-
const _ULPR = "UploadLayerPartRequest";
|
|
532
|
-
const _ULPRp = "UploadLayerPartResponse";
|
|
533
|
-
const _UNFE = "UploadNotFoundException";
|
|
534
|
-
const _UR = "UntagResource";
|
|
535
|
-
const _URR = "UntagResourceRequest";
|
|
536
|
-
const _URRn = "UntagResourceResponse";
|
|
537
|
-
const _V = "Value";
|
|
538
|
-
const _a = "aliases";
|
|
539
|
-
const _aD = "authorizationData";
|
|
540
|
-
const _aMT = "artifactMediaType";
|
|
541
|
-
const _aT = "authorizationToken";
|
|
542
|
-
const _aTb = "aboutText";
|
|
543
|
-
const _ar = "architectures";
|
|
544
|
-
const _c = "client";
|
|
545
|
-
const _cA = "createdAt";
|
|
546
|
-
const _cD = "catalogData";
|
|
547
|
-
const _d = "description";
|
|
548
|
-
const _dN = "displayName";
|
|
549
|
-
const _dRA = "defaultRegistryAlias";
|
|
550
|
-
const _e = "error";
|
|
551
|
-
const _eA = "expiresAt";
|
|
552
|
-
const _f = "failures";
|
|
553
|
-
const _fC = "failureCode";
|
|
554
|
-
const _fR = "failureReason";
|
|
555
|
-
const _fo = "force";
|
|
556
|
-
const _i = "image";
|
|
557
|
-
const _iD = "imageDetails";
|
|
558
|
-
const _iDm = "imageDigest";
|
|
559
|
-
const _iDma = "imageDetail";
|
|
560
|
-
const _iI = "imageIds";
|
|
561
|
-
const _iIm = "imageId";
|
|
562
|
-
const _iM = "imageManifest";
|
|
563
|
-
const _iMMT = "imageManifestMediaType";
|
|
564
|
-
const _iPA = "imagePushedAt";
|
|
565
|
-
const _iSIB = "imageSizeInBytes";
|
|
566
|
-
const _iT = "imageTags";
|
|
567
|
-
const _iTD = "imageTagDetails";
|
|
568
|
-
const _iTm = "imageTag";
|
|
569
|
-
const _l = "layers";
|
|
570
|
-
const _lA = "layerAvailability";
|
|
571
|
-
const _lBR = "lastByteReceived";
|
|
572
|
-
const _lD = "layerDigests";
|
|
573
|
-
const _lDa = "layerDigest";
|
|
574
|
-
const _lIB = "logoImageBlob";
|
|
575
|
-
const _lPB = "layerPartBlob";
|
|
576
|
-
const _lS = "layerSize";
|
|
577
|
-
const _lU = "logoUrl";
|
|
578
|
-
const _lVBR = "lastValidByteReceived";
|
|
579
|
-
const _m = "message";
|
|
580
|
-
const _mC = "marketplaceCertified";
|
|
581
|
-
const _mR = "maxResults";
|
|
582
|
-
const _mT = "mediaType";
|
|
583
|
-
const _n = "name";
|
|
584
|
-
const _nT = "nextToken";
|
|
585
|
-
const _oS = "operatingSystems";
|
|
586
|
-
const _pFB = "partFirstByte";
|
|
587
|
-
const _pLB = "partLastByte";
|
|
588
|
-
const _pRA = "primaryRegistryAlias";
|
|
589
|
-
const _pS = "partSize";
|
|
590
|
-
const _pT = "policyText";
|
|
591
|
-
const _r = "repository";
|
|
592
|
-
const _rA = "resourceArn";
|
|
593
|
-
const _rAe = "registryArn";
|
|
594
|
-
const _rAep = "repositoryArn";
|
|
595
|
-
const _rCD = "registryCatalogData";
|
|
596
|
-
const _rI = "registryId";
|
|
597
|
-
const _rN = "repositoryName";
|
|
598
|
-
const _rNe = "repositoryNames";
|
|
599
|
-
const _rU = "registryUri";
|
|
600
|
-
const _rUe = "repositoryUri";
|
|
601
|
-
const _re = "registries";
|
|
602
|
-
const _rep = "repositories";
|
|
603
|
-
const _s = "status";
|
|
604
|
-
const _se = "server";
|
|
605
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ecrpublic";
|
|
606
|
-
const _t = "tags";
|
|
607
|
-
const _tK = "tagKeys";
|
|
608
|
-
const _uI = "uploadId";
|
|
609
|
-
const _uT = "usageText";
|
|
610
|
-
const _v = "verified";
|
|
611
|
-
const n0 = "com.amazonaws.ecrpublic";
|
|
612
|
-
var AuthorizationData$ = [3, n0, _AD,
|
|
613
|
-
0,
|
|
614
|
-
[_aT, _eA],
|
|
615
|
-
[0, 4]
|
|
616
|
-
];
|
|
617
|
-
var BatchCheckLayerAvailabilityRequest$ = [3, n0, _BCLAR,
|
|
618
|
-
0,
|
|
619
|
-
[_rN, _lD, _rI],
|
|
620
|
-
[0, 64 | 0, 0], 2
|
|
621
|
-
];
|
|
622
|
-
var BatchCheckLayerAvailabilityResponse$ = [3, n0, _BCLARa,
|
|
623
|
-
0,
|
|
624
|
-
[_l, _f],
|
|
625
|
-
[() => LayerList, () => LayerFailureList]
|
|
626
|
-
];
|
|
627
|
-
var BatchDeleteImageRequest$ = [3, n0, _BDIR,
|
|
628
|
-
0,
|
|
629
|
-
[_rN, _iI, _rI],
|
|
630
|
-
[0, () => ImageIdentifierList, 0], 2
|
|
631
|
-
];
|
|
632
|
-
var BatchDeleteImageResponse$ = [3, n0, _BDIRa,
|
|
633
|
-
0,
|
|
634
|
-
[_iI, _f],
|
|
635
|
-
[() => ImageIdentifierList, () => ImageFailureList]
|
|
636
|
-
];
|
|
637
|
-
var CompleteLayerUploadRequest$ = [3, n0, _CLUR,
|
|
638
|
-
0,
|
|
639
|
-
[_rN, _uI, _lD, _rI],
|
|
640
|
-
[0, 0, 64 | 0, 0], 3
|
|
641
|
-
];
|
|
642
|
-
var CompleteLayerUploadResponse$ = [3, n0, _CLURo,
|
|
643
|
-
0,
|
|
644
|
-
[_rI, _rN, _uI, _lDa],
|
|
645
|
-
[0, 0, 0, 0]
|
|
646
|
-
];
|
|
647
|
-
var CreateRepositoryRequest$ = [3, n0, _CRR,
|
|
648
|
-
0,
|
|
649
|
-
[_rN, _cD, _t],
|
|
650
|
-
[0, () => RepositoryCatalogDataInput$, () => TagList], 1
|
|
651
|
-
];
|
|
652
|
-
var CreateRepositoryResponse$ = [3, n0, _CRRr,
|
|
653
|
-
0,
|
|
654
|
-
[_r, _cD],
|
|
655
|
-
[() => Repository$, () => RepositoryCatalogData$]
|
|
656
|
-
];
|
|
657
|
-
var DeleteRepositoryPolicyRequest$ = [3, n0, _DRPR,
|
|
658
|
-
0,
|
|
659
|
-
[_rN, _rI],
|
|
660
|
-
[0, 0], 1
|
|
661
|
-
];
|
|
662
|
-
var DeleteRepositoryPolicyResponse$ = [3, n0, _DRPRe,
|
|
663
|
-
0,
|
|
664
|
-
[_rI, _rN, _pT],
|
|
665
|
-
[0, 0, 0]
|
|
666
|
-
];
|
|
667
|
-
var DeleteRepositoryRequest$ = [3, n0, _DRR,
|
|
668
|
-
0,
|
|
669
|
-
[_rN, _rI, _fo],
|
|
670
|
-
[0, 0, 2], 1
|
|
671
|
-
];
|
|
672
|
-
var DeleteRepositoryResponse$ = [3, n0, _DRRe,
|
|
673
|
-
0,
|
|
674
|
-
[_r],
|
|
675
|
-
[() => Repository$]
|
|
676
|
-
];
|
|
677
|
-
var DescribeImagesRequest$ = [3, n0, _DIR,
|
|
678
|
-
0,
|
|
679
|
-
[_rN, _rI, _iI, _nT, _mR],
|
|
680
|
-
[0, 0, () => ImageIdentifierList, 0, 1], 1
|
|
681
|
-
];
|
|
682
|
-
var DescribeImagesResponse$ = [3, n0, _DIRe,
|
|
683
|
-
0,
|
|
684
|
-
[_iD, _nT],
|
|
685
|
-
[() => ImageDetailList, 0]
|
|
686
|
-
];
|
|
687
|
-
var DescribeImageTagsRequest$ = [3, n0, _DITR,
|
|
688
|
-
0,
|
|
689
|
-
[_rN, _rI, _nT, _mR],
|
|
690
|
-
[0, 0, 0, 1], 1
|
|
691
|
-
];
|
|
692
|
-
var DescribeImageTagsResponse$ = [3, n0, _DITRe,
|
|
693
|
-
0,
|
|
694
|
-
[_iTD, _nT],
|
|
695
|
-
[() => ImageTagDetailList, 0]
|
|
696
|
-
];
|
|
697
|
-
var DescribeRegistriesRequest$ = [3, n0, _DRRes,
|
|
698
|
-
0,
|
|
699
|
-
[_nT, _mR],
|
|
700
|
-
[0, 1]
|
|
701
|
-
];
|
|
702
|
-
var DescribeRegistriesResponse$ = [3, n0, _DRResc,
|
|
703
|
-
0,
|
|
704
|
-
[_re, _nT],
|
|
705
|
-
[() => RegistryList, 0], 1
|
|
706
|
-
];
|
|
707
|
-
var DescribeRepositoriesRequest$ = [3, n0, _DRRescr,
|
|
708
|
-
0,
|
|
709
|
-
[_rI, _rNe, _nT, _mR],
|
|
710
|
-
[0, 64 | 0, 0, 1]
|
|
711
|
-
];
|
|
712
|
-
var DescribeRepositoriesResponse$ = [3, n0, _DRRescri,
|
|
713
|
-
0,
|
|
714
|
-
[_rep, _nT],
|
|
715
|
-
[() => RepositoryList, 0]
|
|
716
|
-
];
|
|
717
|
-
var EmptyUploadException$ = [-3, n0, _EUE,
|
|
718
|
-
{ [_e]: _c },
|
|
719
|
-
[_m],
|
|
720
|
-
[0]
|
|
721
|
-
];
|
|
722
|
-
schema.TypeRegistry.for(n0).registerError(EmptyUploadException$, EmptyUploadException);
|
|
723
|
-
var GetAuthorizationTokenRequest$ = [3, n0, _GATR,
|
|
724
|
-
0,
|
|
725
|
-
[],
|
|
726
|
-
[]
|
|
727
|
-
];
|
|
728
|
-
var GetAuthorizationTokenResponse$ = [3, n0, _GATRe,
|
|
729
|
-
0,
|
|
730
|
-
[_aD],
|
|
731
|
-
[() => AuthorizationData$]
|
|
732
|
-
];
|
|
733
|
-
var GetRegistryCatalogDataRequest$ = [3, n0, _GRCDR,
|
|
734
|
-
0,
|
|
735
|
-
[],
|
|
736
|
-
[]
|
|
737
|
-
];
|
|
738
|
-
var GetRegistryCatalogDataResponse$ = [3, n0, _GRCDRe,
|
|
739
|
-
0,
|
|
740
|
-
[_rCD],
|
|
741
|
-
[() => RegistryCatalogData$], 1
|
|
742
|
-
];
|
|
743
|
-
var GetRepositoryCatalogDataRequest$ = [3, n0, _GRCDRet,
|
|
744
|
-
0,
|
|
745
|
-
[_rN, _rI],
|
|
746
|
-
[0, 0], 1
|
|
747
|
-
];
|
|
748
|
-
var GetRepositoryCatalogDataResponse$ = [3, n0, _GRCDRete,
|
|
749
|
-
0,
|
|
750
|
-
[_cD],
|
|
751
|
-
[() => RepositoryCatalogData$]
|
|
752
|
-
];
|
|
753
|
-
var GetRepositoryPolicyRequest$ = [3, n0, _GRPR,
|
|
754
|
-
0,
|
|
755
|
-
[_rN, _rI],
|
|
756
|
-
[0, 0], 1
|
|
757
|
-
];
|
|
758
|
-
var GetRepositoryPolicyResponse$ = [3, n0, _GRPRe,
|
|
759
|
-
0,
|
|
760
|
-
[_rI, _rN, _pT],
|
|
761
|
-
[0, 0, 0]
|
|
762
|
-
];
|
|
763
|
-
var Image$ = [3, n0, _I,
|
|
764
|
-
0,
|
|
765
|
-
[_rI, _rN, _iIm, _iM, _iMMT],
|
|
766
|
-
[0, 0, () => ImageIdentifier$, 0, 0]
|
|
767
|
-
];
|
|
768
|
-
var ImageAlreadyExistsException$ = [-3, n0, _IAEE,
|
|
769
|
-
{ [_e]: _c },
|
|
770
|
-
[_m],
|
|
771
|
-
[0]
|
|
772
|
-
];
|
|
773
|
-
schema.TypeRegistry.for(n0).registerError(ImageAlreadyExistsException$, ImageAlreadyExistsException);
|
|
774
|
-
var ImageDetail$ = [3, n0, _ID,
|
|
775
|
-
0,
|
|
776
|
-
[_rI, _rN, _iDm, _iT, _iSIB, _iPA, _iMMT, _aMT],
|
|
777
|
-
[0, 0, 0, 64 | 0, 1, 4, 0, 0]
|
|
778
|
-
];
|
|
779
|
-
var ImageDigestDoesNotMatchException$ = [-3, n0, _IDDNME,
|
|
780
|
-
{ [_e]: _c },
|
|
781
|
-
[_m],
|
|
782
|
-
[0]
|
|
783
|
-
];
|
|
784
|
-
schema.TypeRegistry.for(n0).registerError(ImageDigestDoesNotMatchException$, ImageDigestDoesNotMatchException);
|
|
785
|
-
var ImageFailure$ = [3, n0, _IF,
|
|
786
|
-
0,
|
|
787
|
-
[_iIm, _fC, _fR],
|
|
788
|
-
[() => ImageIdentifier$, 0, 0]
|
|
789
|
-
];
|
|
790
|
-
var ImageIdentifier$ = [3, n0, _II,
|
|
791
|
-
0,
|
|
792
|
-
[_iDm, _iTm],
|
|
793
|
-
[0, 0]
|
|
794
|
-
];
|
|
795
|
-
var ImageNotFoundException$ = [-3, n0, _INFE,
|
|
796
|
-
{ [_e]: _c },
|
|
797
|
-
[_m],
|
|
798
|
-
[0]
|
|
799
|
-
];
|
|
800
|
-
schema.TypeRegistry.for(n0).registerError(ImageNotFoundException$, ImageNotFoundException);
|
|
801
|
-
var ImageTagAlreadyExistsException$ = [-3, n0, _ITAEE,
|
|
802
|
-
{ [_e]: _c },
|
|
803
|
-
[_m],
|
|
804
|
-
[0]
|
|
805
|
-
];
|
|
806
|
-
schema.TypeRegistry.for(n0).registerError(ImageTagAlreadyExistsException$, ImageTagAlreadyExistsException);
|
|
807
|
-
var ImageTagDetail$ = [3, n0, _ITD,
|
|
808
|
-
0,
|
|
809
|
-
[_iTm, _cA, _iDma],
|
|
810
|
-
[0, 4, () => ReferencedImageDetail$]
|
|
811
|
-
];
|
|
812
|
-
var InitiateLayerUploadRequest$ = [3, n0, _ILUR,
|
|
813
|
-
0,
|
|
814
|
-
[_rN, _rI],
|
|
815
|
-
[0, 0], 1
|
|
816
|
-
];
|
|
817
|
-
var InitiateLayerUploadResponse$ = [3, n0, _ILURn,
|
|
818
|
-
0,
|
|
819
|
-
[_uI, _pS],
|
|
820
|
-
[0, 1]
|
|
821
|
-
];
|
|
822
|
-
var InvalidLayerException$ = [-3, n0, _ILE,
|
|
823
|
-
{ [_e]: _c },
|
|
824
|
-
[_m],
|
|
825
|
-
[0]
|
|
826
|
-
];
|
|
827
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerException$, InvalidLayerException);
|
|
828
|
-
var InvalidLayerPartException$ = [-3, n0, _ILPE,
|
|
829
|
-
{ [_e]: _c },
|
|
830
|
-
[_rI, _rN, _uI, _lVBR, _m],
|
|
831
|
-
[0, 0, 0, 1, 0]
|
|
832
|
-
];
|
|
833
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerPartException$, InvalidLayerPartException);
|
|
834
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
835
|
-
{ [_e]: _c },
|
|
836
|
-
[_m],
|
|
837
|
-
[0]
|
|
838
|
-
];
|
|
839
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
840
|
-
var InvalidTagParameterException$ = [-3, n0, _ITPE,
|
|
841
|
-
{ [_e]: _c },
|
|
842
|
-
[_m],
|
|
843
|
-
[0]
|
|
844
|
-
];
|
|
845
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTagParameterException$, InvalidTagParameterException);
|
|
846
|
-
var Layer$ = [3, n0, _L,
|
|
847
|
-
0,
|
|
848
|
-
[_lDa, _lA, _lS, _mT],
|
|
849
|
-
[0, 0, 1, 0]
|
|
850
|
-
];
|
|
851
|
-
var LayerAlreadyExistsException$ = [-3, n0, _LAEE,
|
|
852
|
-
{ [_e]: _c },
|
|
853
|
-
[_m],
|
|
854
|
-
[0]
|
|
855
|
-
];
|
|
856
|
-
schema.TypeRegistry.for(n0).registerError(LayerAlreadyExistsException$, LayerAlreadyExistsException);
|
|
857
|
-
var LayerFailure$ = [3, n0, _LF,
|
|
858
|
-
0,
|
|
859
|
-
[_lDa, _fC, _fR],
|
|
860
|
-
[0, 0, 0]
|
|
861
|
-
];
|
|
862
|
-
var LayerPartTooSmallException$ = [-3, n0, _LPTSE,
|
|
863
|
-
{ [_e]: _c },
|
|
864
|
-
[_m],
|
|
865
|
-
[0]
|
|
866
|
-
];
|
|
867
|
-
schema.TypeRegistry.for(n0).registerError(LayerPartTooSmallException$, LayerPartTooSmallException);
|
|
868
|
-
var LayersNotFoundException$ = [-3, n0, _LNFE,
|
|
869
|
-
{ [_e]: _c },
|
|
870
|
-
[_m],
|
|
871
|
-
[0]
|
|
872
|
-
];
|
|
873
|
-
schema.TypeRegistry.for(n0).registerError(LayersNotFoundException$, LayersNotFoundException);
|
|
874
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
875
|
-
{ [_e]: _c },
|
|
876
|
-
[_m],
|
|
877
|
-
[0]
|
|
878
|
-
];
|
|
879
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
880
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
881
|
-
0,
|
|
882
|
-
[_rA],
|
|
883
|
-
[0], 1
|
|
884
|
-
];
|
|
885
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
886
|
-
0,
|
|
887
|
-
[_t],
|
|
888
|
-
[() => TagList]
|
|
889
|
-
];
|
|
890
|
-
var PutImageRequest$ = [3, n0, _PIR,
|
|
891
|
-
0,
|
|
892
|
-
[_rN, _iM, _rI, _iMMT, _iTm, _iDm],
|
|
893
|
-
[0, 0, 0, 0, 0, 0], 2
|
|
894
|
-
];
|
|
895
|
-
var PutImageResponse$ = [3, n0, _PIRu,
|
|
896
|
-
0,
|
|
897
|
-
[_i],
|
|
898
|
-
[() => Image$]
|
|
899
|
-
];
|
|
900
|
-
var PutRegistryCatalogDataRequest$ = [3, n0, _PRCDR,
|
|
901
|
-
0,
|
|
902
|
-
[_dN],
|
|
903
|
-
[0]
|
|
904
|
-
];
|
|
905
|
-
var PutRegistryCatalogDataResponse$ = [3, n0, _PRCDRu,
|
|
906
|
-
0,
|
|
907
|
-
[_rCD],
|
|
908
|
-
[() => RegistryCatalogData$], 1
|
|
909
|
-
];
|
|
910
|
-
var PutRepositoryCatalogDataRequest$ = [3, n0, _PRCDRut,
|
|
911
|
-
0,
|
|
912
|
-
[_rN, _cD, _rI],
|
|
913
|
-
[0, () => RepositoryCatalogDataInput$, 0], 2
|
|
914
|
-
];
|
|
915
|
-
var PutRepositoryCatalogDataResponse$ = [3, n0, _PRCDRute,
|
|
916
|
-
0,
|
|
917
|
-
[_cD],
|
|
918
|
-
[() => RepositoryCatalogData$]
|
|
919
|
-
];
|
|
920
|
-
var ReferencedImageDetail$ = [3, n0, _RID,
|
|
921
|
-
0,
|
|
922
|
-
[_iDm, _iSIB, _iPA, _iMMT, _aMT],
|
|
923
|
-
[0, 1, 4, 0, 0]
|
|
924
|
-
];
|
|
925
|
-
var ReferencedImagesNotFoundException$ = [-3, n0, _RINFE,
|
|
926
|
-
{ [_e]: _c },
|
|
927
|
-
[_m],
|
|
928
|
-
[0]
|
|
929
|
-
];
|
|
930
|
-
schema.TypeRegistry.for(n0).registerError(ReferencedImagesNotFoundException$, ReferencedImagesNotFoundException);
|
|
931
|
-
var Registry$ = [3, n0, _R,
|
|
932
|
-
0,
|
|
933
|
-
[_rI, _rAe, _rU, _v, _a],
|
|
934
|
-
[0, 0, 0, 2, () => RegistryAliasList], 5
|
|
935
|
-
];
|
|
936
|
-
var RegistryAlias$ = [3, n0, _RA,
|
|
937
|
-
0,
|
|
938
|
-
[_n, _s, _pRA, _dRA],
|
|
939
|
-
[0, 0, 2, 2], 4
|
|
940
|
-
];
|
|
941
|
-
var RegistryCatalogData$ = [3, n0, _RCD,
|
|
942
|
-
0,
|
|
943
|
-
[_dN],
|
|
944
|
-
[0]
|
|
945
|
-
];
|
|
946
|
-
var RegistryNotFoundException$ = [-3, n0, _RNFE,
|
|
947
|
-
{ [_e]: _c },
|
|
948
|
-
[_m],
|
|
949
|
-
[0]
|
|
950
|
-
];
|
|
951
|
-
schema.TypeRegistry.for(n0).registerError(RegistryNotFoundException$, RegistryNotFoundException);
|
|
952
|
-
var Repository$ = [3, n0, _Re,
|
|
953
|
-
0,
|
|
954
|
-
[_rAep, _rI, _rN, _rUe, _cA],
|
|
955
|
-
[0, 0, 0, 0, 4]
|
|
956
|
-
];
|
|
957
|
-
var RepositoryAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
958
|
-
{ [_e]: _c },
|
|
959
|
-
[_m],
|
|
960
|
-
[0]
|
|
961
|
-
];
|
|
962
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryAlreadyExistsException$, RepositoryAlreadyExistsException);
|
|
963
|
-
var RepositoryCatalogData$ = [3, n0, _RCDe,
|
|
964
|
-
0,
|
|
965
|
-
[_d, _ar, _oS, _lU, _aTb, _uT, _mC],
|
|
966
|
-
[0, 64 | 0, 64 | 0, 0, 0, 0, 2]
|
|
967
|
-
];
|
|
968
|
-
var RepositoryCatalogDataInput$ = [3, n0, _RCDI,
|
|
969
|
-
0,
|
|
970
|
-
[_d, _ar, _oS, _lIB, _aTb, _uT],
|
|
971
|
-
[0, 64 | 0, 64 | 0, 21, 0, 0]
|
|
972
|
-
];
|
|
973
|
-
var RepositoryCatalogDataNotFoundException$ = [-3, n0, _RCDNFE,
|
|
974
|
-
{ [_e]: _c },
|
|
975
|
-
[_m],
|
|
976
|
-
[0]
|
|
977
|
-
];
|
|
978
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryCatalogDataNotFoundException$, RepositoryCatalogDataNotFoundException);
|
|
979
|
-
var RepositoryNotEmptyException$ = [-3, n0, _RNEE,
|
|
980
|
-
{ [_e]: _c },
|
|
981
|
-
[_m],
|
|
982
|
-
[0]
|
|
983
|
-
];
|
|
984
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotEmptyException$, RepositoryNotEmptyException);
|
|
985
|
-
var RepositoryNotFoundException$ = [-3, n0, _RNFEe,
|
|
986
|
-
{ [_e]: _c },
|
|
987
|
-
[_m],
|
|
988
|
-
[0]
|
|
989
|
-
];
|
|
990
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotFoundException$, RepositoryNotFoundException);
|
|
991
|
-
var RepositoryPolicyNotFoundException$ = [-3, n0, _RPNFE,
|
|
992
|
-
{ [_e]: _c },
|
|
993
|
-
[_m],
|
|
994
|
-
[0]
|
|
995
|
-
];
|
|
996
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryPolicyNotFoundException$, RepositoryPolicyNotFoundException);
|
|
997
|
-
var ServerException$ = [-3, n0, _SE,
|
|
998
|
-
{ [_e]: _se },
|
|
999
|
-
[_m],
|
|
1000
|
-
[0]
|
|
1001
|
-
];
|
|
1002
|
-
schema.TypeRegistry.for(n0).registerError(ServerException$, ServerException);
|
|
1003
|
-
var SetRepositoryPolicyRequest$ = [3, n0, _SRPR,
|
|
1004
|
-
0,
|
|
1005
|
-
[_rN, _pT, _rI, _fo],
|
|
1006
|
-
[0, 0, 0, 2], 2
|
|
1007
|
-
];
|
|
1008
|
-
var SetRepositoryPolicyResponse$ = [3, n0, _SRPRe,
|
|
1009
|
-
0,
|
|
1010
|
-
[_rI, _rN, _pT],
|
|
1011
|
-
[0, 0, 0]
|
|
1012
|
-
];
|
|
1013
|
-
var Tag$ = [3, n0, _T,
|
|
1014
|
-
0,
|
|
1015
|
-
[_K, _V],
|
|
1016
|
-
[0, 0]
|
|
1017
|
-
];
|
|
1018
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1019
|
-
0,
|
|
1020
|
-
[_rA, _t],
|
|
1021
|
-
[0, () => TagList], 2
|
|
1022
|
-
];
|
|
1023
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1024
|
-
0,
|
|
1025
|
-
[],
|
|
1026
|
-
[]
|
|
1027
|
-
];
|
|
1028
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1029
|
-
{ [_e]: _c },
|
|
1030
|
-
[_m],
|
|
1031
|
-
[0]
|
|
1032
|
-
];
|
|
1033
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1034
|
-
var UnsupportedCommandException$ = [-3, n0, _UCE,
|
|
1035
|
-
{ [_e]: _c },
|
|
1036
|
-
[_m],
|
|
1037
|
-
[0]
|
|
1038
|
-
];
|
|
1039
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedCommandException$, UnsupportedCommandException);
|
|
1040
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1041
|
-
0,
|
|
1042
|
-
[_rA, _tK],
|
|
1043
|
-
[0, 64 | 0], 2
|
|
1044
|
-
];
|
|
1045
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1046
|
-
0,
|
|
1047
|
-
[],
|
|
1048
|
-
[]
|
|
1049
|
-
];
|
|
1050
|
-
var UploadLayerPartRequest$ = [3, n0, _ULPR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_rN, _uI, _pFB, _pLB, _lPB, _rI],
|
|
1053
|
-
[0, 0, 1, 1, 21, 0], 5
|
|
1054
|
-
];
|
|
1055
|
-
var UploadLayerPartResponse$ = [3, n0, _ULPRp,
|
|
1056
|
-
0,
|
|
1057
|
-
[_rI, _rN, _uI, _lBR],
|
|
1058
|
-
[0, 0, 0, 1]
|
|
1059
|
-
];
|
|
1060
|
-
var UploadNotFoundException$ = [-3, n0, _UNFE,
|
|
1061
|
-
{ [_e]: _c },
|
|
1062
|
-
[_m],
|
|
1063
|
-
[0]
|
|
1064
|
-
];
|
|
1065
|
-
schema.TypeRegistry.for(n0).registerError(UploadNotFoundException$, UploadNotFoundException);
|
|
1066
|
-
var ECRPUBLICServiceException$ = [-3, _sm, "ECRPUBLICServiceException", 0, [], []];
|
|
1067
|
-
schema.TypeRegistry.for(_sm).registerError(ECRPUBLICServiceException$, ECRPUBLICServiceException);
|
|
1068
|
-
var ImageDetailList = [1, n0, _IDL,
|
|
1069
|
-
0, () => ImageDetail$
|
|
1070
|
-
];
|
|
1071
|
-
var ImageFailureList = [1, n0, _IFL,
|
|
1072
|
-
0, () => ImageFailure$
|
|
1073
|
-
];
|
|
1074
|
-
var ImageIdentifierList = [1, n0, _IIL,
|
|
1075
|
-
0, () => ImageIdentifier$
|
|
1076
|
-
];
|
|
1077
|
-
var ImageTagDetailList = [1, n0, _ITDL,
|
|
1078
|
-
0, () => ImageTagDetail$
|
|
1079
|
-
];
|
|
1080
|
-
var LayerFailureList = [1, n0, _LFL,
|
|
1081
|
-
0, () => LayerFailure$
|
|
1082
|
-
];
|
|
1083
|
-
var LayerList = [1, n0, _LL,
|
|
1084
|
-
0, () => Layer$
|
|
1085
|
-
];
|
|
1086
|
-
var RegistryAliasList = [1, n0, _RAL,
|
|
1087
|
-
0, () => RegistryAlias$
|
|
1088
|
-
];
|
|
1089
|
-
var RegistryList = [1, n0, _RL,
|
|
1090
|
-
0, () => Registry$
|
|
1091
|
-
];
|
|
1092
|
-
var RepositoryList = [1, n0, _RLe,
|
|
1093
|
-
0, () => Repository$
|
|
1094
|
-
];
|
|
1095
|
-
var TagList = [1, n0, _TL,
|
|
1096
|
-
0, () => Tag$
|
|
1097
|
-
];
|
|
1098
|
-
var BatchCheckLayerAvailability$ = [9, n0, _BCLA,
|
|
1099
|
-
0, () => BatchCheckLayerAvailabilityRequest$, () => BatchCheckLayerAvailabilityResponse$
|
|
1100
|
-
];
|
|
1101
|
-
var BatchDeleteImage$ = [9, n0, _BDI,
|
|
1102
|
-
0, () => BatchDeleteImageRequest$, () => BatchDeleteImageResponse$
|
|
1103
|
-
];
|
|
1104
|
-
var CompleteLayerUpload$ = [9, n0, _CLU,
|
|
1105
|
-
0, () => CompleteLayerUploadRequest$, () => CompleteLayerUploadResponse$
|
|
1106
|
-
];
|
|
1107
|
-
var CreateRepository$ = [9, n0, _CR,
|
|
1108
|
-
0, () => CreateRepositoryRequest$, () => CreateRepositoryResponse$
|
|
1109
|
-
];
|
|
1110
|
-
var DeleteRepository$ = [9, n0, _DR,
|
|
1111
|
-
0, () => DeleteRepositoryRequest$, () => DeleteRepositoryResponse$
|
|
1112
|
-
];
|
|
1113
|
-
var DeleteRepositoryPolicy$ = [9, n0, _DRP,
|
|
1114
|
-
0, () => DeleteRepositoryPolicyRequest$, () => DeleteRepositoryPolicyResponse$
|
|
1115
|
-
];
|
|
1116
|
-
var DescribeImages$ = [9, n0, _DI,
|
|
1117
|
-
0, () => DescribeImagesRequest$, () => DescribeImagesResponse$
|
|
1118
|
-
];
|
|
1119
|
-
var DescribeImageTags$ = [9, n0, _DIT,
|
|
1120
|
-
0, () => DescribeImageTagsRequest$, () => DescribeImageTagsResponse$
|
|
1121
|
-
];
|
|
1122
|
-
var DescribeRegistries$ = [9, n0, _DRe,
|
|
1123
|
-
0, () => DescribeRegistriesRequest$, () => DescribeRegistriesResponse$
|
|
1124
|
-
];
|
|
1125
|
-
var DescribeRepositories$ = [9, n0, _DRes,
|
|
1126
|
-
0, () => DescribeRepositoriesRequest$, () => DescribeRepositoriesResponse$
|
|
1127
|
-
];
|
|
1128
|
-
var GetAuthorizationToken$ = [9, n0, _GAT,
|
|
1129
|
-
0, () => GetAuthorizationTokenRequest$, () => GetAuthorizationTokenResponse$
|
|
1130
|
-
];
|
|
1131
|
-
var GetRegistryCatalogData$ = [9, n0, _GRCD,
|
|
1132
|
-
0, () => GetRegistryCatalogDataRequest$, () => GetRegistryCatalogDataResponse$
|
|
1133
|
-
];
|
|
1134
|
-
var GetRepositoryCatalogData$ = [9, n0, _GRCDe,
|
|
1135
|
-
0, () => GetRepositoryCatalogDataRequest$, () => GetRepositoryCatalogDataResponse$
|
|
1136
|
-
];
|
|
1137
|
-
var GetRepositoryPolicy$ = [9, n0, _GRP,
|
|
1138
|
-
0, () => GetRepositoryPolicyRequest$, () => GetRepositoryPolicyResponse$
|
|
1139
|
-
];
|
|
1140
|
-
var InitiateLayerUpload$ = [9, n0, _ILU,
|
|
1141
|
-
0, () => InitiateLayerUploadRequest$, () => InitiateLayerUploadResponse$
|
|
1142
|
-
];
|
|
1143
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1144
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1145
|
-
];
|
|
1146
|
-
var PutImage$ = [9, n0, _PI,
|
|
1147
|
-
0, () => PutImageRequest$, () => PutImageResponse$
|
|
1148
|
-
];
|
|
1149
|
-
var PutRegistryCatalogData$ = [9, n0, _PRCD,
|
|
1150
|
-
0, () => PutRegistryCatalogDataRequest$, () => PutRegistryCatalogDataResponse$
|
|
1151
|
-
];
|
|
1152
|
-
var PutRepositoryCatalogData$ = [9, n0, _PRCDu,
|
|
1153
|
-
0, () => PutRepositoryCatalogDataRequest$, () => PutRepositoryCatalogDataResponse$
|
|
1154
|
-
];
|
|
1155
|
-
var SetRepositoryPolicy$ = [9, n0, _SRP,
|
|
1156
|
-
0, () => SetRepositoryPolicyRequest$, () => SetRepositoryPolicyResponse$
|
|
1157
|
-
];
|
|
1158
|
-
var TagResource$ = [9, n0, _TR,
|
|
1159
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1160
|
-
];
|
|
1161
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1162
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1163
|
-
];
|
|
1164
|
-
var UploadLayerPart$ = [9, n0, _ULP,
|
|
1165
|
-
0, () => UploadLayerPartRequest$, () => UploadLayerPartResponse$
|
|
1166
|
-
];
|
|
1167
|
-
|
|
1168
116
|
class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
1169
117
|
.classBuilder()
|
|
1170
118
|
.ep(commonParams)
|
|
@@ -1173,7 +121,7 @@ class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
|
1173
121
|
})
|
|
1174
122
|
.s("SpencerFrontendService", "BatchCheckLayerAvailability", {})
|
|
1175
123
|
.n("ECRPUBLICClient", "BatchCheckLayerAvailabilityCommand")
|
|
1176
|
-
.sc(BatchCheckLayerAvailability$)
|
|
124
|
+
.sc(schemas_0.BatchCheckLayerAvailability$)
|
|
1177
125
|
.build() {
|
|
1178
126
|
}
|
|
1179
127
|
|
|
@@ -1185,7 +133,7 @@ class BatchDeleteImageCommand extends smithyClient.Command
|
|
|
1185
133
|
})
|
|
1186
134
|
.s("SpencerFrontendService", "BatchDeleteImage", {})
|
|
1187
135
|
.n("ECRPUBLICClient", "BatchDeleteImageCommand")
|
|
1188
|
-
.sc(BatchDeleteImage$)
|
|
136
|
+
.sc(schemas_0.BatchDeleteImage$)
|
|
1189
137
|
.build() {
|
|
1190
138
|
}
|
|
1191
139
|
|
|
@@ -1197,7 +145,7 @@ class CompleteLayerUploadCommand extends smithyClient.Command
|
|
|
1197
145
|
})
|
|
1198
146
|
.s("SpencerFrontendService", "CompleteLayerUpload", {})
|
|
1199
147
|
.n("ECRPUBLICClient", "CompleteLayerUploadCommand")
|
|
1200
|
-
.sc(CompleteLayerUpload$)
|
|
148
|
+
.sc(schemas_0.CompleteLayerUpload$)
|
|
1201
149
|
.build() {
|
|
1202
150
|
}
|
|
1203
151
|
|
|
@@ -1209,7 +157,7 @@ class CreateRepositoryCommand extends smithyClient.Command
|
|
|
1209
157
|
})
|
|
1210
158
|
.s("SpencerFrontendService", "CreateRepository", {})
|
|
1211
159
|
.n("ECRPUBLICClient", "CreateRepositoryCommand")
|
|
1212
|
-
.sc(CreateRepository$)
|
|
160
|
+
.sc(schemas_0.CreateRepository$)
|
|
1213
161
|
.build() {
|
|
1214
162
|
}
|
|
1215
163
|
|
|
@@ -1221,7 +169,7 @@ class DeleteRepositoryCommand extends smithyClient.Command
|
|
|
1221
169
|
})
|
|
1222
170
|
.s("SpencerFrontendService", "DeleteRepository", {})
|
|
1223
171
|
.n("ECRPUBLICClient", "DeleteRepositoryCommand")
|
|
1224
|
-
.sc(DeleteRepository$)
|
|
172
|
+
.sc(schemas_0.DeleteRepository$)
|
|
1225
173
|
.build() {
|
|
1226
174
|
}
|
|
1227
175
|
|
|
@@ -1233,7 +181,7 @@ class DeleteRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1233
181
|
})
|
|
1234
182
|
.s("SpencerFrontendService", "DeleteRepositoryPolicy", {})
|
|
1235
183
|
.n("ECRPUBLICClient", "DeleteRepositoryPolicyCommand")
|
|
1236
|
-
.sc(DeleteRepositoryPolicy$)
|
|
184
|
+
.sc(schemas_0.DeleteRepositoryPolicy$)
|
|
1237
185
|
.build() {
|
|
1238
186
|
}
|
|
1239
187
|
|
|
@@ -1245,7 +193,7 @@ class DescribeImagesCommand extends smithyClient.Command
|
|
|
1245
193
|
})
|
|
1246
194
|
.s("SpencerFrontendService", "DescribeImages", {})
|
|
1247
195
|
.n("ECRPUBLICClient", "DescribeImagesCommand")
|
|
1248
|
-
.sc(DescribeImages$)
|
|
196
|
+
.sc(schemas_0.DescribeImages$)
|
|
1249
197
|
.build() {
|
|
1250
198
|
}
|
|
1251
199
|
|
|
@@ -1257,7 +205,7 @@ class DescribeImageTagsCommand extends smithyClient.Command
|
|
|
1257
205
|
})
|
|
1258
206
|
.s("SpencerFrontendService", "DescribeImageTags", {})
|
|
1259
207
|
.n("ECRPUBLICClient", "DescribeImageTagsCommand")
|
|
1260
|
-
.sc(DescribeImageTags$)
|
|
208
|
+
.sc(schemas_0.DescribeImageTags$)
|
|
1261
209
|
.build() {
|
|
1262
210
|
}
|
|
1263
211
|
|
|
@@ -1269,7 +217,7 @@ class DescribeRegistriesCommand extends smithyClient.Command
|
|
|
1269
217
|
})
|
|
1270
218
|
.s("SpencerFrontendService", "DescribeRegistries", {})
|
|
1271
219
|
.n("ECRPUBLICClient", "DescribeRegistriesCommand")
|
|
1272
|
-
.sc(DescribeRegistries$)
|
|
220
|
+
.sc(schemas_0.DescribeRegistries$)
|
|
1273
221
|
.build() {
|
|
1274
222
|
}
|
|
1275
223
|
|
|
@@ -1281,7 +229,7 @@ class DescribeRepositoriesCommand extends smithyClient.Command
|
|
|
1281
229
|
})
|
|
1282
230
|
.s("SpencerFrontendService", "DescribeRepositories", {})
|
|
1283
231
|
.n("ECRPUBLICClient", "DescribeRepositoriesCommand")
|
|
1284
|
-
.sc(DescribeRepositories$)
|
|
232
|
+
.sc(schemas_0.DescribeRepositories$)
|
|
1285
233
|
.build() {
|
|
1286
234
|
}
|
|
1287
235
|
|
|
@@ -1293,7 +241,7 @@ class GetAuthorizationTokenCommand extends smithyClient.Command
|
|
|
1293
241
|
})
|
|
1294
242
|
.s("SpencerFrontendService", "GetAuthorizationToken", {})
|
|
1295
243
|
.n("ECRPUBLICClient", "GetAuthorizationTokenCommand")
|
|
1296
|
-
.sc(GetAuthorizationToken$)
|
|
244
|
+
.sc(schemas_0.GetAuthorizationToken$)
|
|
1297
245
|
.build() {
|
|
1298
246
|
}
|
|
1299
247
|
|
|
@@ -1305,7 +253,7 @@ class GetRegistryCatalogDataCommand extends smithyClient.Command
|
|
|
1305
253
|
})
|
|
1306
254
|
.s("SpencerFrontendService", "GetRegistryCatalogData", {})
|
|
1307
255
|
.n("ECRPUBLICClient", "GetRegistryCatalogDataCommand")
|
|
1308
|
-
.sc(GetRegistryCatalogData$)
|
|
256
|
+
.sc(schemas_0.GetRegistryCatalogData$)
|
|
1309
257
|
.build() {
|
|
1310
258
|
}
|
|
1311
259
|
|
|
@@ -1317,7 +265,7 @@ class GetRepositoryCatalogDataCommand extends smithyClient.Command
|
|
|
1317
265
|
})
|
|
1318
266
|
.s("SpencerFrontendService", "GetRepositoryCatalogData", {})
|
|
1319
267
|
.n("ECRPUBLICClient", "GetRepositoryCatalogDataCommand")
|
|
1320
|
-
.sc(GetRepositoryCatalogData$)
|
|
268
|
+
.sc(schemas_0.GetRepositoryCatalogData$)
|
|
1321
269
|
.build() {
|
|
1322
270
|
}
|
|
1323
271
|
|
|
@@ -1329,7 +277,7 @@ class GetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1329
277
|
})
|
|
1330
278
|
.s("SpencerFrontendService", "GetRepositoryPolicy", {})
|
|
1331
279
|
.n("ECRPUBLICClient", "GetRepositoryPolicyCommand")
|
|
1332
|
-
.sc(GetRepositoryPolicy$)
|
|
280
|
+
.sc(schemas_0.GetRepositoryPolicy$)
|
|
1333
281
|
.build() {
|
|
1334
282
|
}
|
|
1335
283
|
|
|
@@ -1341,7 +289,7 @@ class InitiateLayerUploadCommand extends smithyClient.Command
|
|
|
1341
289
|
})
|
|
1342
290
|
.s("SpencerFrontendService", "InitiateLayerUpload", {})
|
|
1343
291
|
.n("ECRPUBLICClient", "InitiateLayerUploadCommand")
|
|
1344
|
-
.sc(InitiateLayerUpload$)
|
|
292
|
+
.sc(schemas_0.InitiateLayerUpload$)
|
|
1345
293
|
.build() {
|
|
1346
294
|
}
|
|
1347
295
|
|
|
@@ -1353,7 +301,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1353
301
|
})
|
|
1354
302
|
.s("SpencerFrontendService", "ListTagsForResource", {})
|
|
1355
303
|
.n("ECRPUBLICClient", "ListTagsForResourceCommand")
|
|
1356
|
-
.sc(ListTagsForResource$)
|
|
304
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1357
305
|
.build() {
|
|
1358
306
|
}
|
|
1359
307
|
|
|
@@ -1365,7 +313,7 @@ class PutImageCommand extends smithyClient.Command
|
|
|
1365
313
|
})
|
|
1366
314
|
.s("SpencerFrontendService", "PutImage", {})
|
|
1367
315
|
.n("ECRPUBLICClient", "PutImageCommand")
|
|
1368
|
-
.sc(PutImage$)
|
|
316
|
+
.sc(schemas_0.PutImage$)
|
|
1369
317
|
.build() {
|
|
1370
318
|
}
|
|
1371
319
|
|
|
@@ -1377,7 +325,7 @@ class PutRegistryCatalogDataCommand extends smithyClient.Command
|
|
|
1377
325
|
})
|
|
1378
326
|
.s("SpencerFrontendService", "PutRegistryCatalogData", {})
|
|
1379
327
|
.n("ECRPUBLICClient", "PutRegistryCatalogDataCommand")
|
|
1380
|
-
.sc(PutRegistryCatalogData$)
|
|
328
|
+
.sc(schemas_0.PutRegistryCatalogData$)
|
|
1381
329
|
.build() {
|
|
1382
330
|
}
|
|
1383
331
|
|
|
@@ -1389,7 +337,7 @@ class PutRepositoryCatalogDataCommand extends smithyClient.Command
|
|
|
1389
337
|
})
|
|
1390
338
|
.s("SpencerFrontendService", "PutRepositoryCatalogData", {})
|
|
1391
339
|
.n("ECRPUBLICClient", "PutRepositoryCatalogDataCommand")
|
|
1392
|
-
.sc(PutRepositoryCatalogData$)
|
|
340
|
+
.sc(schemas_0.PutRepositoryCatalogData$)
|
|
1393
341
|
.build() {
|
|
1394
342
|
}
|
|
1395
343
|
|
|
@@ -1401,7 +349,7 @@ class SetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1401
349
|
})
|
|
1402
350
|
.s("SpencerFrontendService", "SetRepositoryPolicy", {})
|
|
1403
351
|
.n("ECRPUBLICClient", "SetRepositoryPolicyCommand")
|
|
1404
|
-
.sc(SetRepositoryPolicy$)
|
|
352
|
+
.sc(schemas_0.SetRepositoryPolicy$)
|
|
1405
353
|
.build() {
|
|
1406
354
|
}
|
|
1407
355
|
|
|
@@ -1413,7 +361,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1413
361
|
})
|
|
1414
362
|
.s("SpencerFrontendService", "TagResource", {})
|
|
1415
363
|
.n("ECRPUBLICClient", "TagResourceCommand")
|
|
1416
|
-
.sc(TagResource$)
|
|
364
|
+
.sc(schemas_0.TagResource$)
|
|
1417
365
|
.build() {
|
|
1418
366
|
}
|
|
1419
367
|
|
|
@@ -1425,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1425
373
|
})
|
|
1426
374
|
.s("SpencerFrontendService", "UntagResource", {})
|
|
1427
375
|
.n("ECRPUBLICClient", "UntagResourceCommand")
|
|
1428
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1429
377
|
.build() {
|
|
1430
378
|
}
|
|
1431
379
|
|
|
@@ -1437,7 +385,7 @@ class UploadLayerPartCommand extends smithyClient.Command
|
|
|
1437
385
|
})
|
|
1438
386
|
.s("SpencerFrontendService", "UploadLayerPart", {})
|
|
1439
387
|
.n("ECRPUBLICClient", "UploadLayerPartCommand")
|
|
1440
|
-
.sc(UploadLayerPart$)
|
|
388
|
+
.sc(schemas_0.UploadLayerPart$)
|
|
1441
389
|
.build() {
|
|
1442
390
|
}
|
|
1443
391
|
|
|
@@ -1515,171 +463,52 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1515
463
|
enumerable: true,
|
|
1516
464
|
get: function () { return smithyClient.Client; }
|
|
1517
465
|
});
|
|
1518
|
-
exports
|
|
1519
|
-
|
|
466
|
+
Object.defineProperty(exports, "ECRPUBLICServiceException", {
|
|
467
|
+
enumerable: true,
|
|
468
|
+
get: function () { return ECRPUBLICServiceException.ECRPUBLICServiceException; }
|
|
469
|
+
});
|
|
1520
470
|
exports.BatchCheckLayerAvailabilityCommand = BatchCheckLayerAvailabilityCommand;
|
|
1521
|
-
exports.BatchCheckLayerAvailabilityRequest$ = BatchCheckLayerAvailabilityRequest$;
|
|
1522
|
-
exports.BatchCheckLayerAvailabilityResponse$ = BatchCheckLayerAvailabilityResponse$;
|
|
1523
|
-
exports.BatchDeleteImage$ = BatchDeleteImage$;
|
|
1524
471
|
exports.BatchDeleteImageCommand = BatchDeleteImageCommand;
|
|
1525
|
-
exports.BatchDeleteImageRequest$ = BatchDeleteImageRequest$;
|
|
1526
|
-
exports.BatchDeleteImageResponse$ = BatchDeleteImageResponse$;
|
|
1527
|
-
exports.CompleteLayerUpload$ = CompleteLayerUpload$;
|
|
1528
472
|
exports.CompleteLayerUploadCommand = CompleteLayerUploadCommand;
|
|
1529
|
-
exports.CompleteLayerUploadRequest$ = CompleteLayerUploadRequest$;
|
|
1530
|
-
exports.CompleteLayerUploadResponse$ = CompleteLayerUploadResponse$;
|
|
1531
|
-
exports.CreateRepository$ = CreateRepository$;
|
|
1532
473
|
exports.CreateRepositoryCommand = CreateRepositoryCommand;
|
|
1533
|
-
exports.CreateRepositoryRequest$ = CreateRepositoryRequest$;
|
|
1534
|
-
exports.CreateRepositoryResponse$ = CreateRepositoryResponse$;
|
|
1535
|
-
exports.DeleteRepository$ = DeleteRepository$;
|
|
1536
474
|
exports.DeleteRepositoryCommand = DeleteRepositoryCommand;
|
|
1537
|
-
exports.DeleteRepositoryPolicy$ = DeleteRepositoryPolicy$;
|
|
1538
475
|
exports.DeleteRepositoryPolicyCommand = DeleteRepositoryPolicyCommand;
|
|
1539
|
-
exports.DeleteRepositoryPolicyRequest$ = DeleteRepositoryPolicyRequest$;
|
|
1540
|
-
exports.DeleteRepositoryPolicyResponse$ = DeleteRepositoryPolicyResponse$;
|
|
1541
|
-
exports.DeleteRepositoryRequest$ = DeleteRepositoryRequest$;
|
|
1542
|
-
exports.DeleteRepositoryResponse$ = DeleteRepositoryResponse$;
|
|
1543
|
-
exports.DescribeImageTags$ = DescribeImageTags$;
|
|
1544
476
|
exports.DescribeImageTagsCommand = DescribeImageTagsCommand;
|
|
1545
|
-
exports.DescribeImageTagsRequest$ = DescribeImageTagsRequest$;
|
|
1546
|
-
exports.DescribeImageTagsResponse$ = DescribeImageTagsResponse$;
|
|
1547
|
-
exports.DescribeImages$ = DescribeImages$;
|
|
1548
477
|
exports.DescribeImagesCommand = DescribeImagesCommand;
|
|
1549
|
-
exports.DescribeImagesRequest$ = DescribeImagesRequest$;
|
|
1550
|
-
exports.DescribeImagesResponse$ = DescribeImagesResponse$;
|
|
1551
|
-
exports.DescribeRegistries$ = DescribeRegistries$;
|
|
1552
478
|
exports.DescribeRegistriesCommand = DescribeRegistriesCommand;
|
|
1553
|
-
exports.DescribeRegistriesRequest$ = DescribeRegistriesRequest$;
|
|
1554
|
-
exports.DescribeRegistriesResponse$ = DescribeRegistriesResponse$;
|
|
1555
|
-
exports.DescribeRepositories$ = DescribeRepositories$;
|
|
1556
479
|
exports.DescribeRepositoriesCommand = DescribeRepositoriesCommand;
|
|
1557
|
-
exports.DescribeRepositoriesRequest$ = DescribeRepositoriesRequest$;
|
|
1558
|
-
exports.DescribeRepositoriesResponse$ = DescribeRepositoriesResponse$;
|
|
1559
480
|
exports.ECRPUBLIC = ECRPUBLIC;
|
|
1560
481
|
exports.ECRPUBLICClient = ECRPUBLICClient;
|
|
1561
|
-
exports.ECRPUBLICServiceException = ECRPUBLICServiceException;
|
|
1562
|
-
exports.ECRPUBLICServiceException$ = ECRPUBLICServiceException$;
|
|
1563
|
-
exports.EmptyUploadException = EmptyUploadException;
|
|
1564
|
-
exports.EmptyUploadException$ = EmptyUploadException$;
|
|
1565
|
-
exports.GetAuthorizationToken$ = GetAuthorizationToken$;
|
|
1566
482
|
exports.GetAuthorizationTokenCommand = GetAuthorizationTokenCommand;
|
|
1567
|
-
exports.GetAuthorizationTokenRequest$ = GetAuthorizationTokenRequest$;
|
|
1568
|
-
exports.GetAuthorizationTokenResponse$ = GetAuthorizationTokenResponse$;
|
|
1569
|
-
exports.GetRegistryCatalogData$ = GetRegistryCatalogData$;
|
|
1570
483
|
exports.GetRegistryCatalogDataCommand = GetRegistryCatalogDataCommand;
|
|
1571
|
-
exports.GetRegistryCatalogDataRequest$ = GetRegistryCatalogDataRequest$;
|
|
1572
|
-
exports.GetRegistryCatalogDataResponse$ = GetRegistryCatalogDataResponse$;
|
|
1573
|
-
exports.GetRepositoryCatalogData$ = GetRepositoryCatalogData$;
|
|
1574
484
|
exports.GetRepositoryCatalogDataCommand = GetRepositoryCatalogDataCommand;
|
|
1575
|
-
exports.GetRepositoryCatalogDataRequest$ = GetRepositoryCatalogDataRequest$;
|
|
1576
|
-
exports.GetRepositoryCatalogDataResponse$ = GetRepositoryCatalogDataResponse$;
|
|
1577
|
-
exports.GetRepositoryPolicy$ = GetRepositoryPolicy$;
|
|
1578
485
|
exports.GetRepositoryPolicyCommand = GetRepositoryPolicyCommand;
|
|
1579
|
-
exports.GetRepositoryPolicyRequest$ = GetRepositoryPolicyRequest$;
|
|
1580
|
-
exports.GetRepositoryPolicyResponse$ = GetRepositoryPolicyResponse$;
|
|
1581
|
-
exports.Image$ = Image$;
|
|
1582
|
-
exports.ImageAlreadyExistsException = ImageAlreadyExistsException;
|
|
1583
|
-
exports.ImageAlreadyExistsException$ = ImageAlreadyExistsException$;
|
|
1584
|
-
exports.ImageDetail$ = ImageDetail$;
|
|
1585
|
-
exports.ImageDigestDoesNotMatchException = ImageDigestDoesNotMatchException;
|
|
1586
|
-
exports.ImageDigestDoesNotMatchException$ = ImageDigestDoesNotMatchException$;
|
|
1587
|
-
exports.ImageFailure$ = ImageFailure$;
|
|
1588
486
|
exports.ImageFailureCode = ImageFailureCode;
|
|
1589
|
-
exports.ImageIdentifier$ = ImageIdentifier$;
|
|
1590
|
-
exports.ImageNotFoundException = ImageNotFoundException;
|
|
1591
|
-
exports.ImageNotFoundException$ = ImageNotFoundException$;
|
|
1592
|
-
exports.ImageTagAlreadyExistsException = ImageTagAlreadyExistsException;
|
|
1593
|
-
exports.ImageTagAlreadyExistsException$ = ImageTagAlreadyExistsException$;
|
|
1594
|
-
exports.ImageTagDetail$ = ImageTagDetail$;
|
|
1595
|
-
exports.InitiateLayerUpload$ = InitiateLayerUpload$;
|
|
1596
487
|
exports.InitiateLayerUploadCommand = InitiateLayerUploadCommand;
|
|
1597
|
-
exports.InitiateLayerUploadRequest$ = InitiateLayerUploadRequest$;
|
|
1598
|
-
exports.InitiateLayerUploadResponse$ = InitiateLayerUploadResponse$;
|
|
1599
|
-
exports.InvalidLayerException = InvalidLayerException;
|
|
1600
|
-
exports.InvalidLayerException$ = InvalidLayerException$;
|
|
1601
|
-
exports.InvalidLayerPartException = InvalidLayerPartException;
|
|
1602
|
-
exports.InvalidLayerPartException$ = InvalidLayerPartException$;
|
|
1603
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
1604
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1605
|
-
exports.InvalidTagParameterException = InvalidTagParameterException;
|
|
1606
|
-
exports.InvalidTagParameterException$ = InvalidTagParameterException$;
|
|
1607
|
-
exports.Layer$ = Layer$;
|
|
1608
|
-
exports.LayerAlreadyExistsException = LayerAlreadyExistsException;
|
|
1609
|
-
exports.LayerAlreadyExistsException$ = LayerAlreadyExistsException$;
|
|
1610
488
|
exports.LayerAvailability = LayerAvailability;
|
|
1611
|
-
exports.LayerFailure$ = LayerFailure$;
|
|
1612
489
|
exports.LayerFailureCode = LayerFailureCode;
|
|
1613
|
-
exports.LayerPartTooSmallException = LayerPartTooSmallException;
|
|
1614
|
-
exports.LayerPartTooSmallException$ = LayerPartTooSmallException$;
|
|
1615
|
-
exports.LayersNotFoundException = LayersNotFoundException;
|
|
1616
|
-
exports.LayersNotFoundException$ = LayersNotFoundException$;
|
|
1617
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1618
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1619
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1620
490
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1621
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1622
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1623
|
-
exports.PutImage$ = PutImage$;
|
|
1624
491
|
exports.PutImageCommand = PutImageCommand;
|
|
1625
|
-
exports.PutImageRequest$ = PutImageRequest$;
|
|
1626
|
-
exports.PutImageResponse$ = PutImageResponse$;
|
|
1627
|
-
exports.PutRegistryCatalogData$ = PutRegistryCatalogData$;
|
|
1628
492
|
exports.PutRegistryCatalogDataCommand = PutRegistryCatalogDataCommand;
|
|
1629
|
-
exports.PutRegistryCatalogDataRequest$ = PutRegistryCatalogDataRequest$;
|
|
1630
|
-
exports.PutRegistryCatalogDataResponse$ = PutRegistryCatalogDataResponse$;
|
|
1631
|
-
exports.PutRepositoryCatalogData$ = PutRepositoryCatalogData$;
|
|
1632
493
|
exports.PutRepositoryCatalogDataCommand = PutRepositoryCatalogDataCommand;
|
|
1633
|
-
exports.PutRepositoryCatalogDataRequest$ = PutRepositoryCatalogDataRequest$;
|
|
1634
|
-
exports.PutRepositoryCatalogDataResponse$ = PutRepositoryCatalogDataResponse$;
|
|
1635
|
-
exports.ReferencedImageDetail$ = ReferencedImageDetail$;
|
|
1636
|
-
exports.ReferencedImagesNotFoundException = ReferencedImagesNotFoundException;
|
|
1637
|
-
exports.ReferencedImagesNotFoundException$ = ReferencedImagesNotFoundException$;
|
|
1638
|
-
exports.Registry$ = Registry$;
|
|
1639
|
-
exports.RegistryAlias$ = RegistryAlias$;
|
|
1640
494
|
exports.RegistryAliasStatus = RegistryAliasStatus;
|
|
1641
|
-
exports.RegistryCatalogData$ = RegistryCatalogData$;
|
|
1642
|
-
exports.RegistryNotFoundException = RegistryNotFoundException;
|
|
1643
|
-
exports.RegistryNotFoundException$ = RegistryNotFoundException$;
|
|
1644
|
-
exports.Repository$ = Repository$;
|
|
1645
|
-
exports.RepositoryAlreadyExistsException = RepositoryAlreadyExistsException;
|
|
1646
|
-
exports.RepositoryAlreadyExistsException$ = RepositoryAlreadyExistsException$;
|
|
1647
|
-
exports.RepositoryCatalogData$ = RepositoryCatalogData$;
|
|
1648
|
-
exports.RepositoryCatalogDataInput$ = RepositoryCatalogDataInput$;
|
|
1649
|
-
exports.RepositoryCatalogDataNotFoundException = RepositoryCatalogDataNotFoundException;
|
|
1650
|
-
exports.RepositoryCatalogDataNotFoundException$ = RepositoryCatalogDataNotFoundException$;
|
|
1651
|
-
exports.RepositoryNotEmptyException = RepositoryNotEmptyException;
|
|
1652
|
-
exports.RepositoryNotEmptyException$ = RepositoryNotEmptyException$;
|
|
1653
|
-
exports.RepositoryNotFoundException = RepositoryNotFoundException;
|
|
1654
|
-
exports.RepositoryNotFoundException$ = RepositoryNotFoundException$;
|
|
1655
|
-
exports.RepositoryPolicyNotFoundException = RepositoryPolicyNotFoundException;
|
|
1656
|
-
exports.RepositoryPolicyNotFoundException$ = RepositoryPolicyNotFoundException$;
|
|
1657
|
-
exports.ServerException = ServerException;
|
|
1658
|
-
exports.ServerException$ = ServerException$;
|
|
1659
|
-
exports.SetRepositoryPolicy$ = SetRepositoryPolicy$;
|
|
1660
495
|
exports.SetRepositoryPolicyCommand = SetRepositoryPolicyCommand;
|
|
1661
|
-
exports.SetRepositoryPolicyRequest$ = SetRepositoryPolicyRequest$;
|
|
1662
|
-
exports.SetRepositoryPolicyResponse$ = SetRepositoryPolicyResponse$;
|
|
1663
|
-
exports.Tag$ = Tag$;
|
|
1664
|
-
exports.TagResource$ = TagResource$;
|
|
1665
496
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1666
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1667
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1668
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1669
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1670
|
-
exports.UnsupportedCommandException = UnsupportedCommandException;
|
|
1671
|
-
exports.UnsupportedCommandException$ = UnsupportedCommandException$;
|
|
1672
|
-
exports.UntagResource$ = UntagResource$;
|
|
1673
497
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1674
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1675
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1676
|
-
exports.UploadLayerPart$ = UploadLayerPart$;
|
|
1677
498
|
exports.UploadLayerPartCommand = UploadLayerPartCommand;
|
|
1678
|
-
exports.UploadLayerPartRequest$ = UploadLayerPartRequest$;
|
|
1679
|
-
exports.UploadLayerPartResponse$ = UploadLayerPartResponse$;
|
|
1680
|
-
exports.UploadNotFoundException = UploadNotFoundException;
|
|
1681
|
-
exports.UploadNotFoundException$ = UploadNotFoundException$;
|
|
1682
499
|
exports.paginateDescribeImageTags = paginateDescribeImageTags;
|
|
1683
500
|
exports.paginateDescribeImages = paginateDescribeImages;
|
|
1684
501
|
exports.paginateDescribeRegistries = paginateDescribeRegistries;
|
|
1685
502
|
exports.paginateDescribeRepositories = paginateDescribeRepositories;
|
|
503
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
504
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
505
|
+
enumerable: true,
|
|
506
|
+
get: function () { return schemas_0[k]; }
|
|
507
|
+
});
|
|
508
|
+
});
|
|
509
|
+
Object.keys(errors).forEach(function (k) {
|
|
510
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
511
|
+
enumerable: true,
|
|
512
|
+
get: function () { return errors[k]; }
|
|
513
|
+
});
|
|
514
|
+
});
|