@aws-sdk/client-ecr-public 3.952.0 → 3.953.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 +425 -294
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +2 -2
- package/dist-es/commands/BatchDeleteImageCommand.js +2 -2
- package/dist-es/commands/CompleteLayerUploadCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeImageTagsCommand.js +2 -2
- package/dist-es/commands/DescribeImagesCommand.js +2 -2
- package/dist-es/commands/DescribeRegistriesCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoriesCommand.js +2 -2
- package/dist-es/commands/GetAuthorizationTokenCommand.js +2 -2
- package/dist-es/commands/GetRegistryCatalogDataCommand.js +2 -2
- package/dist-es/commands/GetRepositoryCatalogDataCommand.js +2 -2
- package/dist-es/commands/GetRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/InitiateLayerUploadCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutImageCommand.js +2 -2
- package/dist-es/commands/PutRegistryCatalogDataCommand.js +2 -2
- package/dist-es/commands/PutRepositoryCatalogDataCommand.js +2 -2
- package/dist-es/commands/SetRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UploadLayerPartCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +226 -205
- package/dist-types/ECRPUBLICClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +111 -128
- package/dist-types/ts3.4/ECRPUBLICClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -128
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class ECRPUBLICClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class ECRPUBLICServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, ECRPUBLICServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InvalidParameterException extends ECRPUBLICServiceException {
|
|
121
121
|
name = "InvalidParameterException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends ECRPUB
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class RegistryNotFoundException extends ECRPUBLICServiceException {
|
|
133
133
|
name = "RegistryNotFoundException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let RegistryNotFoundException$1 = class RegistryNotFoundException extends ECRPUB
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, RegistryNotFoundException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class RepositoryNotFoundException extends ECRPUBLICServiceException {
|
|
145
145
|
name = "RepositoryNotFoundException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let RepositoryNotFoundException$1 = class RepositoryNotFoundException extends EC
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class ServerException extends ECRPUBLICServiceException {
|
|
157
157
|
name = "ServerException";
|
|
158
158
|
$fault = "server";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ let ServerException$1 = class ServerException extends ECRPUBLICServiceException$
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, ServerException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class UnsupportedCommandException extends ECRPUBLICServiceException {
|
|
169
169
|
name = "UnsupportedCommandException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,8 +176,8 @@ let UnsupportedCommandException$1 = class UnsupportedCommandException extends EC
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, UnsupportedCommandException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
180
|
-
|
|
179
|
+
}
|
|
180
|
+
class EmptyUploadException extends ECRPUBLICServiceException {
|
|
181
181
|
name = "EmptyUploadException";
|
|
182
182
|
$fault = "client";
|
|
183
183
|
constructor(opts) {
|
|
@@ -188,8 +188,8 @@ let EmptyUploadException$1 = class EmptyUploadException extends ECRPUBLICService
|
|
|
188
188
|
});
|
|
189
189
|
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class InvalidLayerException extends ECRPUBLICServiceException {
|
|
193
193
|
name = "InvalidLayerException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
constructor(opts) {
|
|
@@ -200,8 +200,8 @@ let InvalidLayerException$1 = class InvalidLayerException extends ECRPUBLICServi
|
|
|
200
200
|
});
|
|
201
201
|
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class LayerAlreadyExistsException extends ECRPUBLICServiceException {
|
|
205
205
|
name = "LayerAlreadyExistsException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
constructor(opts) {
|
|
@@ -212,8 +212,8 @@ let LayerAlreadyExistsException$1 = class LayerAlreadyExistsException extends EC
|
|
|
212
212
|
});
|
|
213
213
|
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class LayerPartTooSmallException extends ECRPUBLICServiceException {
|
|
217
217
|
name = "LayerPartTooSmallException";
|
|
218
218
|
$fault = "client";
|
|
219
219
|
constructor(opts) {
|
|
@@ -224,8 +224,8 @@ let LayerPartTooSmallException$1 = class LayerPartTooSmallException extends ECRP
|
|
|
224
224
|
});
|
|
225
225
|
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
226
226
|
}
|
|
227
|
-
}
|
|
228
|
-
|
|
227
|
+
}
|
|
228
|
+
class UploadNotFoundException extends ECRPUBLICServiceException {
|
|
229
229
|
name = "UploadNotFoundException";
|
|
230
230
|
$fault = "client";
|
|
231
231
|
constructor(opts) {
|
|
@@ -236,8 +236,8 @@ let UploadNotFoundException$1 = class UploadNotFoundException extends ECRPUBLICS
|
|
|
236
236
|
});
|
|
237
237
|
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class InvalidTagParameterException extends ECRPUBLICServiceException {
|
|
241
241
|
name = "InvalidTagParameterException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
constructor(opts) {
|
|
@@ -248,8 +248,8 @@ let InvalidTagParameterException$1 = class InvalidTagParameterException extends
|
|
|
248
248
|
});
|
|
249
249
|
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
250
250
|
}
|
|
251
|
-
}
|
|
252
|
-
|
|
251
|
+
}
|
|
252
|
+
class LimitExceededException extends ECRPUBLICServiceException {
|
|
253
253
|
name = "LimitExceededException";
|
|
254
254
|
$fault = "client";
|
|
255
255
|
constructor(opts) {
|
|
@@ -260,8 +260,8 @@ let LimitExceededException$1 = class LimitExceededException extends ECRPUBLICSer
|
|
|
260
260
|
});
|
|
261
261
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
262
262
|
}
|
|
263
|
-
}
|
|
264
|
-
|
|
263
|
+
}
|
|
264
|
+
class RepositoryAlreadyExistsException extends ECRPUBLICServiceException {
|
|
265
265
|
name = "RepositoryAlreadyExistsException";
|
|
266
266
|
$fault = "client";
|
|
267
267
|
constructor(opts) {
|
|
@@ -272,8 +272,8 @@ let RepositoryAlreadyExistsException$1 = class RepositoryAlreadyExistsException
|
|
|
272
272
|
});
|
|
273
273
|
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
274
274
|
}
|
|
275
|
-
}
|
|
276
|
-
|
|
275
|
+
}
|
|
276
|
+
class TooManyTagsException extends ECRPUBLICServiceException {
|
|
277
277
|
name = "TooManyTagsException";
|
|
278
278
|
$fault = "client";
|
|
279
279
|
constructor(opts) {
|
|
@@ -284,8 +284,8 @@ let TooManyTagsException$1 = class TooManyTagsException extends ECRPUBLICService
|
|
|
284
284
|
});
|
|
285
285
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
286
286
|
}
|
|
287
|
-
}
|
|
288
|
-
|
|
287
|
+
}
|
|
288
|
+
class RepositoryNotEmptyException extends ECRPUBLICServiceException {
|
|
289
289
|
name = "RepositoryNotEmptyException";
|
|
290
290
|
$fault = "client";
|
|
291
291
|
constructor(opts) {
|
|
@@ -296,8 +296,8 @@ let RepositoryNotEmptyException$1 = class RepositoryNotEmptyException extends EC
|
|
|
296
296
|
});
|
|
297
297
|
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
298
298
|
}
|
|
299
|
-
}
|
|
300
|
-
|
|
299
|
+
}
|
|
300
|
+
class RepositoryPolicyNotFoundException extends ECRPUBLICServiceException {
|
|
301
301
|
name = "RepositoryPolicyNotFoundException";
|
|
302
302
|
$fault = "client";
|
|
303
303
|
constructor(opts) {
|
|
@@ -308,8 +308,8 @@ let RepositoryPolicyNotFoundException$1 = class RepositoryPolicyNotFoundExceptio
|
|
|
308
308
|
});
|
|
309
309
|
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
310
310
|
}
|
|
311
|
-
}
|
|
312
|
-
|
|
311
|
+
}
|
|
312
|
+
class ImageNotFoundException extends ECRPUBLICServiceException {
|
|
313
313
|
name = "ImageNotFoundException";
|
|
314
314
|
$fault = "client";
|
|
315
315
|
constructor(opts) {
|
|
@@ -320,8 +320,8 @@ let ImageNotFoundException$1 = class ImageNotFoundException extends ECRPUBLICSer
|
|
|
320
320
|
});
|
|
321
321
|
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
322
322
|
}
|
|
323
|
-
}
|
|
324
|
-
|
|
323
|
+
}
|
|
324
|
+
class RepositoryCatalogDataNotFoundException extends ECRPUBLICServiceException {
|
|
325
325
|
name = "RepositoryCatalogDataNotFoundException";
|
|
326
326
|
$fault = "client";
|
|
327
327
|
constructor(opts) {
|
|
@@ -332,8 +332,8 @@ let RepositoryCatalogDataNotFoundException$1 = class RepositoryCatalogDataNotFou
|
|
|
332
332
|
});
|
|
333
333
|
Object.setPrototypeOf(this, RepositoryCatalogDataNotFoundException.prototype);
|
|
334
334
|
}
|
|
335
|
-
}
|
|
336
|
-
|
|
335
|
+
}
|
|
336
|
+
class ImageAlreadyExistsException extends ECRPUBLICServiceException {
|
|
337
337
|
name = "ImageAlreadyExistsException";
|
|
338
338
|
$fault = "client";
|
|
339
339
|
constructor(opts) {
|
|
@@ -344,8 +344,8 @@ let ImageAlreadyExistsException$1 = class ImageAlreadyExistsException extends EC
|
|
|
344
344
|
});
|
|
345
345
|
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
346
346
|
}
|
|
347
|
-
}
|
|
348
|
-
|
|
347
|
+
}
|
|
348
|
+
class ImageDigestDoesNotMatchException extends ECRPUBLICServiceException {
|
|
349
349
|
name = "ImageDigestDoesNotMatchException";
|
|
350
350
|
$fault = "client";
|
|
351
351
|
constructor(opts) {
|
|
@@ -356,8 +356,8 @@ let ImageDigestDoesNotMatchException$1 = class ImageDigestDoesNotMatchException
|
|
|
356
356
|
});
|
|
357
357
|
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
358
358
|
}
|
|
359
|
-
}
|
|
360
|
-
|
|
359
|
+
}
|
|
360
|
+
class ImageTagAlreadyExistsException extends ECRPUBLICServiceException {
|
|
361
361
|
name = "ImageTagAlreadyExistsException";
|
|
362
362
|
$fault = "client";
|
|
363
363
|
constructor(opts) {
|
|
@@ -368,8 +368,8 @@ let ImageTagAlreadyExistsException$1 = class ImageTagAlreadyExistsException exte
|
|
|
368
368
|
});
|
|
369
369
|
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
370
370
|
}
|
|
371
|
-
}
|
|
372
|
-
|
|
371
|
+
}
|
|
372
|
+
class InvalidLayerPartException extends ECRPUBLICServiceException {
|
|
373
373
|
name = "InvalidLayerPartException";
|
|
374
374
|
$fault = "client";
|
|
375
375
|
registryId;
|
|
@@ -388,8 +388,8 @@ let InvalidLayerPartException$1 = class InvalidLayerPartException extends ECRPUB
|
|
|
388
388
|
this.uploadId = opts.uploadId;
|
|
389
389
|
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
390
390
|
}
|
|
391
|
-
}
|
|
392
|
-
|
|
391
|
+
}
|
|
392
|
+
class LayersNotFoundException extends ECRPUBLICServiceException {
|
|
393
393
|
name = "LayersNotFoundException";
|
|
394
394
|
$fault = "client";
|
|
395
395
|
constructor(opts) {
|
|
@@ -400,8 +400,8 @@ let LayersNotFoundException$1 = class LayersNotFoundException extends ECRPUBLICS
|
|
|
400
400
|
});
|
|
401
401
|
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
402
402
|
}
|
|
403
|
-
}
|
|
404
|
-
|
|
403
|
+
}
|
|
404
|
+
class ReferencedImagesNotFoundException extends ECRPUBLICServiceException {
|
|
405
405
|
name = "ReferencedImagesNotFoundException";
|
|
406
406
|
$fault = "client";
|
|
407
407
|
constructor(opts) {
|
|
@@ -412,7 +412,7 @@ let ReferencedImagesNotFoundException$1 = class ReferencedImagesNotFoundExceptio
|
|
|
412
412
|
});
|
|
413
413
|
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
414
414
|
}
|
|
415
|
-
}
|
|
415
|
+
}
|
|
416
416
|
|
|
417
417
|
const _AD = "AuthorizationData";
|
|
418
418
|
const _BCLA = "BatchCheckLayerAvailability";
|
|
@@ -609,8 +609,8 @@ const _uI = "uploadId";
|
|
|
609
609
|
const _uT = "usageText";
|
|
610
610
|
const _v = "verified";
|
|
611
611
|
const n0 = "com.amazonaws.ecrpublic";
|
|
612
|
-
var AuthorizationData = [3, n0, _AD, 0, [_aT, _eA], [0, 4]];
|
|
613
|
-
var BatchCheckLayerAvailabilityRequest = [
|
|
612
|
+
var AuthorizationData$ = [3, n0, _AD, 0, [_aT, _eA], [0, 4]];
|
|
613
|
+
var BatchCheckLayerAvailabilityRequest$ = [
|
|
614
614
|
3,
|
|
615
615
|
n0,
|
|
616
616
|
_BCLAR,
|
|
@@ -618,7 +618,7 @@ var BatchCheckLayerAvailabilityRequest = [
|
|
|
618
618
|
[_rI, _rN, _lD],
|
|
619
619
|
[0, 0, 64 | 0],
|
|
620
620
|
];
|
|
621
|
-
var BatchCheckLayerAvailabilityResponse = [
|
|
621
|
+
var BatchCheckLayerAvailabilityResponse$ = [
|
|
622
622
|
3,
|
|
623
623
|
n0,
|
|
624
624
|
_BCLARa,
|
|
@@ -626,7 +626,7 @@ var BatchCheckLayerAvailabilityResponse = [
|
|
|
626
626
|
[_l, _f],
|
|
627
627
|
[() => LayerList, () => LayerFailureList],
|
|
628
628
|
];
|
|
629
|
-
var BatchDeleteImageRequest = [
|
|
629
|
+
var BatchDeleteImageRequest$ = [
|
|
630
630
|
3,
|
|
631
631
|
n0,
|
|
632
632
|
_BDIR,
|
|
@@ -634,7 +634,7 @@ var BatchDeleteImageRequest = [
|
|
|
634
634
|
[_rI, _rN, _iI],
|
|
635
635
|
[0, 0, () => ImageIdentifierList],
|
|
636
636
|
];
|
|
637
|
-
var BatchDeleteImageResponse = [
|
|
637
|
+
var BatchDeleteImageResponse$ = [
|
|
638
638
|
3,
|
|
639
639
|
n0,
|
|
640
640
|
_BDIRa,
|
|
@@ -642,7 +642,7 @@ var BatchDeleteImageResponse = [
|
|
|
642
642
|
[_iI, _f],
|
|
643
643
|
[() => ImageIdentifierList, () => ImageFailureList],
|
|
644
644
|
];
|
|
645
|
-
var CompleteLayerUploadRequest = [
|
|
645
|
+
var CompleteLayerUploadRequest$ = [
|
|
646
646
|
3,
|
|
647
647
|
n0,
|
|
648
648
|
_CLUR,
|
|
@@ -650,28 +650,35 @@ var CompleteLayerUploadRequest = [
|
|
|
650
650
|
[_rI, _rN, _uI, _lD],
|
|
651
651
|
[0, 0, 0, 64 | 0],
|
|
652
652
|
];
|
|
653
|
-
var CompleteLayerUploadResponse = [
|
|
654
|
-
|
|
653
|
+
var CompleteLayerUploadResponse$ = [
|
|
654
|
+
3,
|
|
655
|
+
n0,
|
|
656
|
+
_CLURo,
|
|
657
|
+
0,
|
|
658
|
+
[_rI, _rN, _uI, _lDa],
|
|
659
|
+
[0, 0, 0, 0],
|
|
660
|
+
];
|
|
661
|
+
var CreateRepositoryRequest$ = [
|
|
655
662
|
3,
|
|
656
663
|
n0,
|
|
657
664
|
_CRR,
|
|
658
665
|
0,
|
|
659
666
|
[_rN, _cD, _t],
|
|
660
|
-
[0, () => RepositoryCatalogDataInput
|
|
667
|
+
[0, () => RepositoryCatalogDataInput$, () => TagList],
|
|
661
668
|
];
|
|
662
|
-
var CreateRepositoryResponse = [
|
|
669
|
+
var CreateRepositoryResponse$ = [
|
|
663
670
|
3,
|
|
664
671
|
n0,
|
|
665
672
|
_CRRr,
|
|
666
673
|
0,
|
|
667
674
|
[_r, _cD],
|
|
668
|
-
[() => Repository
|
|
675
|
+
[() => Repository$, () => RepositoryCatalogData$],
|
|
669
676
|
];
|
|
670
|
-
var DeleteRepositoryPolicyRequest = [3, n0, _DRPR, 0, [_rI, _rN], [0, 0]];
|
|
671
|
-
var DeleteRepositoryPolicyResponse = [3, n0, _DRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
672
|
-
var DeleteRepositoryRequest = [3, n0, _DRR, 0, [_rI, _rN, _fo], [0, 0, 2]];
|
|
673
|
-
var DeleteRepositoryResponse = [3, n0, _DRRe, 0, [_r], [() => Repository]];
|
|
674
|
-
var DescribeImagesRequest = [
|
|
677
|
+
var DeleteRepositoryPolicyRequest$ = [3, n0, _DRPR, 0, [_rI, _rN], [0, 0]];
|
|
678
|
+
var DeleteRepositoryPolicyResponse$ = [3, n0, _DRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
679
|
+
var DeleteRepositoryRequest$ = [3, n0, _DRR, 0, [_rI, _rN, _fo], [0, 0, 2]];
|
|
680
|
+
var DeleteRepositoryResponse$ = [3, n0, _DRRe, 0, [_r], [() => Repository$]];
|
|
681
|
+
var DescribeImagesRequest$ = [
|
|
675
682
|
3,
|
|
676
683
|
n0,
|
|
677
684
|
_DIR,
|
|
@@ -679,9 +686,9 @@ var DescribeImagesRequest = [
|
|
|
679
686
|
[_rI, _rN, _iI, _nT, _mR],
|
|
680
687
|
[0, 0, () => ImageIdentifierList, 0, 1],
|
|
681
688
|
];
|
|
682
|
-
var DescribeImagesResponse = [3, n0, _DIRe, 0, [_iD, _nT], [() => ImageDetailList, 0]];
|
|
683
|
-
var DescribeImageTagsRequest = [3, n0, _DITR, 0, [_rI, _rN, _nT, _mR], [0, 0, 0, 1]];
|
|
684
|
-
var DescribeImageTagsResponse = [
|
|
689
|
+
var DescribeImagesResponse$ = [3, n0, _DIRe, 0, [_iD, _nT], [() => ImageDetailList, 0]];
|
|
690
|
+
var DescribeImageTagsRequest$ = [3, n0, _DITR, 0, [_rI, _rN, _nT, _mR], [0, 0, 0, 1]];
|
|
691
|
+
var DescribeImageTagsResponse$ = [
|
|
685
692
|
3,
|
|
686
693
|
n0,
|
|
687
694
|
_DITRe,
|
|
@@ -689,9 +696,16 @@ var DescribeImageTagsResponse = [
|
|
|
689
696
|
[_iTD, _nT],
|
|
690
697
|
[() => ImageTagDetailList, 0],
|
|
691
698
|
];
|
|
692
|
-
var DescribeRegistriesRequest = [3, n0, _DRRes, 0, [_nT, _mR], [0, 1]];
|
|
693
|
-
var DescribeRegistriesResponse = [
|
|
694
|
-
|
|
699
|
+
var DescribeRegistriesRequest$ = [3, n0, _DRRes, 0, [_nT, _mR], [0, 1]];
|
|
700
|
+
var DescribeRegistriesResponse$ = [
|
|
701
|
+
3,
|
|
702
|
+
n0,
|
|
703
|
+
_DRResc,
|
|
704
|
+
0,
|
|
705
|
+
[_re, _nT],
|
|
706
|
+
[() => RegistryList, 0],
|
|
707
|
+
];
|
|
708
|
+
var DescribeRepositoriesRequest$ = [
|
|
695
709
|
3,
|
|
696
710
|
n0,
|
|
697
711
|
_DRRescr,
|
|
@@ -699,7 +713,7 @@ var DescribeRepositoriesRequest = [
|
|
|
699
713
|
[_rI, _rNe, _nT, _mR],
|
|
700
714
|
[0, 64 | 0, 0, 1],
|
|
701
715
|
];
|
|
702
|
-
var DescribeRepositoriesResponse = [
|
|
716
|
+
var DescribeRepositoriesResponse$ = [
|
|
703
717
|
3,
|
|
704
718
|
n0,
|
|
705
719
|
_DRRescri,
|
|
@@ -707,41 +721,48 @@ var DescribeRepositoriesResponse = [
|
|
|
707
721
|
[_rep, _nT],
|
|
708
722
|
[() => RepositoryList, 0],
|
|
709
723
|
];
|
|
710
|
-
var EmptyUploadException = [-3, n0, _EUE, { [_e]: _c }, [_m], [0]];
|
|
711
|
-
schema.TypeRegistry.for(n0).registerError(EmptyUploadException
|
|
712
|
-
var GetAuthorizationTokenRequest = [3, n0, _GATR, 0, [], []];
|
|
713
|
-
var GetAuthorizationTokenResponse = [
|
|
714
|
-
|
|
715
|
-
|
|
724
|
+
var EmptyUploadException$ = [-3, n0, _EUE, { [_e]: _c }, [_m], [0]];
|
|
725
|
+
schema.TypeRegistry.for(n0).registerError(EmptyUploadException$, EmptyUploadException);
|
|
726
|
+
var GetAuthorizationTokenRequest$ = [3, n0, _GATR, 0, [], []];
|
|
727
|
+
var GetAuthorizationTokenResponse$ = [
|
|
728
|
+
3,
|
|
729
|
+
n0,
|
|
730
|
+
_GATRe,
|
|
731
|
+
0,
|
|
732
|
+
[_aD],
|
|
733
|
+
[() => AuthorizationData$],
|
|
734
|
+
];
|
|
735
|
+
var GetRegistryCatalogDataRequest$ = [3, n0, _GRCDR, 0, [], []];
|
|
736
|
+
var GetRegistryCatalogDataResponse$ = [
|
|
716
737
|
3,
|
|
717
738
|
n0,
|
|
718
739
|
_GRCDRe,
|
|
719
740
|
0,
|
|
720
741
|
[_rCD],
|
|
721
|
-
[() => RegistryCatalogData],
|
|
742
|
+
[() => RegistryCatalogData$],
|
|
722
743
|
];
|
|
723
|
-
var GetRepositoryCatalogDataRequest = [3, n0, _GRCDRet, 0, [_rI, _rN], [0, 0]];
|
|
724
|
-
var GetRepositoryCatalogDataResponse = [
|
|
744
|
+
var GetRepositoryCatalogDataRequest$ = [3, n0, _GRCDRet, 0, [_rI, _rN], [0, 0]];
|
|
745
|
+
var GetRepositoryCatalogDataResponse$ = [
|
|
725
746
|
3,
|
|
726
747
|
n0,
|
|
727
748
|
_GRCDRete,
|
|
728
749
|
0,
|
|
729
750
|
[_cD],
|
|
730
|
-
[() => RepositoryCatalogData],
|
|
751
|
+
[() => RepositoryCatalogData$],
|
|
731
752
|
];
|
|
732
|
-
var GetRepositoryPolicyRequest = [3, n0, _GRPR, 0, [_rI, _rN], [0, 0]];
|
|
733
|
-
var GetRepositoryPolicyResponse = [3, n0, _GRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
734
|
-
var Image = [
|
|
753
|
+
var GetRepositoryPolicyRequest$ = [3, n0, _GRPR, 0, [_rI, _rN], [0, 0]];
|
|
754
|
+
var GetRepositoryPolicyResponse$ = [3, n0, _GRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
755
|
+
var Image$ = [
|
|
735
756
|
3,
|
|
736
757
|
n0,
|
|
737
758
|
_I,
|
|
738
759
|
0,
|
|
739
760
|
[_rI, _rN, _iIm, _iM, _iMMT],
|
|
740
|
-
[0, 0, () => ImageIdentifier
|
|
761
|
+
[0, 0, () => ImageIdentifier$, 0, 0],
|
|
741
762
|
];
|
|
742
|
-
var ImageAlreadyExistsException = [-3, n0, _IAEE, { [_e]: _c }, [_m], [0]];
|
|
743
|
-
schema.TypeRegistry.for(n0).registerError(ImageAlreadyExistsException
|
|
744
|
-
var ImageDetail = [
|
|
763
|
+
var ImageAlreadyExistsException$ = [-3, n0, _IAEE, { [_e]: _c }, [_m], [0]];
|
|
764
|
+
schema.TypeRegistry.for(n0).registerError(ImageAlreadyExistsException$, ImageAlreadyExistsException);
|
|
765
|
+
var ImageDetail$ = [
|
|
745
766
|
3,
|
|
746
767
|
n0,
|
|
747
768
|
_ID,
|
|
@@ -749,27 +770,27 @@ var ImageDetail = [
|
|
|
749
770
|
[_rI, _rN, _iDm, _iT, _iSIB, _iPA, _iMMT, _aMT],
|
|
750
771
|
[0, 0, 0, 64 | 0, 1, 4, 0, 0],
|
|
751
772
|
];
|
|
752
|
-
var ImageDigestDoesNotMatchException = [-3, n0, _IDDNME, { [_e]: _c }, [_m], [0]];
|
|
753
|
-
schema.TypeRegistry.for(n0).registerError(ImageDigestDoesNotMatchException
|
|
754
|
-
var ImageFailure = [3, n0, _IF, 0, [_iIm, _fC, _fR], [() => ImageIdentifier
|
|
755
|
-
var ImageIdentifier = [3, n0, _II, 0, [_iDm, _iTm], [0, 0]];
|
|
756
|
-
var ImageNotFoundException = [-3, n0, _INFE, { [_e]: _c }, [_m], [0]];
|
|
757
|
-
schema.TypeRegistry.for(n0).registerError(ImageNotFoundException
|
|
758
|
-
var ImageTagAlreadyExistsException = [-3, n0, _ITAEE, { [_e]: _c }, [_m], [0]];
|
|
759
|
-
schema.TypeRegistry.for(n0).registerError(ImageTagAlreadyExistsException
|
|
760
|
-
var ImageTagDetail = [
|
|
773
|
+
var ImageDigestDoesNotMatchException$ = [-3, n0, _IDDNME, { [_e]: _c }, [_m], [0]];
|
|
774
|
+
schema.TypeRegistry.for(n0).registerError(ImageDigestDoesNotMatchException$, ImageDigestDoesNotMatchException);
|
|
775
|
+
var ImageFailure$ = [3, n0, _IF, 0, [_iIm, _fC, _fR], [() => ImageIdentifier$, 0, 0]];
|
|
776
|
+
var ImageIdentifier$ = [3, n0, _II, 0, [_iDm, _iTm], [0, 0]];
|
|
777
|
+
var ImageNotFoundException$ = [-3, n0, _INFE, { [_e]: _c }, [_m], [0]];
|
|
778
|
+
schema.TypeRegistry.for(n0).registerError(ImageNotFoundException$, ImageNotFoundException);
|
|
779
|
+
var ImageTagAlreadyExistsException$ = [-3, n0, _ITAEE, { [_e]: _c }, [_m], [0]];
|
|
780
|
+
schema.TypeRegistry.for(n0).registerError(ImageTagAlreadyExistsException$, ImageTagAlreadyExistsException);
|
|
781
|
+
var ImageTagDetail$ = [
|
|
761
782
|
3,
|
|
762
783
|
n0,
|
|
763
784
|
_ITD,
|
|
764
785
|
0,
|
|
765
786
|
[_iTm, _cA, _iDma],
|
|
766
|
-
[0, 4, () => ReferencedImageDetail],
|
|
787
|
+
[0, 4, () => ReferencedImageDetail$],
|
|
767
788
|
];
|
|
768
|
-
var InitiateLayerUploadRequest = [3, n0, _ILUR, 0, [_rI, _rN], [0, 0]];
|
|
769
|
-
var InitiateLayerUploadResponse = [3, n0, _ILURn, 0, [_uI, _pS], [0, 1]];
|
|
770
|
-
var InvalidLayerException = [-3, n0, _ILE, { [_e]: _c }, [_m], [0]];
|
|
771
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerException
|
|
772
|
-
var InvalidLayerPartException = [
|
|
789
|
+
var InitiateLayerUploadRequest$ = [3, n0, _ILUR, 0, [_rI, _rN], [0, 0]];
|
|
790
|
+
var InitiateLayerUploadResponse$ = [3, n0, _ILURn, 0, [_uI, _pS], [0, 1]];
|
|
791
|
+
var InvalidLayerException$ = [-3, n0, _ILE, { [_e]: _c }, [_m], [0]];
|
|
792
|
+
schema.TypeRegistry.for(n0).registerError(InvalidLayerException$, InvalidLayerException);
|
|
793
|
+
var InvalidLayerPartException$ = [
|
|
773
794
|
-3,
|
|
774
795
|
n0,
|
|
775
796
|
_ILPE,
|
|
@@ -777,24 +798,24 @@ var InvalidLayerPartException = [
|
|
|
777
798
|
[_rI, _rN, _uI, _lVBR, _m],
|
|
778
799
|
[0, 0, 0, 1, 0],
|
|
779
800
|
];
|
|
780
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerPartException
|
|
781
|
-
var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
|
|
782
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException
|
|
783
|
-
var InvalidTagParameterException = [-3, n0, _ITPE, { [_e]: _c }, [_m], [0]];
|
|
784
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTagParameterException
|
|
785
|
-
var Layer = [3, n0, _L, 0, [_lDa, _lA, _lS, _mT], [0, 0, 1, 0]];
|
|
786
|
-
var LayerAlreadyExistsException = [-3, n0, _LAEE, { [_e]: _c }, [_m], [0]];
|
|
787
|
-
schema.TypeRegistry.for(n0).registerError(LayerAlreadyExistsException
|
|
788
|
-
var LayerFailure = [3, n0, _LF, 0, [_lDa, _fC, _fR], [0, 0, 0]];
|
|
789
|
-
var LayerPartTooSmallException = [-3, n0, _LPTSE, { [_e]: _c }, [_m], [0]];
|
|
790
|
-
schema.TypeRegistry.for(n0).registerError(LayerPartTooSmallException
|
|
791
|
-
var LayersNotFoundException = [-3, n0, _LNFE, { [_e]: _c }, [_m], [0]];
|
|
792
|
-
schema.TypeRegistry.for(n0).registerError(LayersNotFoundException
|
|
793
|
-
var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
794
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
795
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
796
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
797
|
-
var PutImageRequest = [
|
|
801
|
+
schema.TypeRegistry.for(n0).registerError(InvalidLayerPartException$, InvalidLayerPartException);
|
|
802
|
+
var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
|
|
803
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
804
|
+
var InvalidTagParameterException$ = [-3, n0, _ITPE, { [_e]: _c }, [_m], [0]];
|
|
805
|
+
schema.TypeRegistry.for(n0).registerError(InvalidTagParameterException$, InvalidTagParameterException);
|
|
806
|
+
var Layer$ = [3, n0, _L, 0, [_lDa, _lA, _lS, _mT], [0, 0, 1, 0]];
|
|
807
|
+
var LayerAlreadyExistsException$ = [-3, n0, _LAEE, { [_e]: _c }, [_m], [0]];
|
|
808
|
+
schema.TypeRegistry.for(n0).registerError(LayerAlreadyExistsException$, LayerAlreadyExistsException);
|
|
809
|
+
var LayerFailure$ = [3, n0, _LF, 0, [_lDa, _fC, _fR], [0, 0, 0]];
|
|
810
|
+
var LayerPartTooSmallException$ = [-3, n0, _LPTSE, { [_e]: _c }, [_m], [0]];
|
|
811
|
+
schema.TypeRegistry.for(n0).registerError(LayerPartTooSmallException$, LayerPartTooSmallException);
|
|
812
|
+
var LayersNotFoundException$ = [-3, n0, _LNFE, { [_e]: _c }, [_m], [0]];
|
|
813
|
+
schema.TypeRegistry.for(n0).registerError(LayersNotFoundException$, LayersNotFoundException);
|
|
814
|
+
var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
815
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
816
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
817
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
818
|
+
var PutImageRequest$ = [
|
|
798
819
|
3,
|
|
799
820
|
n0,
|
|
800
821
|
_PIR,
|
|
@@ -802,33 +823,33 @@ var PutImageRequest = [
|
|
|
802
823
|
[_rI, _rN, _iM, _iMMT, _iTm, _iDm],
|
|
803
824
|
[0, 0, 0, 0, 0, 0],
|
|
804
825
|
];
|
|
805
|
-
var PutImageResponse = [3, n0, _PIRu, 0, [_i], [() => Image]];
|
|
806
|
-
var PutRegistryCatalogDataRequest = [3, n0, _PRCDR, 0, [_dN], [0]];
|
|
807
|
-
var PutRegistryCatalogDataResponse = [
|
|
826
|
+
var PutImageResponse$ = [3, n0, _PIRu, 0, [_i], [() => Image$]];
|
|
827
|
+
var PutRegistryCatalogDataRequest$ = [3, n0, _PRCDR, 0, [_dN], [0]];
|
|
828
|
+
var PutRegistryCatalogDataResponse$ = [
|
|
808
829
|
3,
|
|
809
830
|
n0,
|
|
810
831
|
_PRCDRu,
|
|
811
832
|
0,
|
|
812
833
|
[_rCD],
|
|
813
|
-
[() => RegistryCatalogData],
|
|
834
|
+
[() => RegistryCatalogData$],
|
|
814
835
|
];
|
|
815
|
-
var PutRepositoryCatalogDataRequest = [
|
|
836
|
+
var PutRepositoryCatalogDataRequest$ = [
|
|
816
837
|
3,
|
|
817
838
|
n0,
|
|
818
839
|
_PRCDRut,
|
|
819
840
|
0,
|
|
820
841
|
[_rI, _rN, _cD],
|
|
821
|
-
[0, 0, () => RepositoryCatalogDataInput],
|
|
842
|
+
[0, 0, () => RepositoryCatalogDataInput$],
|
|
822
843
|
];
|
|
823
|
-
var PutRepositoryCatalogDataResponse = [
|
|
844
|
+
var PutRepositoryCatalogDataResponse$ = [
|
|
824
845
|
3,
|
|
825
846
|
n0,
|
|
826
847
|
_PRCDRute,
|
|
827
848
|
0,
|
|
828
849
|
[_cD],
|
|
829
|
-
[() => RepositoryCatalogData],
|
|
850
|
+
[() => RepositoryCatalogData$],
|
|
830
851
|
];
|
|
831
|
-
var ReferencedImageDetail = [
|
|
852
|
+
var ReferencedImageDetail$ = [
|
|
832
853
|
3,
|
|
833
854
|
n0,
|
|
834
855
|
_RID,
|
|
@@ -836,9 +857,9 @@ var ReferencedImageDetail = [
|
|
|
836
857
|
[_iDm, _iSIB, _iPA, _iMMT, _aMT],
|
|
837
858
|
[0, 1, 4, 0, 0],
|
|
838
859
|
];
|
|
839
|
-
var ReferencedImagesNotFoundException = [-3, n0, _RINFE, { [_e]: _c }, [_m], [0]];
|
|
840
|
-
schema.TypeRegistry.for(n0).registerError(ReferencedImagesNotFoundException
|
|
841
|
-
var Registry = [
|
|
860
|
+
var ReferencedImagesNotFoundException$ = [-3, n0, _RINFE, { [_e]: _c }, [_m], [0]];
|
|
861
|
+
schema.TypeRegistry.for(n0).registerError(ReferencedImagesNotFoundException$, ReferencedImagesNotFoundException);
|
|
862
|
+
var Registry$ = [
|
|
842
863
|
3,
|
|
843
864
|
n0,
|
|
844
865
|
_R,
|
|
@@ -846,14 +867,14 @@ var Registry = [
|
|
|
846
867
|
[_rI, _rAe, _rU, _v, _a],
|
|
847
868
|
[0, 0, 0, 2, () => RegistryAliasList],
|
|
848
869
|
];
|
|
849
|
-
var RegistryAlias = [3, n0, _RA, 0, [_n, _s, _pRA, _dRA], [0, 0, 2, 2]];
|
|
850
|
-
var RegistryCatalogData = [3, n0, _RCD, 0, [_dN], [0]];
|
|
851
|
-
var RegistryNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
852
|
-
schema.TypeRegistry.for(n0).registerError(RegistryNotFoundException
|
|
853
|
-
var Repository = [3, n0, _Re, 0, [_rAep, _rI, _rN, _rUe, _cA], [0, 0, 0, 0, 4]];
|
|
854
|
-
var RepositoryAlreadyExistsException = [-3, n0, _RAEE, { [_e]: _c }, [_m], [0]];
|
|
855
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryAlreadyExistsException
|
|
856
|
-
var RepositoryCatalogData = [
|
|
870
|
+
var RegistryAlias$ = [3, n0, _RA, 0, [_n, _s, _pRA, _dRA], [0, 0, 2, 2]];
|
|
871
|
+
var RegistryCatalogData$ = [3, n0, _RCD, 0, [_dN], [0]];
|
|
872
|
+
var RegistryNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
873
|
+
schema.TypeRegistry.for(n0).registerError(RegistryNotFoundException$, RegistryNotFoundException);
|
|
874
|
+
var Repository$ = [3, n0, _Re, 0, [_rAep, _rI, _rN, _rUe, _cA], [0, 0, 0, 0, 4]];
|
|
875
|
+
var RepositoryAlreadyExistsException$ = [-3, n0, _RAEE, { [_e]: _c }, [_m], [0]];
|
|
876
|
+
schema.TypeRegistry.for(n0).registerError(RepositoryAlreadyExistsException$, RepositoryAlreadyExistsException);
|
|
877
|
+
var RepositoryCatalogData$ = [
|
|
857
878
|
3,
|
|
858
879
|
n0,
|
|
859
880
|
_RCDe,
|
|
@@ -861,7 +882,7 @@ var RepositoryCatalogData = [
|
|
|
861
882
|
[_d, _ar, _oS, _lU, _aTb, _uT, _mC],
|
|
862
883
|
[0, 64 | 0, 64 | 0, 0, 0, 0, 2],
|
|
863
884
|
];
|
|
864
|
-
var RepositoryCatalogDataInput = [
|
|
885
|
+
var RepositoryCatalogDataInput$ = [
|
|
865
886
|
3,
|
|
866
887
|
n0,
|
|
867
888
|
_RCDI,
|
|
@@ -869,28 +890,28 @@ var RepositoryCatalogDataInput = [
|
|
|
869
890
|
[_d, _ar, _oS, _lIB, _aTb, _uT],
|
|
870
891
|
[0, 64 | 0, 64 | 0, 21, 0, 0],
|
|
871
892
|
];
|
|
872
|
-
var RepositoryCatalogDataNotFoundException = [-3, n0, _RCDNFE, { [_e]: _c }, [_m], [0]];
|
|
873
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryCatalogDataNotFoundException
|
|
874
|
-
var RepositoryNotEmptyException = [-3, n0, _RNEE, { [_e]: _c }, [_m], [0]];
|
|
875
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotEmptyException
|
|
876
|
-
var RepositoryNotFoundException = [-3, n0, _RNFEe, { [_e]: _c }, [_m], [0]];
|
|
877
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotFoundException
|
|
878
|
-
var RepositoryPolicyNotFoundException = [-3, n0, _RPNFE, { [_e]: _c }, [_m], [0]];
|
|
879
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryPolicyNotFoundException
|
|
880
|
-
var ServerException = [-3, n0, _SE, { [_e]: _se }, [_m], [0]];
|
|
881
|
-
schema.TypeRegistry.for(n0).registerError(ServerException
|
|
882
|
-
var SetRepositoryPolicyRequest = [3, n0, _SRPR, 0, [_rI, _rN, _pT, _fo], [0, 0, 0, 2]];
|
|
883
|
-
var SetRepositoryPolicyResponse = [3, n0, _SRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
884
|
-
var Tag = [3, n0, _T, 0, [_K, _V], [0, 0]];
|
|
885
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, () => TagList]];
|
|
886
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
887
|
-
var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
|
|
888
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
889
|
-
var UnsupportedCommandException = [-3, n0, _UCE, { [_e]: _c }, [_m], [0]];
|
|
890
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedCommandException
|
|
891
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
|
|
892
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
893
|
-
var UploadLayerPartRequest = [
|
|
893
|
+
var RepositoryCatalogDataNotFoundException$ = [-3, n0, _RCDNFE, { [_e]: _c }, [_m], [0]];
|
|
894
|
+
schema.TypeRegistry.for(n0).registerError(RepositoryCatalogDataNotFoundException$, RepositoryCatalogDataNotFoundException);
|
|
895
|
+
var RepositoryNotEmptyException$ = [-3, n0, _RNEE, { [_e]: _c }, [_m], [0]];
|
|
896
|
+
schema.TypeRegistry.for(n0).registerError(RepositoryNotEmptyException$, RepositoryNotEmptyException);
|
|
897
|
+
var RepositoryNotFoundException$ = [-3, n0, _RNFEe, { [_e]: _c }, [_m], [0]];
|
|
898
|
+
schema.TypeRegistry.for(n0).registerError(RepositoryNotFoundException$, RepositoryNotFoundException);
|
|
899
|
+
var RepositoryPolicyNotFoundException$ = [-3, n0, _RPNFE, { [_e]: _c }, [_m], [0]];
|
|
900
|
+
schema.TypeRegistry.for(n0).registerError(RepositoryPolicyNotFoundException$, RepositoryPolicyNotFoundException);
|
|
901
|
+
var ServerException$ = [-3, n0, _SE, { [_e]: _se }, [_m], [0]];
|
|
902
|
+
schema.TypeRegistry.for(n0).registerError(ServerException$, ServerException);
|
|
903
|
+
var SetRepositoryPolicyRequest$ = [3, n0, _SRPR, 0, [_rI, _rN, _pT, _fo], [0, 0, 0, 2]];
|
|
904
|
+
var SetRepositoryPolicyResponse$ = [3, n0, _SRPRe, 0, [_rI, _rN, _pT], [0, 0, 0]];
|
|
905
|
+
var Tag$ = [3, n0, _T, 0, [_K, _V], [0, 0]];
|
|
906
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [0, () => TagList]];
|
|
907
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
908
|
+
var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
|
|
909
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
910
|
+
var UnsupportedCommandException$ = [-3, n0, _UCE, { [_e]: _c }, [_m], [0]];
|
|
911
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedCommandException$, UnsupportedCommandException);
|
|
912
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
|
|
913
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
914
|
+
var UploadLayerPartRequest$ = [
|
|
894
915
|
3,
|
|
895
916
|
n0,
|
|
896
917
|
_ULPR,
|
|
@@ -898,190 +919,190 @@ var UploadLayerPartRequest = [
|
|
|
898
919
|
[_rI, _rN, _uI, _pFB, _pLB, _lPB],
|
|
899
920
|
[0, 0, 0, 1, 1, 21],
|
|
900
921
|
];
|
|
901
|
-
var UploadLayerPartResponse = [3, n0, _ULPRp, 0, [_rI, _rN, _uI, _lBR], [0, 0, 0, 1]];
|
|
902
|
-
var UploadNotFoundException = [-3, n0, _UNFE, { [_e]: _c }, [_m], [0]];
|
|
903
|
-
schema.TypeRegistry.for(n0).registerError(UploadNotFoundException
|
|
904
|
-
var ECRPUBLICServiceException = [-3, _sm, "ECRPUBLICServiceException", 0, [], []];
|
|
905
|
-
schema.TypeRegistry.for(_sm).registerError(ECRPUBLICServiceException
|
|
906
|
-
var ImageDetailList = [1, n0, _IDL, 0, () => ImageDetail];
|
|
907
|
-
var ImageFailureList = [1, n0, _IFL, 0, () => ImageFailure];
|
|
908
|
-
var ImageIdentifierList = [1, n0, _IIL, 0, () => ImageIdentifier];
|
|
909
|
-
var ImageTagDetailList = [1, n0, _ITDL, 0, () => ImageTagDetail];
|
|
910
|
-
var LayerFailureList = [1, n0, _LFL, 0, () => LayerFailure];
|
|
911
|
-
var LayerList = [1, n0, _LL, 0, () => Layer];
|
|
912
|
-
var RegistryAliasList = [1, n0, _RAL, 0, () => RegistryAlias];
|
|
913
|
-
var RegistryList = [1, n0, _RL, 0, () => Registry];
|
|
914
|
-
var RepositoryList = [1, n0, _RLe, 0, () => Repository];
|
|
915
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
916
|
-
var BatchCheckLayerAvailability = [
|
|
922
|
+
var UploadLayerPartResponse$ = [3, n0, _ULPRp, 0, [_rI, _rN, _uI, _lBR], [0, 0, 0, 1]];
|
|
923
|
+
var UploadNotFoundException$ = [-3, n0, _UNFE, { [_e]: _c }, [_m], [0]];
|
|
924
|
+
schema.TypeRegistry.for(n0).registerError(UploadNotFoundException$, UploadNotFoundException);
|
|
925
|
+
var ECRPUBLICServiceException$ = [-3, _sm, "ECRPUBLICServiceException", 0, [], []];
|
|
926
|
+
schema.TypeRegistry.for(_sm).registerError(ECRPUBLICServiceException$, ECRPUBLICServiceException);
|
|
927
|
+
var ImageDetailList = [1, n0, _IDL, 0, () => ImageDetail$];
|
|
928
|
+
var ImageFailureList = [1, n0, _IFL, 0, () => ImageFailure$];
|
|
929
|
+
var ImageIdentifierList = [1, n0, _IIL, 0, () => ImageIdentifier$];
|
|
930
|
+
var ImageTagDetailList = [1, n0, _ITDL, 0, () => ImageTagDetail$];
|
|
931
|
+
var LayerFailureList = [1, n0, _LFL, 0, () => LayerFailure$];
|
|
932
|
+
var LayerList = [1, n0, _LL, 0, () => Layer$];
|
|
933
|
+
var RegistryAliasList = [1, n0, _RAL, 0, () => RegistryAlias$];
|
|
934
|
+
var RegistryList = [1, n0, _RL, 0, () => Registry$];
|
|
935
|
+
var RepositoryList = [1, n0, _RLe, 0, () => Repository$];
|
|
936
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
937
|
+
var BatchCheckLayerAvailability$ = [
|
|
917
938
|
9,
|
|
918
939
|
n0,
|
|
919
940
|
_BCLA,
|
|
920
941
|
0,
|
|
921
|
-
() => BatchCheckLayerAvailabilityRequest
|
|
922
|
-
() => BatchCheckLayerAvailabilityResponse
|
|
942
|
+
() => BatchCheckLayerAvailabilityRequest$,
|
|
943
|
+
() => BatchCheckLayerAvailabilityResponse$,
|
|
923
944
|
];
|
|
924
|
-
var BatchDeleteImage = [
|
|
945
|
+
var BatchDeleteImage$ = [
|
|
925
946
|
9,
|
|
926
947
|
n0,
|
|
927
948
|
_BDI,
|
|
928
949
|
0,
|
|
929
|
-
() => BatchDeleteImageRequest
|
|
930
|
-
() => BatchDeleteImageResponse
|
|
950
|
+
() => BatchDeleteImageRequest$,
|
|
951
|
+
() => BatchDeleteImageResponse$,
|
|
931
952
|
];
|
|
932
|
-
var CompleteLayerUpload = [
|
|
953
|
+
var CompleteLayerUpload$ = [
|
|
933
954
|
9,
|
|
934
955
|
n0,
|
|
935
956
|
_CLU,
|
|
936
957
|
0,
|
|
937
|
-
() => CompleteLayerUploadRequest
|
|
938
|
-
() => CompleteLayerUploadResponse
|
|
958
|
+
() => CompleteLayerUploadRequest$,
|
|
959
|
+
() => CompleteLayerUploadResponse$,
|
|
939
960
|
];
|
|
940
|
-
var CreateRepository = [
|
|
961
|
+
var CreateRepository$ = [
|
|
941
962
|
9,
|
|
942
963
|
n0,
|
|
943
964
|
_CR,
|
|
944
965
|
0,
|
|
945
|
-
() => CreateRepositoryRequest
|
|
946
|
-
() => CreateRepositoryResponse
|
|
966
|
+
() => CreateRepositoryRequest$,
|
|
967
|
+
() => CreateRepositoryResponse$,
|
|
947
968
|
];
|
|
948
|
-
var DeleteRepository = [
|
|
969
|
+
var DeleteRepository$ = [
|
|
949
970
|
9,
|
|
950
971
|
n0,
|
|
951
972
|
_DR,
|
|
952
973
|
0,
|
|
953
|
-
() => DeleteRepositoryRequest
|
|
954
|
-
() => DeleteRepositoryResponse
|
|
974
|
+
() => DeleteRepositoryRequest$,
|
|
975
|
+
() => DeleteRepositoryResponse$,
|
|
955
976
|
];
|
|
956
|
-
var DeleteRepositoryPolicy = [
|
|
977
|
+
var DeleteRepositoryPolicy$ = [
|
|
957
978
|
9,
|
|
958
979
|
n0,
|
|
959
980
|
_DRP,
|
|
960
981
|
0,
|
|
961
|
-
() => DeleteRepositoryPolicyRequest
|
|
962
|
-
() => DeleteRepositoryPolicyResponse
|
|
982
|
+
() => DeleteRepositoryPolicyRequest$,
|
|
983
|
+
() => DeleteRepositoryPolicyResponse$,
|
|
963
984
|
];
|
|
964
|
-
var DescribeImages = [
|
|
985
|
+
var DescribeImages$ = [
|
|
965
986
|
9,
|
|
966
987
|
n0,
|
|
967
988
|
_DI,
|
|
968
989
|
0,
|
|
969
|
-
() => DescribeImagesRequest
|
|
970
|
-
() => DescribeImagesResponse
|
|
990
|
+
() => DescribeImagesRequest$,
|
|
991
|
+
() => DescribeImagesResponse$,
|
|
971
992
|
];
|
|
972
|
-
var DescribeImageTags = [
|
|
993
|
+
var DescribeImageTags$ = [
|
|
973
994
|
9,
|
|
974
995
|
n0,
|
|
975
996
|
_DIT,
|
|
976
997
|
0,
|
|
977
|
-
() => DescribeImageTagsRequest
|
|
978
|
-
() => DescribeImageTagsResponse
|
|
998
|
+
() => DescribeImageTagsRequest$,
|
|
999
|
+
() => DescribeImageTagsResponse$,
|
|
979
1000
|
];
|
|
980
|
-
var DescribeRegistries = [
|
|
1001
|
+
var DescribeRegistries$ = [
|
|
981
1002
|
9,
|
|
982
1003
|
n0,
|
|
983
1004
|
_DRe,
|
|
984
1005
|
0,
|
|
985
|
-
() => DescribeRegistriesRequest
|
|
986
|
-
() => DescribeRegistriesResponse
|
|
1006
|
+
() => DescribeRegistriesRequest$,
|
|
1007
|
+
() => DescribeRegistriesResponse$,
|
|
987
1008
|
];
|
|
988
|
-
var DescribeRepositories = [
|
|
1009
|
+
var DescribeRepositories$ = [
|
|
989
1010
|
9,
|
|
990
1011
|
n0,
|
|
991
1012
|
_DRes,
|
|
992
1013
|
0,
|
|
993
|
-
() => DescribeRepositoriesRequest
|
|
994
|
-
() => DescribeRepositoriesResponse
|
|
1014
|
+
() => DescribeRepositoriesRequest$,
|
|
1015
|
+
() => DescribeRepositoriesResponse$,
|
|
995
1016
|
];
|
|
996
|
-
var GetAuthorizationToken = [
|
|
1017
|
+
var GetAuthorizationToken$ = [
|
|
997
1018
|
9,
|
|
998
1019
|
n0,
|
|
999
1020
|
_GAT,
|
|
1000
1021
|
0,
|
|
1001
|
-
() => GetAuthorizationTokenRequest
|
|
1002
|
-
() => GetAuthorizationTokenResponse
|
|
1022
|
+
() => GetAuthorizationTokenRequest$,
|
|
1023
|
+
() => GetAuthorizationTokenResponse$,
|
|
1003
1024
|
];
|
|
1004
|
-
var GetRegistryCatalogData = [
|
|
1025
|
+
var GetRegistryCatalogData$ = [
|
|
1005
1026
|
9,
|
|
1006
1027
|
n0,
|
|
1007
1028
|
_GRCD,
|
|
1008
1029
|
0,
|
|
1009
|
-
() => GetRegistryCatalogDataRequest
|
|
1010
|
-
() => GetRegistryCatalogDataResponse
|
|
1030
|
+
() => GetRegistryCatalogDataRequest$,
|
|
1031
|
+
() => GetRegistryCatalogDataResponse$,
|
|
1011
1032
|
];
|
|
1012
|
-
var GetRepositoryCatalogData = [
|
|
1033
|
+
var GetRepositoryCatalogData$ = [
|
|
1013
1034
|
9,
|
|
1014
1035
|
n0,
|
|
1015
1036
|
_GRCDe,
|
|
1016
1037
|
0,
|
|
1017
|
-
() => GetRepositoryCatalogDataRequest
|
|
1018
|
-
() => GetRepositoryCatalogDataResponse
|
|
1038
|
+
() => GetRepositoryCatalogDataRequest$,
|
|
1039
|
+
() => GetRepositoryCatalogDataResponse$,
|
|
1019
1040
|
];
|
|
1020
|
-
var GetRepositoryPolicy = [
|
|
1041
|
+
var GetRepositoryPolicy$ = [
|
|
1021
1042
|
9,
|
|
1022
1043
|
n0,
|
|
1023
1044
|
_GRP,
|
|
1024
1045
|
0,
|
|
1025
|
-
() => GetRepositoryPolicyRequest
|
|
1026
|
-
() => GetRepositoryPolicyResponse
|
|
1046
|
+
() => GetRepositoryPolicyRequest$,
|
|
1047
|
+
() => GetRepositoryPolicyResponse$,
|
|
1027
1048
|
];
|
|
1028
|
-
var InitiateLayerUpload = [
|
|
1049
|
+
var InitiateLayerUpload$ = [
|
|
1029
1050
|
9,
|
|
1030
1051
|
n0,
|
|
1031
1052
|
_ILU,
|
|
1032
1053
|
0,
|
|
1033
|
-
() => InitiateLayerUploadRequest
|
|
1034
|
-
() => InitiateLayerUploadResponse
|
|
1054
|
+
() => InitiateLayerUploadRequest$,
|
|
1055
|
+
() => InitiateLayerUploadResponse$,
|
|
1035
1056
|
];
|
|
1036
|
-
var ListTagsForResource = [
|
|
1057
|
+
var ListTagsForResource$ = [
|
|
1037
1058
|
9,
|
|
1038
1059
|
n0,
|
|
1039
1060
|
_LTFR,
|
|
1040
1061
|
0,
|
|
1041
|
-
() => ListTagsForResourceRequest
|
|
1042
|
-
() => ListTagsForResourceResponse
|
|
1062
|
+
() => ListTagsForResourceRequest$,
|
|
1063
|
+
() => ListTagsForResourceResponse$,
|
|
1043
1064
|
];
|
|
1044
|
-
var PutImage = [9, n0, _PI, 0, () => PutImageRequest
|
|
1045
|
-
var PutRegistryCatalogData = [
|
|
1065
|
+
var PutImage$ = [9, n0, _PI, 0, () => PutImageRequest$, () => PutImageResponse$];
|
|
1066
|
+
var PutRegistryCatalogData$ = [
|
|
1046
1067
|
9,
|
|
1047
1068
|
n0,
|
|
1048
1069
|
_PRCD,
|
|
1049
1070
|
0,
|
|
1050
|
-
() => PutRegistryCatalogDataRequest
|
|
1051
|
-
() => PutRegistryCatalogDataResponse
|
|
1071
|
+
() => PutRegistryCatalogDataRequest$,
|
|
1072
|
+
() => PutRegistryCatalogDataResponse$,
|
|
1052
1073
|
];
|
|
1053
|
-
var PutRepositoryCatalogData = [
|
|
1074
|
+
var PutRepositoryCatalogData$ = [
|
|
1054
1075
|
9,
|
|
1055
1076
|
n0,
|
|
1056
1077
|
_PRCDu,
|
|
1057
1078
|
0,
|
|
1058
|
-
() => PutRepositoryCatalogDataRequest
|
|
1059
|
-
() => PutRepositoryCatalogDataResponse
|
|
1079
|
+
() => PutRepositoryCatalogDataRequest$,
|
|
1080
|
+
() => PutRepositoryCatalogDataResponse$,
|
|
1060
1081
|
];
|
|
1061
|
-
var SetRepositoryPolicy = [
|
|
1082
|
+
var SetRepositoryPolicy$ = [
|
|
1062
1083
|
9,
|
|
1063
1084
|
n0,
|
|
1064
1085
|
_SRP,
|
|
1065
1086
|
0,
|
|
1066
|
-
() => SetRepositoryPolicyRequest
|
|
1067
|
-
() => SetRepositoryPolicyResponse
|
|
1087
|
+
() => SetRepositoryPolicyRequest$,
|
|
1088
|
+
() => SetRepositoryPolicyResponse$,
|
|
1068
1089
|
];
|
|
1069
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest
|
|
1070
|
-
var UntagResource = [
|
|
1090
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
|
|
1091
|
+
var UntagResource$ = [
|
|
1071
1092
|
9,
|
|
1072
1093
|
n0,
|
|
1073
1094
|
_UR,
|
|
1074
1095
|
0,
|
|
1075
|
-
() => UntagResourceRequest
|
|
1076
|
-
() => UntagResourceResponse
|
|
1096
|
+
() => UntagResourceRequest$,
|
|
1097
|
+
() => UntagResourceResponse$,
|
|
1077
1098
|
];
|
|
1078
|
-
var UploadLayerPart = [
|
|
1099
|
+
var UploadLayerPart$ = [
|
|
1079
1100
|
9,
|
|
1080
1101
|
n0,
|
|
1081
1102
|
_ULP,
|
|
1082
1103
|
0,
|
|
1083
|
-
() => UploadLayerPartRequest
|
|
1084
|
-
() => UploadLayerPartResponse
|
|
1104
|
+
() => UploadLayerPartRequest$,
|
|
1105
|
+
() => UploadLayerPartResponse$,
|
|
1085
1106
|
];
|
|
1086
1107
|
|
|
1087
1108
|
class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
@@ -1092,7 +1113,7 @@ class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
|
1092
1113
|
})
|
|
1093
1114
|
.s("SpencerFrontendService", "BatchCheckLayerAvailability", {})
|
|
1094
1115
|
.n("ECRPUBLICClient", "BatchCheckLayerAvailabilityCommand")
|
|
1095
|
-
.sc(BatchCheckLayerAvailability)
|
|
1116
|
+
.sc(BatchCheckLayerAvailability$)
|
|
1096
1117
|
.build() {
|
|
1097
1118
|
}
|
|
1098
1119
|
|
|
@@ -1104,7 +1125,7 @@ class BatchDeleteImageCommand extends smithyClient.Command
|
|
|
1104
1125
|
})
|
|
1105
1126
|
.s("SpencerFrontendService", "BatchDeleteImage", {})
|
|
1106
1127
|
.n("ECRPUBLICClient", "BatchDeleteImageCommand")
|
|
1107
|
-
.sc(BatchDeleteImage)
|
|
1128
|
+
.sc(BatchDeleteImage$)
|
|
1108
1129
|
.build() {
|
|
1109
1130
|
}
|
|
1110
1131
|
|
|
@@ -1116,7 +1137,7 @@ class CompleteLayerUploadCommand extends smithyClient.Command
|
|
|
1116
1137
|
})
|
|
1117
1138
|
.s("SpencerFrontendService", "CompleteLayerUpload", {})
|
|
1118
1139
|
.n("ECRPUBLICClient", "CompleteLayerUploadCommand")
|
|
1119
|
-
.sc(CompleteLayerUpload)
|
|
1140
|
+
.sc(CompleteLayerUpload$)
|
|
1120
1141
|
.build() {
|
|
1121
1142
|
}
|
|
1122
1143
|
|
|
@@ -1128,7 +1149,7 @@ class CreateRepositoryCommand extends smithyClient.Command
|
|
|
1128
1149
|
})
|
|
1129
1150
|
.s("SpencerFrontendService", "CreateRepository", {})
|
|
1130
1151
|
.n("ECRPUBLICClient", "CreateRepositoryCommand")
|
|
1131
|
-
.sc(CreateRepository)
|
|
1152
|
+
.sc(CreateRepository$)
|
|
1132
1153
|
.build() {
|
|
1133
1154
|
}
|
|
1134
1155
|
|
|
@@ -1140,7 +1161,7 @@ class DeleteRepositoryCommand extends smithyClient.Command
|
|
|
1140
1161
|
})
|
|
1141
1162
|
.s("SpencerFrontendService", "DeleteRepository", {})
|
|
1142
1163
|
.n("ECRPUBLICClient", "DeleteRepositoryCommand")
|
|
1143
|
-
.sc(DeleteRepository)
|
|
1164
|
+
.sc(DeleteRepository$)
|
|
1144
1165
|
.build() {
|
|
1145
1166
|
}
|
|
1146
1167
|
|
|
@@ -1152,7 +1173,7 @@ class DeleteRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1152
1173
|
})
|
|
1153
1174
|
.s("SpencerFrontendService", "DeleteRepositoryPolicy", {})
|
|
1154
1175
|
.n("ECRPUBLICClient", "DeleteRepositoryPolicyCommand")
|
|
1155
|
-
.sc(DeleteRepositoryPolicy)
|
|
1176
|
+
.sc(DeleteRepositoryPolicy$)
|
|
1156
1177
|
.build() {
|
|
1157
1178
|
}
|
|
1158
1179
|
|
|
@@ -1164,7 +1185,7 @@ class DescribeImagesCommand extends smithyClient.Command
|
|
|
1164
1185
|
})
|
|
1165
1186
|
.s("SpencerFrontendService", "DescribeImages", {})
|
|
1166
1187
|
.n("ECRPUBLICClient", "DescribeImagesCommand")
|
|
1167
|
-
.sc(DescribeImages)
|
|
1188
|
+
.sc(DescribeImages$)
|
|
1168
1189
|
.build() {
|
|
1169
1190
|
}
|
|
1170
1191
|
|
|
@@ -1176,7 +1197,7 @@ class DescribeImageTagsCommand extends smithyClient.Command
|
|
|
1176
1197
|
})
|
|
1177
1198
|
.s("SpencerFrontendService", "DescribeImageTags", {})
|
|
1178
1199
|
.n("ECRPUBLICClient", "DescribeImageTagsCommand")
|
|
1179
|
-
.sc(DescribeImageTags)
|
|
1200
|
+
.sc(DescribeImageTags$)
|
|
1180
1201
|
.build() {
|
|
1181
1202
|
}
|
|
1182
1203
|
|
|
@@ -1188,7 +1209,7 @@ class DescribeRegistriesCommand extends smithyClient.Command
|
|
|
1188
1209
|
})
|
|
1189
1210
|
.s("SpencerFrontendService", "DescribeRegistries", {})
|
|
1190
1211
|
.n("ECRPUBLICClient", "DescribeRegistriesCommand")
|
|
1191
|
-
.sc(DescribeRegistries)
|
|
1212
|
+
.sc(DescribeRegistries$)
|
|
1192
1213
|
.build() {
|
|
1193
1214
|
}
|
|
1194
1215
|
|
|
@@ -1200,7 +1221,7 @@ class DescribeRepositoriesCommand extends smithyClient.Command
|
|
|
1200
1221
|
})
|
|
1201
1222
|
.s("SpencerFrontendService", "DescribeRepositories", {})
|
|
1202
1223
|
.n("ECRPUBLICClient", "DescribeRepositoriesCommand")
|
|
1203
|
-
.sc(DescribeRepositories)
|
|
1224
|
+
.sc(DescribeRepositories$)
|
|
1204
1225
|
.build() {
|
|
1205
1226
|
}
|
|
1206
1227
|
|
|
@@ -1212,7 +1233,7 @@ class GetAuthorizationTokenCommand extends smithyClient.Command
|
|
|
1212
1233
|
})
|
|
1213
1234
|
.s("SpencerFrontendService", "GetAuthorizationToken", {})
|
|
1214
1235
|
.n("ECRPUBLICClient", "GetAuthorizationTokenCommand")
|
|
1215
|
-
.sc(GetAuthorizationToken)
|
|
1236
|
+
.sc(GetAuthorizationToken$)
|
|
1216
1237
|
.build() {
|
|
1217
1238
|
}
|
|
1218
1239
|
|
|
@@ -1224,7 +1245,7 @@ class GetRegistryCatalogDataCommand extends smithyClient.Command
|
|
|
1224
1245
|
})
|
|
1225
1246
|
.s("SpencerFrontendService", "GetRegistryCatalogData", {})
|
|
1226
1247
|
.n("ECRPUBLICClient", "GetRegistryCatalogDataCommand")
|
|
1227
|
-
.sc(GetRegistryCatalogData)
|
|
1248
|
+
.sc(GetRegistryCatalogData$)
|
|
1228
1249
|
.build() {
|
|
1229
1250
|
}
|
|
1230
1251
|
|
|
@@ -1236,7 +1257,7 @@ class GetRepositoryCatalogDataCommand extends smithyClient.Command
|
|
|
1236
1257
|
})
|
|
1237
1258
|
.s("SpencerFrontendService", "GetRepositoryCatalogData", {})
|
|
1238
1259
|
.n("ECRPUBLICClient", "GetRepositoryCatalogDataCommand")
|
|
1239
|
-
.sc(GetRepositoryCatalogData)
|
|
1260
|
+
.sc(GetRepositoryCatalogData$)
|
|
1240
1261
|
.build() {
|
|
1241
1262
|
}
|
|
1242
1263
|
|
|
@@ -1248,7 +1269,7 @@ class GetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1248
1269
|
})
|
|
1249
1270
|
.s("SpencerFrontendService", "GetRepositoryPolicy", {})
|
|
1250
1271
|
.n("ECRPUBLICClient", "GetRepositoryPolicyCommand")
|
|
1251
|
-
.sc(GetRepositoryPolicy)
|
|
1272
|
+
.sc(GetRepositoryPolicy$)
|
|
1252
1273
|
.build() {
|
|
1253
1274
|
}
|
|
1254
1275
|
|
|
@@ -1260,7 +1281,7 @@ class InitiateLayerUploadCommand extends smithyClient.Command
|
|
|
1260
1281
|
})
|
|
1261
1282
|
.s("SpencerFrontendService", "InitiateLayerUpload", {})
|
|
1262
1283
|
.n("ECRPUBLICClient", "InitiateLayerUploadCommand")
|
|
1263
|
-
.sc(InitiateLayerUpload)
|
|
1284
|
+
.sc(InitiateLayerUpload$)
|
|
1264
1285
|
.build() {
|
|
1265
1286
|
}
|
|
1266
1287
|
|
|
@@ -1272,7 +1293,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1272
1293
|
})
|
|
1273
1294
|
.s("SpencerFrontendService", "ListTagsForResource", {})
|
|
1274
1295
|
.n("ECRPUBLICClient", "ListTagsForResourceCommand")
|
|
1275
|
-
.sc(ListTagsForResource)
|
|
1296
|
+
.sc(ListTagsForResource$)
|
|
1276
1297
|
.build() {
|
|
1277
1298
|
}
|
|
1278
1299
|
|
|
@@ -1284,7 +1305,7 @@ class PutImageCommand extends smithyClient.Command
|
|
|
1284
1305
|
})
|
|
1285
1306
|
.s("SpencerFrontendService", "PutImage", {})
|
|
1286
1307
|
.n("ECRPUBLICClient", "PutImageCommand")
|
|
1287
|
-
.sc(PutImage)
|
|
1308
|
+
.sc(PutImage$)
|
|
1288
1309
|
.build() {
|
|
1289
1310
|
}
|
|
1290
1311
|
|
|
@@ -1296,7 +1317,7 @@ class PutRegistryCatalogDataCommand extends smithyClient.Command
|
|
|
1296
1317
|
})
|
|
1297
1318
|
.s("SpencerFrontendService", "PutRegistryCatalogData", {})
|
|
1298
1319
|
.n("ECRPUBLICClient", "PutRegistryCatalogDataCommand")
|
|
1299
|
-
.sc(PutRegistryCatalogData)
|
|
1320
|
+
.sc(PutRegistryCatalogData$)
|
|
1300
1321
|
.build() {
|
|
1301
1322
|
}
|
|
1302
1323
|
|
|
@@ -1308,7 +1329,7 @@ class PutRepositoryCatalogDataCommand extends smithyClient.Command
|
|
|
1308
1329
|
})
|
|
1309
1330
|
.s("SpencerFrontendService", "PutRepositoryCatalogData", {})
|
|
1310
1331
|
.n("ECRPUBLICClient", "PutRepositoryCatalogDataCommand")
|
|
1311
|
-
.sc(PutRepositoryCatalogData)
|
|
1332
|
+
.sc(PutRepositoryCatalogData$)
|
|
1312
1333
|
.build() {
|
|
1313
1334
|
}
|
|
1314
1335
|
|
|
@@ -1320,7 +1341,7 @@ class SetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
1320
1341
|
})
|
|
1321
1342
|
.s("SpencerFrontendService", "SetRepositoryPolicy", {})
|
|
1322
1343
|
.n("ECRPUBLICClient", "SetRepositoryPolicyCommand")
|
|
1323
|
-
.sc(SetRepositoryPolicy)
|
|
1344
|
+
.sc(SetRepositoryPolicy$)
|
|
1324
1345
|
.build() {
|
|
1325
1346
|
}
|
|
1326
1347
|
|
|
@@ -1332,7 +1353,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1332
1353
|
})
|
|
1333
1354
|
.s("SpencerFrontendService", "TagResource", {})
|
|
1334
1355
|
.n("ECRPUBLICClient", "TagResourceCommand")
|
|
1335
|
-
.sc(TagResource)
|
|
1356
|
+
.sc(TagResource$)
|
|
1336
1357
|
.build() {
|
|
1337
1358
|
}
|
|
1338
1359
|
|
|
@@ -1344,7 +1365,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1344
1365
|
})
|
|
1345
1366
|
.s("SpencerFrontendService", "UntagResource", {})
|
|
1346
1367
|
.n("ECRPUBLICClient", "UntagResourceCommand")
|
|
1347
|
-
.sc(UntagResource)
|
|
1368
|
+
.sc(UntagResource$)
|
|
1348
1369
|
.build() {
|
|
1349
1370
|
}
|
|
1350
1371
|
|
|
@@ -1356,7 +1377,7 @@ class UploadLayerPartCommand extends smithyClient.Command
|
|
|
1356
1377
|
})
|
|
1357
1378
|
.s("SpencerFrontendService", "UploadLayerPart", {})
|
|
1358
1379
|
.n("ECRPUBLICClient", "UploadLayerPartCommand")
|
|
1359
|
-
.sc(UploadLayerPart)
|
|
1380
|
+
.sc(UploadLayerPart$)
|
|
1360
1381
|
.build() {
|
|
1361
1382
|
}
|
|
1362
1383
|
|
|
@@ -1428,60 +1449,170 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1428
1449
|
enumerable: true,
|
|
1429
1450
|
get: function () { return smithyClient.Client; }
|
|
1430
1451
|
});
|
|
1452
|
+
exports.AuthorizationData$ = AuthorizationData$;
|
|
1453
|
+
exports.BatchCheckLayerAvailability$ = BatchCheckLayerAvailability$;
|
|
1431
1454
|
exports.BatchCheckLayerAvailabilityCommand = BatchCheckLayerAvailabilityCommand;
|
|
1455
|
+
exports.BatchCheckLayerAvailabilityRequest$ = BatchCheckLayerAvailabilityRequest$;
|
|
1456
|
+
exports.BatchCheckLayerAvailabilityResponse$ = BatchCheckLayerAvailabilityResponse$;
|
|
1457
|
+
exports.BatchDeleteImage$ = BatchDeleteImage$;
|
|
1432
1458
|
exports.BatchDeleteImageCommand = BatchDeleteImageCommand;
|
|
1459
|
+
exports.BatchDeleteImageRequest$ = BatchDeleteImageRequest$;
|
|
1460
|
+
exports.BatchDeleteImageResponse$ = BatchDeleteImageResponse$;
|
|
1461
|
+
exports.CompleteLayerUpload$ = CompleteLayerUpload$;
|
|
1433
1462
|
exports.CompleteLayerUploadCommand = CompleteLayerUploadCommand;
|
|
1463
|
+
exports.CompleteLayerUploadRequest$ = CompleteLayerUploadRequest$;
|
|
1464
|
+
exports.CompleteLayerUploadResponse$ = CompleteLayerUploadResponse$;
|
|
1465
|
+
exports.CreateRepository$ = CreateRepository$;
|
|
1434
1466
|
exports.CreateRepositoryCommand = CreateRepositoryCommand;
|
|
1467
|
+
exports.CreateRepositoryRequest$ = CreateRepositoryRequest$;
|
|
1468
|
+
exports.CreateRepositoryResponse$ = CreateRepositoryResponse$;
|
|
1469
|
+
exports.DeleteRepository$ = DeleteRepository$;
|
|
1435
1470
|
exports.DeleteRepositoryCommand = DeleteRepositoryCommand;
|
|
1471
|
+
exports.DeleteRepositoryPolicy$ = DeleteRepositoryPolicy$;
|
|
1436
1472
|
exports.DeleteRepositoryPolicyCommand = DeleteRepositoryPolicyCommand;
|
|
1473
|
+
exports.DeleteRepositoryPolicyRequest$ = DeleteRepositoryPolicyRequest$;
|
|
1474
|
+
exports.DeleteRepositoryPolicyResponse$ = DeleteRepositoryPolicyResponse$;
|
|
1475
|
+
exports.DeleteRepositoryRequest$ = DeleteRepositoryRequest$;
|
|
1476
|
+
exports.DeleteRepositoryResponse$ = DeleteRepositoryResponse$;
|
|
1477
|
+
exports.DescribeImageTags$ = DescribeImageTags$;
|
|
1437
1478
|
exports.DescribeImageTagsCommand = DescribeImageTagsCommand;
|
|
1479
|
+
exports.DescribeImageTagsRequest$ = DescribeImageTagsRequest$;
|
|
1480
|
+
exports.DescribeImageTagsResponse$ = DescribeImageTagsResponse$;
|
|
1481
|
+
exports.DescribeImages$ = DescribeImages$;
|
|
1438
1482
|
exports.DescribeImagesCommand = DescribeImagesCommand;
|
|
1483
|
+
exports.DescribeImagesRequest$ = DescribeImagesRequest$;
|
|
1484
|
+
exports.DescribeImagesResponse$ = DescribeImagesResponse$;
|
|
1485
|
+
exports.DescribeRegistries$ = DescribeRegistries$;
|
|
1439
1486
|
exports.DescribeRegistriesCommand = DescribeRegistriesCommand;
|
|
1487
|
+
exports.DescribeRegistriesRequest$ = DescribeRegistriesRequest$;
|
|
1488
|
+
exports.DescribeRegistriesResponse$ = DescribeRegistriesResponse$;
|
|
1489
|
+
exports.DescribeRepositories$ = DescribeRepositories$;
|
|
1440
1490
|
exports.DescribeRepositoriesCommand = DescribeRepositoriesCommand;
|
|
1491
|
+
exports.DescribeRepositoriesRequest$ = DescribeRepositoriesRequest$;
|
|
1492
|
+
exports.DescribeRepositoriesResponse$ = DescribeRepositoriesResponse$;
|
|
1441
1493
|
exports.ECRPUBLIC = ECRPUBLIC;
|
|
1442
1494
|
exports.ECRPUBLICClient = ECRPUBLICClient;
|
|
1443
|
-
exports.ECRPUBLICServiceException = ECRPUBLICServiceException
|
|
1444
|
-
exports.
|
|
1495
|
+
exports.ECRPUBLICServiceException = ECRPUBLICServiceException;
|
|
1496
|
+
exports.ECRPUBLICServiceException$ = ECRPUBLICServiceException$;
|
|
1497
|
+
exports.EmptyUploadException = EmptyUploadException;
|
|
1498
|
+
exports.EmptyUploadException$ = EmptyUploadException$;
|
|
1499
|
+
exports.GetAuthorizationToken$ = GetAuthorizationToken$;
|
|
1445
1500
|
exports.GetAuthorizationTokenCommand = GetAuthorizationTokenCommand;
|
|
1501
|
+
exports.GetAuthorizationTokenRequest$ = GetAuthorizationTokenRequest$;
|
|
1502
|
+
exports.GetAuthorizationTokenResponse$ = GetAuthorizationTokenResponse$;
|
|
1503
|
+
exports.GetRegistryCatalogData$ = GetRegistryCatalogData$;
|
|
1446
1504
|
exports.GetRegistryCatalogDataCommand = GetRegistryCatalogDataCommand;
|
|
1505
|
+
exports.GetRegistryCatalogDataRequest$ = GetRegistryCatalogDataRequest$;
|
|
1506
|
+
exports.GetRegistryCatalogDataResponse$ = GetRegistryCatalogDataResponse$;
|
|
1507
|
+
exports.GetRepositoryCatalogData$ = GetRepositoryCatalogData$;
|
|
1447
1508
|
exports.GetRepositoryCatalogDataCommand = GetRepositoryCatalogDataCommand;
|
|
1509
|
+
exports.GetRepositoryCatalogDataRequest$ = GetRepositoryCatalogDataRequest$;
|
|
1510
|
+
exports.GetRepositoryCatalogDataResponse$ = GetRepositoryCatalogDataResponse$;
|
|
1511
|
+
exports.GetRepositoryPolicy$ = GetRepositoryPolicy$;
|
|
1448
1512
|
exports.GetRepositoryPolicyCommand = GetRepositoryPolicyCommand;
|
|
1449
|
-
exports.
|
|
1450
|
-
exports.
|
|
1513
|
+
exports.GetRepositoryPolicyRequest$ = GetRepositoryPolicyRequest$;
|
|
1514
|
+
exports.GetRepositoryPolicyResponse$ = GetRepositoryPolicyResponse$;
|
|
1515
|
+
exports.Image$ = Image$;
|
|
1516
|
+
exports.ImageAlreadyExistsException = ImageAlreadyExistsException;
|
|
1517
|
+
exports.ImageAlreadyExistsException$ = ImageAlreadyExistsException$;
|
|
1518
|
+
exports.ImageDetail$ = ImageDetail$;
|
|
1519
|
+
exports.ImageDigestDoesNotMatchException = ImageDigestDoesNotMatchException;
|
|
1520
|
+
exports.ImageDigestDoesNotMatchException$ = ImageDigestDoesNotMatchException$;
|
|
1521
|
+
exports.ImageFailure$ = ImageFailure$;
|
|
1451
1522
|
exports.ImageFailureCode = ImageFailureCode;
|
|
1452
|
-
exports.
|
|
1453
|
-
exports.
|
|
1523
|
+
exports.ImageIdentifier$ = ImageIdentifier$;
|
|
1524
|
+
exports.ImageNotFoundException = ImageNotFoundException;
|
|
1525
|
+
exports.ImageNotFoundException$ = ImageNotFoundException$;
|
|
1526
|
+
exports.ImageTagAlreadyExistsException = ImageTagAlreadyExistsException;
|
|
1527
|
+
exports.ImageTagAlreadyExistsException$ = ImageTagAlreadyExistsException$;
|
|
1528
|
+
exports.ImageTagDetail$ = ImageTagDetail$;
|
|
1529
|
+
exports.InitiateLayerUpload$ = InitiateLayerUpload$;
|
|
1454
1530
|
exports.InitiateLayerUploadCommand = InitiateLayerUploadCommand;
|
|
1455
|
-
exports.
|
|
1456
|
-
exports.
|
|
1457
|
-
exports.
|
|
1458
|
-
exports.
|
|
1459
|
-
exports.
|
|
1531
|
+
exports.InitiateLayerUploadRequest$ = InitiateLayerUploadRequest$;
|
|
1532
|
+
exports.InitiateLayerUploadResponse$ = InitiateLayerUploadResponse$;
|
|
1533
|
+
exports.InvalidLayerException = InvalidLayerException;
|
|
1534
|
+
exports.InvalidLayerException$ = InvalidLayerException$;
|
|
1535
|
+
exports.InvalidLayerPartException = InvalidLayerPartException;
|
|
1536
|
+
exports.InvalidLayerPartException$ = InvalidLayerPartException$;
|
|
1537
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
1538
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1539
|
+
exports.InvalidTagParameterException = InvalidTagParameterException;
|
|
1540
|
+
exports.InvalidTagParameterException$ = InvalidTagParameterException$;
|
|
1541
|
+
exports.Layer$ = Layer$;
|
|
1542
|
+
exports.LayerAlreadyExistsException = LayerAlreadyExistsException;
|
|
1543
|
+
exports.LayerAlreadyExistsException$ = LayerAlreadyExistsException$;
|
|
1460
1544
|
exports.LayerAvailability = LayerAvailability;
|
|
1545
|
+
exports.LayerFailure$ = LayerFailure$;
|
|
1461
1546
|
exports.LayerFailureCode = LayerFailureCode;
|
|
1462
|
-
exports.LayerPartTooSmallException = LayerPartTooSmallException
|
|
1463
|
-
exports.
|
|
1464
|
-
exports.
|
|
1547
|
+
exports.LayerPartTooSmallException = LayerPartTooSmallException;
|
|
1548
|
+
exports.LayerPartTooSmallException$ = LayerPartTooSmallException$;
|
|
1549
|
+
exports.LayersNotFoundException = LayersNotFoundException;
|
|
1550
|
+
exports.LayersNotFoundException$ = LayersNotFoundException$;
|
|
1551
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1552
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1553
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1465
1554
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1555
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1556
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1557
|
+
exports.PutImage$ = PutImage$;
|
|
1466
1558
|
exports.PutImageCommand = PutImageCommand;
|
|
1559
|
+
exports.PutImageRequest$ = PutImageRequest$;
|
|
1560
|
+
exports.PutImageResponse$ = PutImageResponse$;
|
|
1561
|
+
exports.PutRegistryCatalogData$ = PutRegistryCatalogData$;
|
|
1467
1562
|
exports.PutRegistryCatalogDataCommand = PutRegistryCatalogDataCommand;
|
|
1563
|
+
exports.PutRegistryCatalogDataRequest$ = PutRegistryCatalogDataRequest$;
|
|
1564
|
+
exports.PutRegistryCatalogDataResponse$ = PutRegistryCatalogDataResponse$;
|
|
1565
|
+
exports.PutRepositoryCatalogData$ = PutRepositoryCatalogData$;
|
|
1468
1566
|
exports.PutRepositoryCatalogDataCommand = PutRepositoryCatalogDataCommand;
|
|
1469
|
-
exports.
|
|
1567
|
+
exports.PutRepositoryCatalogDataRequest$ = PutRepositoryCatalogDataRequest$;
|
|
1568
|
+
exports.PutRepositoryCatalogDataResponse$ = PutRepositoryCatalogDataResponse$;
|
|
1569
|
+
exports.ReferencedImageDetail$ = ReferencedImageDetail$;
|
|
1570
|
+
exports.ReferencedImagesNotFoundException = ReferencedImagesNotFoundException;
|
|
1571
|
+
exports.ReferencedImagesNotFoundException$ = ReferencedImagesNotFoundException$;
|
|
1572
|
+
exports.Registry$ = Registry$;
|
|
1573
|
+
exports.RegistryAlias$ = RegistryAlias$;
|
|
1470
1574
|
exports.RegistryAliasStatus = RegistryAliasStatus;
|
|
1471
|
-
exports.
|
|
1472
|
-
exports.
|
|
1473
|
-
exports.
|
|
1474
|
-
exports.
|
|
1475
|
-
exports.
|
|
1476
|
-
exports.
|
|
1477
|
-
exports.
|
|
1575
|
+
exports.RegistryCatalogData$ = RegistryCatalogData$;
|
|
1576
|
+
exports.RegistryNotFoundException = RegistryNotFoundException;
|
|
1577
|
+
exports.RegistryNotFoundException$ = RegistryNotFoundException$;
|
|
1578
|
+
exports.Repository$ = Repository$;
|
|
1579
|
+
exports.RepositoryAlreadyExistsException = RepositoryAlreadyExistsException;
|
|
1580
|
+
exports.RepositoryAlreadyExistsException$ = RepositoryAlreadyExistsException$;
|
|
1581
|
+
exports.RepositoryCatalogData$ = RepositoryCatalogData$;
|
|
1582
|
+
exports.RepositoryCatalogDataInput$ = RepositoryCatalogDataInput$;
|
|
1583
|
+
exports.RepositoryCatalogDataNotFoundException = RepositoryCatalogDataNotFoundException;
|
|
1584
|
+
exports.RepositoryCatalogDataNotFoundException$ = RepositoryCatalogDataNotFoundException$;
|
|
1585
|
+
exports.RepositoryNotEmptyException = RepositoryNotEmptyException;
|
|
1586
|
+
exports.RepositoryNotEmptyException$ = RepositoryNotEmptyException$;
|
|
1587
|
+
exports.RepositoryNotFoundException = RepositoryNotFoundException;
|
|
1588
|
+
exports.RepositoryNotFoundException$ = RepositoryNotFoundException$;
|
|
1589
|
+
exports.RepositoryPolicyNotFoundException = RepositoryPolicyNotFoundException;
|
|
1590
|
+
exports.RepositoryPolicyNotFoundException$ = RepositoryPolicyNotFoundException$;
|
|
1591
|
+
exports.ServerException = ServerException;
|
|
1592
|
+
exports.ServerException$ = ServerException$;
|
|
1593
|
+
exports.SetRepositoryPolicy$ = SetRepositoryPolicy$;
|
|
1478
1594
|
exports.SetRepositoryPolicyCommand = SetRepositoryPolicyCommand;
|
|
1595
|
+
exports.SetRepositoryPolicyRequest$ = SetRepositoryPolicyRequest$;
|
|
1596
|
+
exports.SetRepositoryPolicyResponse$ = SetRepositoryPolicyResponse$;
|
|
1597
|
+
exports.Tag$ = Tag$;
|
|
1598
|
+
exports.TagResource$ = TagResource$;
|
|
1479
1599
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1480
|
-
exports.
|
|
1481
|
-
exports.
|
|
1600
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1601
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1602
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1603
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1604
|
+
exports.UnsupportedCommandException = UnsupportedCommandException;
|
|
1605
|
+
exports.UnsupportedCommandException$ = UnsupportedCommandException$;
|
|
1606
|
+
exports.UntagResource$ = UntagResource$;
|
|
1482
1607
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1608
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1609
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1610
|
+
exports.UploadLayerPart$ = UploadLayerPart$;
|
|
1483
1611
|
exports.UploadLayerPartCommand = UploadLayerPartCommand;
|
|
1484
|
-
exports.
|
|
1612
|
+
exports.UploadLayerPartRequest$ = UploadLayerPartRequest$;
|
|
1613
|
+
exports.UploadLayerPartResponse$ = UploadLayerPartResponse$;
|
|
1614
|
+
exports.UploadNotFoundException = UploadNotFoundException;
|
|
1615
|
+
exports.UploadNotFoundException$ = UploadNotFoundException$;
|
|
1485
1616
|
exports.paginateDescribeImageTags = paginateDescribeImageTags;
|
|
1486
1617
|
exports.paginateDescribeImages = paginateDescribeImages;
|
|
1487
1618
|
exports.paginateDescribeRegistries = paginateDescribeRegistries;
|