@aws-sdk/client-ecr 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 +77 -2871
- package/dist-cjs/models/ECRServiceException.js +12 -0
- package/dist-cjs/models/errors.js +612 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1954 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +292 -286
- package/dist-types/schemas/schemas_0.d.ts +54 -47
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +49 -47
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ 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');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var ECRServiceException = require('./models/ECRServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,2495 +114,6 @@ class ECRClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class ECRServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, ECRServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class InvalidParameterException extends ECRServiceException {
|
|
122
|
-
name = "InvalidParameterException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InvalidParameterException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class RepositoryNotFoundException extends ECRServiceException {
|
|
134
|
-
name = "RepositoryNotFoundException";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "RepositoryNotFoundException",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ServerException extends ECRServiceException {
|
|
146
|
-
name = "ServerException";
|
|
147
|
-
$fault = "server";
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "ServerException",
|
|
151
|
-
$fault: "server",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, ServerException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class LimitExceededException extends ECRServiceException {
|
|
158
|
-
name = "LimitExceededException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "LimitExceededException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class UnableToGetUpstreamImageException extends ECRServiceException {
|
|
170
|
-
name = "UnableToGetUpstreamImageException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "UnableToGetUpstreamImageException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, UnableToGetUpstreamImageException.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class ValidationException extends ECRServiceException {
|
|
182
|
-
name = "ValidationException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ValidationException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
class EmptyUploadException extends ECRServiceException {
|
|
194
|
-
name = "EmptyUploadException";
|
|
195
|
-
$fault = "client";
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "EmptyUploadException",
|
|
199
|
-
$fault: "client",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class InvalidLayerException extends ECRServiceException {
|
|
206
|
-
name = "InvalidLayerException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "InvalidLayerException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
class KmsException extends ECRServiceException {
|
|
218
|
-
name = "KmsException";
|
|
219
|
-
$fault = "client";
|
|
220
|
-
kmsError;
|
|
221
|
-
constructor(opts) {
|
|
222
|
-
super({
|
|
223
|
-
name: "KmsException",
|
|
224
|
-
$fault: "client",
|
|
225
|
-
...opts,
|
|
226
|
-
});
|
|
227
|
-
Object.setPrototypeOf(this, KmsException.prototype);
|
|
228
|
-
this.kmsError = opts.kmsError;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
class LayerAlreadyExistsException extends ECRServiceException {
|
|
232
|
-
name = "LayerAlreadyExistsException";
|
|
233
|
-
$fault = "client";
|
|
234
|
-
constructor(opts) {
|
|
235
|
-
super({
|
|
236
|
-
name: "LayerAlreadyExistsException",
|
|
237
|
-
$fault: "client",
|
|
238
|
-
...opts,
|
|
239
|
-
});
|
|
240
|
-
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
class LayerPartTooSmallException extends ECRServiceException {
|
|
244
|
-
name = "LayerPartTooSmallException";
|
|
245
|
-
$fault = "client";
|
|
246
|
-
constructor(opts) {
|
|
247
|
-
super({
|
|
248
|
-
name: "LayerPartTooSmallException",
|
|
249
|
-
$fault: "client",
|
|
250
|
-
...opts,
|
|
251
|
-
});
|
|
252
|
-
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
class UploadNotFoundException extends ECRServiceException {
|
|
256
|
-
name = "UploadNotFoundException";
|
|
257
|
-
$fault = "client";
|
|
258
|
-
constructor(opts) {
|
|
259
|
-
super({
|
|
260
|
-
name: "UploadNotFoundException",
|
|
261
|
-
$fault: "client",
|
|
262
|
-
...opts,
|
|
263
|
-
});
|
|
264
|
-
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
class PullThroughCacheRuleAlreadyExistsException extends ECRServiceException {
|
|
268
|
-
name = "PullThroughCacheRuleAlreadyExistsException";
|
|
269
|
-
$fault = "client";
|
|
270
|
-
constructor(opts) {
|
|
271
|
-
super({
|
|
272
|
-
name: "PullThroughCacheRuleAlreadyExistsException",
|
|
273
|
-
$fault: "client",
|
|
274
|
-
...opts,
|
|
275
|
-
});
|
|
276
|
-
Object.setPrototypeOf(this, PullThroughCacheRuleAlreadyExistsException.prototype);
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
class SecretNotFoundException extends ECRServiceException {
|
|
280
|
-
name = "SecretNotFoundException";
|
|
281
|
-
$fault = "client";
|
|
282
|
-
constructor(opts) {
|
|
283
|
-
super({
|
|
284
|
-
name: "SecretNotFoundException",
|
|
285
|
-
$fault: "client",
|
|
286
|
-
...opts,
|
|
287
|
-
});
|
|
288
|
-
Object.setPrototypeOf(this, SecretNotFoundException.prototype);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
class UnableToAccessSecretException extends ECRServiceException {
|
|
292
|
-
name = "UnableToAccessSecretException";
|
|
293
|
-
$fault = "client";
|
|
294
|
-
constructor(opts) {
|
|
295
|
-
super({
|
|
296
|
-
name: "UnableToAccessSecretException",
|
|
297
|
-
$fault: "client",
|
|
298
|
-
...opts,
|
|
299
|
-
});
|
|
300
|
-
Object.setPrototypeOf(this, UnableToAccessSecretException.prototype);
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
class UnableToDecryptSecretValueException extends ECRServiceException {
|
|
304
|
-
name = "UnableToDecryptSecretValueException";
|
|
305
|
-
$fault = "client";
|
|
306
|
-
constructor(opts) {
|
|
307
|
-
super({
|
|
308
|
-
name: "UnableToDecryptSecretValueException",
|
|
309
|
-
$fault: "client",
|
|
310
|
-
...opts,
|
|
311
|
-
});
|
|
312
|
-
Object.setPrototypeOf(this, UnableToDecryptSecretValueException.prototype);
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
class UnsupportedUpstreamRegistryException extends ECRServiceException {
|
|
316
|
-
name = "UnsupportedUpstreamRegistryException";
|
|
317
|
-
$fault = "client";
|
|
318
|
-
constructor(opts) {
|
|
319
|
-
super({
|
|
320
|
-
name: "UnsupportedUpstreamRegistryException",
|
|
321
|
-
$fault: "client",
|
|
322
|
-
...opts,
|
|
323
|
-
});
|
|
324
|
-
Object.setPrototypeOf(this, UnsupportedUpstreamRegistryException.prototype);
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
class InvalidTagParameterException extends ECRServiceException {
|
|
328
|
-
name = "InvalidTagParameterException";
|
|
329
|
-
$fault = "client";
|
|
330
|
-
constructor(opts) {
|
|
331
|
-
super({
|
|
332
|
-
name: "InvalidTagParameterException",
|
|
333
|
-
$fault: "client",
|
|
334
|
-
...opts,
|
|
335
|
-
});
|
|
336
|
-
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
class RepositoryAlreadyExistsException extends ECRServiceException {
|
|
340
|
-
name = "RepositoryAlreadyExistsException";
|
|
341
|
-
$fault = "client";
|
|
342
|
-
constructor(opts) {
|
|
343
|
-
super({
|
|
344
|
-
name: "RepositoryAlreadyExistsException",
|
|
345
|
-
$fault: "client",
|
|
346
|
-
...opts,
|
|
347
|
-
});
|
|
348
|
-
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
class TooManyTagsException extends ECRServiceException {
|
|
352
|
-
name = "TooManyTagsException";
|
|
353
|
-
$fault = "client";
|
|
354
|
-
constructor(opts) {
|
|
355
|
-
super({
|
|
356
|
-
name: "TooManyTagsException",
|
|
357
|
-
$fault: "client",
|
|
358
|
-
...opts,
|
|
359
|
-
});
|
|
360
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
class TemplateAlreadyExistsException extends ECRServiceException {
|
|
364
|
-
name = "TemplateAlreadyExistsException";
|
|
365
|
-
$fault = "client";
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "TemplateAlreadyExistsException",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, TemplateAlreadyExistsException.prototype);
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
class LifecyclePolicyNotFoundException extends ECRServiceException {
|
|
376
|
-
name = "LifecyclePolicyNotFoundException";
|
|
377
|
-
$fault = "client";
|
|
378
|
-
constructor(opts) {
|
|
379
|
-
super({
|
|
380
|
-
name: "LifecyclePolicyNotFoundException",
|
|
381
|
-
$fault: "client",
|
|
382
|
-
...opts,
|
|
383
|
-
});
|
|
384
|
-
Object.setPrototypeOf(this, LifecyclePolicyNotFoundException.prototype);
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
class PullThroughCacheRuleNotFoundException extends ECRServiceException {
|
|
388
|
-
name = "PullThroughCacheRuleNotFoundException";
|
|
389
|
-
$fault = "client";
|
|
390
|
-
constructor(opts) {
|
|
391
|
-
super({
|
|
392
|
-
name: "PullThroughCacheRuleNotFoundException",
|
|
393
|
-
$fault: "client",
|
|
394
|
-
...opts,
|
|
395
|
-
});
|
|
396
|
-
Object.setPrototypeOf(this, PullThroughCacheRuleNotFoundException.prototype);
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
class RegistryPolicyNotFoundException extends ECRServiceException {
|
|
400
|
-
name = "RegistryPolicyNotFoundException";
|
|
401
|
-
$fault = "client";
|
|
402
|
-
constructor(opts) {
|
|
403
|
-
super({
|
|
404
|
-
name: "RegistryPolicyNotFoundException",
|
|
405
|
-
$fault: "client",
|
|
406
|
-
...opts,
|
|
407
|
-
});
|
|
408
|
-
Object.setPrototypeOf(this, RegistryPolicyNotFoundException.prototype);
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
class RepositoryNotEmptyException extends ECRServiceException {
|
|
412
|
-
name = "RepositoryNotEmptyException";
|
|
413
|
-
$fault = "client";
|
|
414
|
-
constructor(opts) {
|
|
415
|
-
super({
|
|
416
|
-
name: "RepositoryNotEmptyException",
|
|
417
|
-
$fault: "client",
|
|
418
|
-
...opts,
|
|
419
|
-
});
|
|
420
|
-
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
class TemplateNotFoundException extends ECRServiceException {
|
|
424
|
-
name = "TemplateNotFoundException";
|
|
425
|
-
$fault = "client";
|
|
426
|
-
constructor(opts) {
|
|
427
|
-
super({
|
|
428
|
-
name: "TemplateNotFoundException",
|
|
429
|
-
$fault: "client",
|
|
430
|
-
...opts,
|
|
431
|
-
});
|
|
432
|
-
Object.setPrototypeOf(this, TemplateNotFoundException.prototype);
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
class RepositoryPolicyNotFoundException extends ECRServiceException {
|
|
436
|
-
name = "RepositoryPolicyNotFoundException";
|
|
437
|
-
$fault = "client";
|
|
438
|
-
constructor(opts) {
|
|
439
|
-
super({
|
|
440
|
-
name: "RepositoryPolicyNotFoundException",
|
|
441
|
-
$fault: "client",
|
|
442
|
-
...opts,
|
|
443
|
-
});
|
|
444
|
-
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
class SigningConfigurationNotFoundException extends ECRServiceException {
|
|
448
|
-
name = "SigningConfigurationNotFoundException";
|
|
449
|
-
$fault = "client";
|
|
450
|
-
constructor(opts) {
|
|
451
|
-
super({
|
|
452
|
-
name: "SigningConfigurationNotFoundException",
|
|
453
|
-
$fault: "client",
|
|
454
|
-
...opts,
|
|
455
|
-
});
|
|
456
|
-
Object.setPrototypeOf(this, SigningConfigurationNotFoundException.prototype);
|
|
457
|
-
}
|
|
458
|
-
}
|
|
459
|
-
class ExclusionNotFoundException extends ECRServiceException {
|
|
460
|
-
name = "ExclusionNotFoundException";
|
|
461
|
-
$fault = "client";
|
|
462
|
-
constructor(opts) {
|
|
463
|
-
super({
|
|
464
|
-
name: "ExclusionNotFoundException",
|
|
465
|
-
$fault: "client",
|
|
466
|
-
...opts,
|
|
467
|
-
});
|
|
468
|
-
Object.setPrototypeOf(this, ExclusionNotFoundException.prototype);
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
class ImageNotFoundException extends ECRServiceException {
|
|
472
|
-
name = "ImageNotFoundException";
|
|
473
|
-
$fault = "client";
|
|
474
|
-
constructor(opts) {
|
|
475
|
-
super({
|
|
476
|
-
name: "ImageNotFoundException",
|
|
477
|
-
$fault: "client",
|
|
478
|
-
...opts,
|
|
479
|
-
});
|
|
480
|
-
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
class ScanNotFoundException extends ECRServiceException {
|
|
484
|
-
name = "ScanNotFoundException";
|
|
485
|
-
$fault = "client";
|
|
486
|
-
constructor(opts) {
|
|
487
|
-
super({
|
|
488
|
-
name: "ScanNotFoundException",
|
|
489
|
-
$fault: "client",
|
|
490
|
-
...opts,
|
|
491
|
-
});
|
|
492
|
-
Object.setPrototypeOf(this, ScanNotFoundException.prototype);
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
class LayerInaccessibleException extends ECRServiceException {
|
|
496
|
-
name = "LayerInaccessibleException";
|
|
497
|
-
$fault = "client";
|
|
498
|
-
constructor(opts) {
|
|
499
|
-
super({
|
|
500
|
-
name: "LayerInaccessibleException",
|
|
501
|
-
$fault: "client",
|
|
502
|
-
...opts,
|
|
503
|
-
});
|
|
504
|
-
Object.setPrototypeOf(this, LayerInaccessibleException.prototype);
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
class LayersNotFoundException extends ECRServiceException {
|
|
508
|
-
name = "LayersNotFoundException";
|
|
509
|
-
$fault = "client";
|
|
510
|
-
constructor(opts) {
|
|
511
|
-
super({
|
|
512
|
-
name: "LayersNotFoundException",
|
|
513
|
-
$fault: "client",
|
|
514
|
-
...opts,
|
|
515
|
-
});
|
|
516
|
-
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
517
|
-
}
|
|
518
|
-
}
|
|
519
|
-
class UnableToGetUpstreamLayerException extends ECRServiceException {
|
|
520
|
-
name = "UnableToGetUpstreamLayerException";
|
|
521
|
-
$fault = "client";
|
|
522
|
-
constructor(opts) {
|
|
523
|
-
super({
|
|
524
|
-
name: "UnableToGetUpstreamLayerException",
|
|
525
|
-
$fault: "client",
|
|
526
|
-
...opts,
|
|
527
|
-
});
|
|
528
|
-
Object.setPrototypeOf(this, UnableToGetUpstreamLayerException.prototype);
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
class LifecyclePolicyPreviewNotFoundException extends ECRServiceException {
|
|
532
|
-
name = "LifecyclePolicyPreviewNotFoundException";
|
|
533
|
-
$fault = "client";
|
|
534
|
-
constructor(opts) {
|
|
535
|
-
super({
|
|
536
|
-
name: "LifecyclePolicyPreviewNotFoundException",
|
|
537
|
-
$fault: "client",
|
|
538
|
-
...opts,
|
|
539
|
-
});
|
|
540
|
-
Object.setPrototypeOf(this, LifecyclePolicyPreviewNotFoundException.prototype);
|
|
541
|
-
}
|
|
542
|
-
}
|
|
543
|
-
class ImageAlreadyExistsException extends ECRServiceException {
|
|
544
|
-
name = "ImageAlreadyExistsException";
|
|
545
|
-
$fault = "client";
|
|
546
|
-
constructor(opts) {
|
|
547
|
-
super({
|
|
548
|
-
name: "ImageAlreadyExistsException",
|
|
549
|
-
$fault: "client",
|
|
550
|
-
...opts,
|
|
551
|
-
});
|
|
552
|
-
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
class ImageDigestDoesNotMatchException extends ECRServiceException {
|
|
556
|
-
name = "ImageDigestDoesNotMatchException";
|
|
557
|
-
$fault = "client";
|
|
558
|
-
constructor(opts) {
|
|
559
|
-
super({
|
|
560
|
-
name: "ImageDigestDoesNotMatchException",
|
|
561
|
-
$fault: "client",
|
|
562
|
-
...opts,
|
|
563
|
-
});
|
|
564
|
-
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
565
|
-
}
|
|
566
|
-
}
|
|
567
|
-
class ImageTagAlreadyExistsException extends ECRServiceException {
|
|
568
|
-
name = "ImageTagAlreadyExistsException";
|
|
569
|
-
$fault = "client";
|
|
570
|
-
constructor(opts) {
|
|
571
|
-
super({
|
|
572
|
-
name: "ImageTagAlreadyExistsException",
|
|
573
|
-
$fault: "client",
|
|
574
|
-
...opts,
|
|
575
|
-
});
|
|
576
|
-
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
class ReferencedImagesNotFoundException extends ECRServiceException {
|
|
580
|
-
name = "ReferencedImagesNotFoundException";
|
|
581
|
-
$fault = "client";
|
|
582
|
-
constructor(opts) {
|
|
583
|
-
super({
|
|
584
|
-
name: "ReferencedImagesNotFoundException",
|
|
585
|
-
$fault: "client",
|
|
586
|
-
...opts,
|
|
587
|
-
});
|
|
588
|
-
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
class BlockedByOrganizationPolicyException extends ECRServiceException {
|
|
592
|
-
name = "BlockedByOrganizationPolicyException";
|
|
593
|
-
$fault = "client";
|
|
594
|
-
constructor(opts) {
|
|
595
|
-
super({
|
|
596
|
-
name: "BlockedByOrganizationPolicyException",
|
|
597
|
-
$fault: "client",
|
|
598
|
-
...opts,
|
|
599
|
-
});
|
|
600
|
-
Object.setPrototypeOf(this, BlockedByOrganizationPolicyException.prototype);
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
class ExclusionAlreadyExistsException extends ECRServiceException {
|
|
604
|
-
name = "ExclusionAlreadyExistsException";
|
|
605
|
-
$fault = "client";
|
|
606
|
-
constructor(opts) {
|
|
607
|
-
super({
|
|
608
|
-
name: "ExclusionAlreadyExistsException",
|
|
609
|
-
$fault: "client",
|
|
610
|
-
...opts,
|
|
611
|
-
});
|
|
612
|
-
Object.setPrototypeOf(this, ExclusionAlreadyExistsException.prototype);
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
class ImageArchivedException extends ECRServiceException {
|
|
616
|
-
name = "ImageArchivedException";
|
|
617
|
-
$fault = "client";
|
|
618
|
-
constructor(opts) {
|
|
619
|
-
super({
|
|
620
|
-
name: "ImageArchivedException",
|
|
621
|
-
$fault: "client",
|
|
622
|
-
...opts,
|
|
623
|
-
});
|
|
624
|
-
Object.setPrototypeOf(this, ImageArchivedException.prototype);
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
class UnsupportedImageTypeException extends ECRServiceException {
|
|
628
|
-
name = "UnsupportedImageTypeException";
|
|
629
|
-
$fault = "client";
|
|
630
|
-
constructor(opts) {
|
|
631
|
-
super({
|
|
632
|
-
name: "UnsupportedImageTypeException",
|
|
633
|
-
$fault: "client",
|
|
634
|
-
...opts,
|
|
635
|
-
});
|
|
636
|
-
Object.setPrototypeOf(this, UnsupportedImageTypeException.prototype);
|
|
637
|
-
}
|
|
638
|
-
}
|
|
639
|
-
class LifecyclePolicyPreviewInProgressException extends ECRServiceException {
|
|
640
|
-
name = "LifecyclePolicyPreviewInProgressException";
|
|
641
|
-
$fault = "client";
|
|
642
|
-
constructor(opts) {
|
|
643
|
-
super({
|
|
644
|
-
name: "LifecyclePolicyPreviewInProgressException",
|
|
645
|
-
$fault: "client",
|
|
646
|
-
...opts,
|
|
647
|
-
});
|
|
648
|
-
Object.setPrototypeOf(this, LifecyclePolicyPreviewInProgressException.prototype);
|
|
649
|
-
}
|
|
650
|
-
}
|
|
651
|
-
class ImageStorageClassUpdateNotSupportedException extends ECRServiceException {
|
|
652
|
-
name = "ImageStorageClassUpdateNotSupportedException";
|
|
653
|
-
$fault = "client";
|
|
654
|
-
constructor(opts) {
|
|
655
|
-
super({
|
|
656
|
-
name: "ImageStorageClassUpdateNotSupportedException",
|
|
657
|
-
$fault: "client",
|
|
658
|
-
...opts,
|
|
659
|
-
});
|
|
660
|
-
Object.setPrototypeOf(this, ImageStorageClassUpdateNotSupportedException.prototype);
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
class InvalidLayerPartException extends ECRServiceException {
|
|
664
|
-
name = "InvalidLayerPartException";
|
|
665
|
-
$fault = "client";
|
|
666
|
-
registryId;
|
|
667
|
-
repositoryName;
|
|
668
|
-
uploadId;
|
|
669
|
-
lastValidByteReceived;
|
|
670
|
-
constructor(opts) {
|
|
671
|
-
super({
|
|
672
|
-
name: "InvalidLayerPartException",
|
|
673
|
-
$fault: "client",
|
|
674
|
-
...opts,
|
|
675
|
-
});
|
|
676
|
-
Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
|
|
677
|
-
this.registryId = opts.registryId;
|
|
678
|
-
this.repositoryName = opts.repositoryName;
|
|
679
|
-
this.uploadId = opts.uploadId;
|
|
680
|
-
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
const _A = "Attribute";
|
|
685
|
-
const _AD = "AuthorizationData";
|
|
686
|
-
const _ADL = "AuthorizationDataList";
|
|
687
|
-
const _AECID = "AwsEcrContainerImageDetails";
|
|
688
|
-
const _AL = "AttributeList";
|
|
689
|
-
const _BBOPE = "BlockedByOrganizationPolicyException";
|
|
690
|
-
const _BCLA = "BatchCheckLayerAvailability";
|
|
691
|
-
const _BCLAR = "BatchCheckLayerAvailabilityRequest";
|
|
692
|
-
const _BCLARa = "BatchCheckLayerAvailabilityResponse";
|
|
693
|
-
const _BDI = "BatchDeleteImage";
|
|
694
|
-
const _BDIR = "BatchDeleteImageRequest";
|
|
695
|
-
const _BDIRa = "BatchDeleteImageResponse";
|
|
696
|
-
const _BGI = "BatchGetImage";
|
|
697
|
-
const _BGIR = "BatchGetImageRequest";
|
|
698
|
-
const _BGIRa = "BatchGetImageResponse";
|
|
699
|
-
const _BGRSC = "BatchGetRepositoryScanningConfiguration";
|
|
700
|
-
const _BGRSCR = "BatchGetRepositoryScanningConfigurationRequest";
|
|
701
|
-
const _BGRSCRa = "BatchGetRepositoryScanningConfigurationResponse";
|
|
702
|
-
const _CLU = "CompleteLayerUpload";
|
|
703
|
-
const _CLUR = "CompleteLayerUploadRequest";
|
|
704
|
-
const _CLURo = "CompleteLayerUploadResponse";
|
|
705
|
-
const _CPTCR = "CreatePullThroughCacheRule";
|
|
706
|
-
const _CPTCRR = "CreatePullThroughCacheRuleRequest";
|
|
707
|
-
const _CPTCRRr = "CreatePullThroughCacheRuleResponse";
|
|
708
|
-
const _CR = "CreateRepository";
|
|
709
|
-
const _CRCT = "CreateRepositoryCreationTemplate";
|
|
710
|
-
const _CRCTR = "CreateRepositoryCreationTemplateRequest";
|
|
711
|
-
const _CRCTRr = "CreateRepositoryCreationTemplateResponse";
|
|
712
|
-
const _CRR = "CreateRepositoryRequest";
|
|
713
|
-
const _CRRr = "CreateRepositoryResponse";
|
|
714
|
-
const _CS = "CvssScore";
|
|
715
|
-
const _CSA = "CvssScoreAdjustment";
|
|
716
|
-
const _CSAL = "CvssScoreAdjustmentList";
|
|
717
|
-
const _CSD = "CvssScoreDetails";
|
|
718
|
-
const _CSL = "CvssScoreList";
|
|
719
|
-
const _DI = "DescribeImages";
|
|
720
|
-
const _DIF = "DescribeImagesFilter";
|
|
721
|
-
const _DIR = "DescribeImagesRequest";
|
|
722
|
-
const _DIRS = "DescribeImageReplicationStatus";
|
|
723
|
-
const _DIRSR = "DescribeImageReplicationStatusRequest";
|
|
724
|
-
const _DIRSRe = "DescribeImageReplicationStatusResponse";
|
|
725
|
-
const _DIRe = "DescribeImagesResponse";
|
|
726
|
-
const _DISF = "DescribeImageScanFindings";
|
|
727
|
-
const _DISFR = "DescribeImageScanFindingsRequest";
|
|
728
|
-
const _DISFRe = "DescribeImageScanFindingsResponse";
|
|
729
|
-
const _DISS = "DescribeImageSigningStatus";
|
|
730
|
-
const _DISSR = "DescribeImageSigningStatusRequest";
|
|
731
|
-
const _DISSRe = "DescribeImageSigningStatusResponse";
|
|
732
|
-
const _DLP = "DeleteLifecyclePolicy";
|
|
733
|
-
const _DLPR = "DeleteLifecyclePolicyRequest";
|
|
734
|
-
const _DLPRe = "DeleteLifecyclePolicyResponse";
|
|
735
|
-
const _DPTCR = "DeletePullThroughCacheRule";
|
|
736
|
-
const _DPTCRR = "DeletePullThroughCacheRuleRequest";
|
|
737
|
-
const _DPTCRRe = "DeletePullThroughCacheRuleResponse";
|
|
738
|
-
const _DPTCRRes = "DescribePullThroughCacheRulesRequest";
|
|
739
|
-
const _DPTCRResc = "DescribePullThroughCacheRulesResponse";
|
|
740
|
-
const _DPTCRe = "DescribePullThroughCacheRules";
|
|
741
|
-
const _DPTUE = "DeregisterPullTimeUpdateExclusion";
|
|
742
|
-
const _DPTUER = "DeregisterPullTimeUpdateExclusionRequest";
|
|
743
|
-
const _DPTUERe = "DeregisterPullTimeUpdateExclusionResponse";
|
|
744
|
-
const _DR = "DeleteRepository";
|
|
745
|
-
const _DRCT = "DeleteRepositoryCreationTemplate";
|
|
746
|
-
const _DRCTR = "DeleteRepositoryCreationTemplateRequest";
|
|
747
|
-
const _DRCTRe = "DeleteRepositoryCreationTemplateResponse";
|
|
748
|
-
const _DRCTRes = "DescribeRepositoryCreationTemplatesRequest";
|
|
749
|
-
const _DRCTResc = "DescribeRepositoryCreationTemplatesResponse";
|
|
750
|
-
const _DRCTe = "DescribeRepositoryCreationTemplates";
|
|
751
|
-
const _DRP = "DeleteRegistryPolicy";
|
|
752
|
-
const _DRPR = "DeleteRegistryPolicyRequest";
|
|
753
|
-
const _DRPRe = "DeleteRegistryPolicyResponse";
|
|
754
|
-
const _DRPRel = "DeleteRepositoryPolicyRequest";
|
|
755
|
-
const _DRPRele = "DeleteRepositoryPolicyResponse";
|
|
756
|
-
const _DRPe = "DeleteRepositoryPolicy";
|
|
757
|
-
const _DRR = "DeleteRepositoryRequest";
|
|
758
|
-
const _DRRe = "DeleteRepositoryResponse";
|
|
759
|
-
const _DRRes = "DescribeRegistryRequest";
|
|
760
|
-
const _DRResc = "DescribeRegistryResponse";
|
|
761
|
-
const _DRRescr = "DescribeRepositoriesRequest";
|
|
762
|
-
const _DRRescri = "DescribeRepositoriesResponse";
|
|
763
|
-
const _DRe = "DescribeRegistry";
|
|
764
|
-
const _DRes = "DescribeRepositories";
|
|
765
|
-
const _DSC = "DeleteSigningConfiguration";
|
|
766
|
-
const _DSCR = "DeleteSigningConfigurationRequest";
|
|
767
|
-
const _DSCRe = "DeleteSigningConfigurationResponse";
|
|
768
|
-
const _EAEE = "ExclusionAlreadyExistsException";
|
|
769
|
-
const _EC = "EncryptionConfiguration";
|
|
770
|
-
const _ECFRCT = "EncryptionConfigurationForRepositoryCreationTemplate";
|
|
771
|
-
const _EISF = "EnhancedImageScanFinding";
|
|
772
|
-
const _EISFL = "EnhancedImageScanFindingList";
|
|
773
|
-
const _ENFE = "ExclusionNotFoundException";
|
|
774
|
-
const _EUE = "EmptyUploadException";
|
|
775
|
-
const _GAS = "GetAccountSetting";
|
|
776
|
-
const _GASR = "GetAccountSettingRequest";
|
|
777
|
-
const _GASRe = "GetAccountSettingResponse";
|
|
778
|
-
const _GAT = "GetAuthorizationToken";
|
|
779
|
-
const _GATR = "GetAuthorizationTokenRequest";
|
|
780
|
-
const _GATRe = "GetAuthorizationTokenResponse";
|
|
781
|
-
const _GDUFL = "GetDownloadUrlForLayer";
|
|
782
|
-
const _GDUFLR = "GetDownloadUrlForLayerRequest";
|
|
783
|
-
const _GDUFLRe = "GetDownloadUrlForLayerResponse";
|
|
784
|
-
const _GLP = "GetLifecyclePolicy";
|
|
785
|
-
const _GLPP = "GetLifecyclePolicyPreview";
|
|
786
|
-
const _GLPPR = "GetLifecyclePolicyPreviewRequest";
|
|
787
|
-
const _GLPPRe = "GetLifecyclePolicyPreviewResponse";
|
|
788
|
-
const _GLPR = "GetLifecyclePolicyRequest";
|
|
789
|
-
const _GLPRe = "GetLifecyclePolicyResponse";
|
|
790
|
-
const _GRP = "GetRegistryPolicy";
|
|
791
|
-
const _GRPR = "GetRegistryPolicyRequest";
|
|
792
|
-
const _GRPRe = "GetRegistryPolicyResponse";
|
|
793
|
-
const _GRPRet = "GetRepositoryPolicyRequest";
|
|
794
|
-
const _GRPRete = "GetRepositoryPolicyResponse";
|
|
795
|
-
const _GRPe = "GetRepositoryPolicy";
|
|
796
|
-
const _GRSC = "GetRegistryScanningConfiguration";
|
|
797
|
-
const _GRSCR = "GetRegistryScanningConfigurationRequest";
|
|
798
|
-
const _GRSCRe = "GetRegistryScanningConfigurationResponse";
|
|
799
|
-
const _GSC = "GetSigningConfiguration";
|
|
800
|
-
const _GSCR = "GetSigningConfigurationRequest";
|
|
801
|
-
const _GSCRe = "GetSigningConfigurationResponse";
|
|
802
|
-
const _I = "Image";
|
|
803
|
-
const _IAE = "ImageArchivedException";
|
|
804
|
-
const _IAEE = "ImageAlreadyExistsException";
|
|
805
|
-
const _ID = "ImageDetail";
|
|
806
|
-
const _IDDNME = "ImageDigestDoesNotMatchException";
|
|
807
|
-
const _IDL = "ImageDetailList";
|
|
808
|
-
const _IF = "ImageFailure";
|
|
809
|
-
const _IFL = "ImageFailureList";
|
|
810
|
-
const _II = "ImageIdentifier";
|
|
811
|
-
const _IIL = "ImageIdentifierList";
|
|
812
|
-
const _IL = "ImageList";
|
|
813
|
-
const _ILE = "InvalidLayerException";
|
|
814
|
-
const _ILPE = "InvalidLayerPartException";
|
|
815
|
-
const _ILU = "InitiateLayerUpload";
|
|
816
|
-
const _ILUR = "InitiateLayerUploadRequest";
|
|
817
|
-
const _ILURn = "InitiateLayerUploadResponse";
|
|
818
|
-
const _INFE = "ImageNotFoundException";
|
|
819
|
-
const _IPE = "InvalidParameterException";
|
|
820
|
-
const _IR = "ImageReferrer";
|
|
821
|
-
const _IRL = "ImageReferrerList";
|
|
822
|
-
const _IRS = "ImageReplicationStatus";
|
|
823
|
-
const _IRSL = "ImageReplicationStatusList";
|
|
824
|
-
const _ISC = "ImageScanningConfiguration";
|
|
825
|
-
const _ISCUNSE = "ImageStorageClassUpdateNotSupportedException";
|
|
826
|
-
const _ISF = "ImageScanFinding";
|
|
827
|
-
const _ISFL = "ImageScanFindingList";
|
|
828
|
-
const _ISFS = "ImageScanFindingsSummary";
|
|
829
|
-
const _ISFm = "ImageScanFindings";
|
|
830
|
-
const _ISS = "ImageScanStatus";
|
|
831
|
-
const _ISSL = "ImageSigningStatusList";
|
|
832
|
-
const _ISSm = "ImageSigningStatus";
|
|
833
|
-
const _ITAEE = "ImageTagAlreadyExistsException";
|
|
834
|
-
const _ITMEF = "ImageTagMutabilityExclusionFilter";
|
|
835
|
-
const _ITMEFm = "ImageTagMutabilityExclusionFilters";
|
|
836
|
-
const _ITPE = "InvalidTagParameterException";
|
|
837
|
-
const _K = "Key";
|
|
838
|
-
const _KE = "KmsException";
|
|
839
|
-
const _L = "Layer";
|
|
840
|
-
const _LAEE = "LayerAlreadyExistsException";
|
|
841
|
-
const _LEE = "LimitExceededException";
|
|
842
|
-
const _LF = "LayerFailure";
|
|
843
|
-
const _LFL = "LayerFailureList";
|
|
844
|
-
const _LI = "ListImages";
|
|
845
|
-
const _LIE = "LayerInaccessibleException";
|
|
846
|
-
const _LIF = "ListImagesFilter";
|
|
847
|
-
const _LIR = "ListImagesRequest";
|
|
848
|
-
const _LIRF = "ListImageReferrersFilter";
|
|
849
|
-
const _LIRR = "ListImageReferrersRequest";
|
|
850
|
-
const _LIRRi = "ListImageReferrersResponse";
|
|
851
|
-
const _LIRi = "ListImagesResponse";
|
|
852
|
-
const _LIRis = "ListImageReferrers";
|
|
853
|
-
const _LL = "LayerList";
|
|
854
|
-
const _LNFE = "LayersNotFoundException";
|
|
855
|
-
const _LPNFE = "LifecyclePolicyNotFoundException";
|
|
856
|
-
const _LPPF = "LifecyclePolicyPreviewFilter";
|
|
857
|
-
const _LPPIPE = "LifecyclePolicyPreviewInProgressException";
|
|
858
|
-
const _LPPNFE = "LifecyclePolicyPreviewNotFoundException";
|
|
859
|
-
const _LPPR = "LifecyclePolicyPreviewResult";
|
|
860
|
-
const _LPPRL = "LifecyclePolicyPreviewResultList";
|
|
861
|
-
const _LPPS = "LifecyclePolicyPreviewSummary";
|
|
862
|
-
const _LPRA = "LifecyclePolicyRuleAction";
|
|
863
|
-
const _LPTSE = "LayerPartTooSmallException";
|
|
864
|
-
const _LPTUE = "ListPullTimeUpdateExclusions";
|
|
865
|
-
const _LPTUER = "ListPullTimeUpdateExclusionsRequest";
|
|
866
|
-
const _LPTUERi = "ListPullTimeUpdateExclusionsResponse";
|
|
867
|
-
const _LTFR = "ListTagsForResource";
|
|
868
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
869
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
870
|
-
const _PAS = "PutAccountSetting";
|
|
871
|
-
const _PASR = "PutAccountSettingRequest";
|
|
872
|
-
const _PASRu = "PutAccountSettingResponse";
|
|
873
|
-
const _PI = "PutImage";
|
|
874
|
-
const _PIR = "PutImageRequest";
|
|
875
|
-
const _PIRu = "PutImageResponse";
|
|
876
|
-
const _PISC = "PutImageScanningConfiguration";
|
|
877
|
-
const _PISCR = "PutImageScanningConfigurationRequest";
|
|
878
|
-
const _PISCRu = "PutImageScanningConfigurationResponse";
|
|
879
|
-
const _PITM = "PutImageTagMutability";
|
|
880
|
-
const _PITMR = "PutImageTagMutabilityRequest";
|
|
881
|
-
const _PITMRu = "PutImageTagMutabilityResponse";
|
|
882
|
-
const _PLP = "PutLifecyclePolicy";
|
|
883
|
-
const _PLPR = "PutLifecyclePolicyRequest";
|
|
884
|
-
const _PLPRu = "PutLifecyclePolicyResponse";
|
|
885
|
-
const _PRC = "PutReplicationConfiguration";
|
|
886
|
-
const _PRCR = "PutReplicationConfigurationRequest";
|
|
887
|
-
const _PRCRu = "PutReplicationConfigurationResponse";
|
|
888
|
-
const _PRP = "PutRegistryPolicy";
|
|
889
|
-
const _PRPR = "PutRegistryPolicyRequest";
|
|
890
|
-
const _PRPRu = "PutRegistryPolicyResponse";
|
|
891
|
-
const _PRSC = "PutRegistryScanningConfiguration";
|
|
892
|
-
const _PRSCR = "PutRegistryScanningConfigurationRequest";
|
|
893
|
-
const _PRSCRu = "PutRegistryScanningConfigurationResponse";
|
|
894
|
-
const _PSC = "PutSigningConfiguration";
|
|
895
|
-
const _PSCR = "PutSigningConfigurationRequest";
|
|
896
|
-
const _PSCRu = "PutSigningConfigurationResponse";
|
|
897
|
-
const _PTCR = "PullThroughCacheRule";
|
|
898
|
-
const _PTCRAEE = "PullThroughCacheRuleAlreadyExistsException";
|
|
899
|
-
const _PTCRL = "PullThroughCacheRuleList";
|
|
900
|
-
const _PTCRNFE = "PullThroughCacheRuleNotFoundException";
|
|
901
|
-
const _PVD = "PackageVulnerabilityDetails";
|
|
902
|
-
const _R = "Recommendation";
|
|
903
|
-
const _RAEE = "RepositoryAlreadyExistsException";
|
|
904
|
-
const _RC = "ReplicationConfiguration";
|
|
905
|
-
const _RCT = "RepositoryCreationTemplate";
|
|
906
|
-
const _RCTL = "RepositoryCreationTemplateList";
|
|
907
|
-
const _RD = "ReplicationDestination";
|
|
908
|
-
const _RDL = "ReplicationDestinationList";
|
|
909
|
-
const _RDe = "ResourceDetails";
|
|
910
|
-
const _RF = "RepositoryFilter";
|
|
911
|
-
const _RFL = "RepositoryFilterList";
|
|
912
|
-
const _RINFE = "ReferencedImagesNotFoundException";
|
|
913
|
-
const _RL = "RepositoryList";
|
|
914
|
-
const _RLe = "ResourceList";
|
|
915
|
-
const _RNEE = "RepositoryNotEmptyException";
|
|
916
|
-
const _RNFE = "RepositoryNotFoundException";
|
|
917
|
-
const _RPNFE = "RegistryPolicyNotFoundException";
|
|
918
|
-
const _RPNFEe = "RepositoryPolicyNotFoundException";
|
|
919
|
-
const _RPTUE = "RegisterPullTimeUpdateExclusion";
|
|
920
|
-
const _RPTUER = "RegisterPullTimeUpdateExclusionRequest";
|
|
921
|
-
const _RPTUERe = "RegisterPullTimeUpdateExclusionResponse";
|
|
922
|
-
const _RR = "ReplicationRule";
|
|
923
|
-
const _RRL = "ReplicationRuleList";
|
|
924
|
-
const _RSC = "RegistryScanningConfiguration";
|
|
925
|
-
const _RSCF = "RepositoryScanningConfigurationFailure";
|
|
926
|
-
const _RSCFL = "RepositoryScanningConfigurationFailureList";
|
|
927
|
-
const _RSCL = "RepositoryScanningConfigurationList";
|
|
928
|
-
const _RSCe = "RepositoryScanningConfiguration";
|
|
929
|
-
const _RSR = "RegistryScanningRule";
|
|
930
|
-
const _RSRL = "RegistryScanningRuleList";
|
|
931
|
-
const _Re = "Remediation";
|
|
932
|
-
const _Rep = "Repository";
|
|
933
|
-
const _Res = "Resource";
|
|
934
|
-
const _SC = "SigningConfiguration";
|
|
935
|
-
const _SCNFE = "SigningConfigurationNotFoundException";
|
|
936
|
-
const _SD = "ScoreDetails";
|
|
937
|
-
const _SE = "ServerException";
|
|
938
|
-
const _SI = "SubjectIdentifier";
|
|
939
|
-
const _SIS = "StartImageScan";
|
|
940
|
-
const _SISR = "StartImageScanRequest";
|
|
941
|
-
const _SISRt = "StartImageScanResponse";
|
|
942
|
-
const _SLPP = "StartLifecyclePolicyPreview";
|
|
943
|
-
const _SLPPR = "StartLifecyclePolicyPreviewRequest";
|
|
944
|
-
const _SLPPRt = "StartLifecyclePolicyPreviewResponse";
|
|
945
|
-
const _SNFE = "ScanNotFoundException";
|
|
946
|
-
const _SNFEe = "SecretNotFoundException";
|
|
947
|
-
const _SR = "SigningRule";
|
|
948
|
-
const _SRF = "ScanningRepositoryFilter";
|
|
949
|
-
const _SRFL = "ScanningRepositoryFilterList";
|
|
950
|
-
const _SRFLi = "SigningRepositoryFilterList";
|
|
951
|
-
const _SRFi = "SigningRepositoryFilter";
|
|
952
|
-
const _SRL = "SigningRuleList";
|
|
953
|
-
const _SRP = "SetRepositoryPolicy";
|
|
954
|
-
const _SRPR = "SetRepositoryPolicyRequest";
|
|
955
|
-
const _SRPRe = "SetRepositoryPolicyResponse";
|
|
956
|
-
const _T = "Tag";
|
|
957
|
-
const _TAEE = "TemplateAlreadyExistsException";
|
|
958
|
-
const _TITC = "TransitioningImageTotalCount";
|
|
959
|
-
const _TITCr = "TransitioningImageTotalCounts";
|
|
960
|
-
const _TL = "TagList";
|
|
961
|
-
const _TMTE = "TooManyTagsException";
|
|
962
|
-
const _TNFE = "TemplateNotFoundException";
|
|
963
|
-
const _TR = "TagResource";
|
|
964
|
-
const _TRR = "TagResourceRequest";
|
|
965
|
-
const _TRRa = "TagResourceResponse";
|
|
966
|
-
const _UISC = "UpdateImageStorageClass";
|
|
967
|
-
const _UISCR = "UpdateImageStorageClassRequest";
|
|
968
|
-
const _UISCRp = "UpdateImageStorageClassResponse";
|
|
969
|
-
const _UITE = "UnsupportedImageTypeException";
|
|
970
|
-
const _ULP = "UploadLayerPart";
|
|
971
|
-
const _ULPR = "UploadLayerPartRequest";
|
|
972
|
-
const _ULPRp = "UploadLayerPartResponse";
|
|
973
|
-
const _UNFE = "UploadNotFoundException";
|
|
974
|
-
const _UPTCR = "UpdatePullThroughCacheRule";
|
|
975
|
-
const _UPTCRR = "UpdatePullThroughCacheRuleRequest";
|
|
976
|
-
const _UPTCRRp = "UpdatePullThroughCacheRuleResponse";
|
|
977
|
-
const _UR = "UntagResource";
|
|
978
|
-
const _URCT = "UpdateRepositoryCreationTemplate";
|
|
979
|
-
const _URCTR = "UpdateRepositoryCreationTemplateRequest";
|
|
980
|
-
const _URCTRp = "UpdateRepositoryCreationTemplateResponse";
|
|
981
|
-
const _URR = "UntagResourceRequest";
|
|
982
|
-
const _URRn = "UntagResourceResponse";
|
|
983
|
-
const _UTASE = "UnableToAccessSecretException";
|
|
984
|
-
const _UTDSVE = "UnableToDecryptSecretValueException";
|
|
985
|
-
const _UTGUIE = "UnableToGetUpstreamImageException";
|
|
986
|
-
const _UTGULE = "UnableToGetUpstreamLayerException";
|
|
987
|
-
const _UURE = "UnsupportedUpstreamRegistryException";
|
|
988
|
-
const _V = "Value";
|
|
989
|
-
const _VE = "ValidationException";
|
|
990
|
-
const _VP = "VulnerablePackage";
|
|
991
|
-
const _VPL = "VulnerablePackagesList";
|
|
992
|
-
const _VPTCR = "ValidatePullThroughCacheRule";
|
|
993
|
-
const _VPTCRR = "ValidatePullThroughCacheRuleRequest";
|
|
994
|
-
const _VPTCRRa = "ValidatePullThroughCacheRuleResponse";
|
|
995
|
-
const _a = "architecture";
|
|
996
|
-
const _aAI = "awsAccountId";
|
|
997
|
-
const _aD = "authorizationData";
|
|
998
|
-
const _aECI = "awsEcrContainerImage";
|
|
999
|
-
const _aF = "appliedFor";
|
|
1000
|
-
const _aMT = "acceptedMediaTypes";
|
|
1001
|
-
const _aMTr = "artifactMediaType";
|
|
1002
|
-
const _aRP = "appliedRulePriority";
|
|
1003
|
-
const _aS = "artifactStatus";
|
|
1004
|
-
const _aSF = "appliedScanFilters";
|
|
1005
|
-
const _aT = "authorizationToken";
|
|
1006
|
-
const _aTr = "artifactType";
|
|
1007
|
-
const _aTrt = "artifactTypes";
|
|
1008
|
-
const _ac = "action";
|
|
1009
|
-
const _ad = "adjustments";
|
|
1010
|
-
const _an = "annotations";
|
|
1011
|
-
const _ar = "arch";
|
|
1012
|
-
const _at = "attributes";
|
|
1013
|
-
const _au = "author";
|
|
1014
|
-
const _bS = "baseScore";
|
|
1015
|
-
const _c = "client";
|
|
1016
|
-
const _cA = "credentialArn";
|
|
1017
|
-
const _cAr = "createdAt";
|
|
1018
|
-
const _cRA = "customRoleArn";
|
|
1019
|
-
const _cv = "cvss";
|
|
1020
|
-
const _d = "description";
|
|
1021
|
-
const _dU = "downloadUrl";
|
|
1022
|
-
const _de = "destinations";
|
|
1023
|
-
const _det = "details";
|
|
1024
|
-
const _di = "digest";
|
|
1025
|
-
const _e = "error";
|
|
1026
|
-
const _eA = "expiresAt";
|
|
1027
|
-
const _eAx = "exploitAvailable";
|
|
1028
|
-
const _eC = "encryptionConfiguration";
|
|
1029
|
-
const _eF = "enhancedFindings";
|
|
1030
|
-
const _eITC = "expiringImageTotalCount";
|
|
1031
|
-
const _eRP = "ecrRepositoryPrefix";
|
|
1032
|
-
const _eRPc = "ecrRepositoryPrefixes";
|
|
1033
|
-
const _eT = "encryptionType";
|
|
1034
|
-
const _ep = "epoch";
|
|
1035
|
-
const _f = "failures";
|
|
1036
|
-
const _fA = "findingArn";
|
|
1037
|
-
const _fAi = "fixAvailable";
|
|
1038
|
-
const _fC = "failureCode";
|
|
1039
|
-
const _fIV = "fixedInVersion";
|
|
1040
|
-
const _fOA = "firstObservedAt";
|
|
1041
|
-
const _fP = "filePath";
|
|
1042
|
-
const _fR = "failureReason";
|
|
1043
|
-
const _fSC = "findingSeverityCounts";
|
|
1044
|
-
const _fT = "filterType";
|
|
1045
|
-
const _fa = "failure";
|
|
1046
|
-
const _fi = "filter";
|
|
1047
|
-
const _fin = "findings";
|
|
1048
|
-
const _fo = "force";
|
|
1049
|
-
const _hE = "httpError";
|
|
1050
|
-
const _i = "images";
|
|
1051
|
-
const _iD = "imageDetails";
|
|
1052
|
-
const _iDm = "imageDigest";
|
|
1053
|
-
const _iH = "imageHash";
|
|
1054
|
-
const _iI = "imageIds";
|
|
1055
|
-
const _iIm = "imageId";
|
|
1056
|
-
const _iM = "imageManifest";
|
|
1057
|
-
const _iMMT = "imageManifestMediaType";
|
|
1058
|
-
const _iPA = "imagePushedAt";
|
|
1059
|
-
const _iS = "imageStatus";
|
|
1060
|
-
const _iSC = "imageScanningConfiguration";
|
|
1061
|
-
const _iSCA = "imageScanCompletedAt";
|
|
1062
|
-
const _iSF = "imageScanFindings";
|
|
1063
|
-
const _iSFS = "imageScanFindingsSummary";
|
|
1064
|
-
const _iSIB = "imageSizeInBytes";
|
|
1065
|
-
const _iSS = "imageScanStatus";
|
|
1066
|
-
const _iT = "imageTags";
|
|
1067
|
-
const _iTC = "imageTotalCount";
|
|
1068
|
-
const _iTM = "imageTagMutability";
|
|
1069
|
-
const _iTMEF = "imageTagMutabilityExclusionFilters";
|
|
1070
|
-
const _iTm = "imageTag";
|
|
1071
|
-
const _iUC = "inUseCount";
|
|
1072
|
-
const _iV = "isValid";
|
|
1073
|
-
const _id = "id";
|
|
1074
|
-
const _im = "image";
|
|
1075
|
-
const _k = "key";
|
|
1076
|
-
const _kE = "kmsError";
|
|
1077
|
-
const _kK = "kmsKey";
|
|
1078
|
-
const _l = "layers";
|
|
1079
|
-
const _lA = "layerAvailability";
|
|
1080
|
-
const _lAA = "lastArchivedAt";
|
|
1081
|
-
const _lAAa = "lastActivatedAt";
|
|
1082
|
-
const _lBR = "lastByteReceived";
|
|
1083
|
-
const _lD = "layerDigests";
|
|
1084
|
-
const _lDa = "layerDigest";
|
|
1085
|
-
const _lEA = "lastEvaluatedAt";
|
|
1086
|
-
const _lIUA = "lastInUseAt";
|
|
1087
|
-
const _lOA = "lastObservedAt";
|
|
1088
|
-
const _lP = "lifecyclePolicy";
|
|
1089
|
-
const _lPB = "layerPartBlob";
|
|
1090
|
-
const _lPT = "lifecyclePolicyText";
|
|
1091
|
-
const _lRPT = "lastRecordedPullTime";
|
|
1092
|
-
const _lS = "layerSize";
|
|
1093
|
-
const _lVBR = "lastValidByteReceived";
|
|
1094
|
-
const _m = "message";
|
|
1095
|
-
const _mR = "maxResults";
|
|
1096
|
-
const _mT = "mediaType";
|
|
1097
|
-
const _me = "metric";
|
|
1098
|
-
const _n = "name";
|
|
1099
|
-
const _nT = "nextToken";
|
|
1100
|
-
const _p = "platform";
|
|
1101
|
-
const _pA = "pushedAt";
|
|
1102
|
-
const _pAr = "principalArn";
|
|
1103
|
-
const _pE = "proxyEndpoint";
|
|
1104
|
-
const _pFB = "partFirstByte";
|
|
1105
|
-
const _pLB = "partLastByte";
|
|
1106
|
-
const _pM = "packageManager";
|
|
1107
|
-
const _pR = "previewResults";
|
|
1108
|
-
const _pS = "partSize";
|
|
1109
|
-
const _pT = "policyText";
|
|
1110
|
-
const _pTCR = "pullThroughCacheRules";
|
|
1111
|
-
const _pTUE = "pullTimeUpdateExclusions";
|
|
1112
|
-
const _pVD = "packageVulnerabilityDetails";
|
|
1113
|
-
const _pr = "prefix";
|
|
1114
|
-
const _pre = "prefixes";
|
|
1115
|
-
const _r = "registry";
|
|
1116
|
-
const _rA = "resourceArn";
|
|
1117
|
-
const _rAe = "repositoryArn";
|
|
1118
|
-
const _rC = "replicationConfiguration";
|
|
1119
|
-
const _rCT = "repositoryCreationTemplate";
|
|
1120
|
-
const _rCTe = "repositoryCreationTemplates";
|
|
1121
|
-
const _rF = "repositoryFilters";
|
|
1122
|
-
const _rI = "registryId";
|
|
1123
|
-
const _rIe = "registryIds";
|
|
1124
|
-
const _rN = "repositoryName";
|
|
1125
|
-
const _rNe = "repositoryNames";
|
|
1126
|
-
const _rP = "repositoryPolicy";
|
|
1127
|
-
const _rS = "replicationStatuses";
|
|
1128
|
-
const _rSC = "registryScanningConfiguration";
|
|
1129
|
-
const _rT = "resourceTags";
|
|
1130
|
-
const _rU = "referenceUrls";
|
|
1131
|
-
const _rUe = "repositoryUri";
|
|
1132
|
-
const _rV = "relatedVulnerabilities";
|
|
1133
|
-
const _re = "repository";
|
|
1134
|
-
const _rea = "reason";
|
|
1135
|
-
const _rec = "recommendation";
|
|
1136
|
-
const _ref = "referrers";
|
|
1137
|
-
const _reg = "region";
|
|
1138
|
-
const _rel = "release";
|
|
1139
|
-
const _rem = "remediation";
|
|
1140
|
-
const _rep = "repositories";
|
|
1141
|
-
const _res = "resources";
|
|
1142
|
-
const _ru = "rules";
|
|
1143
|
-
const _s = "source";
|
|
1144
|
-
const _sC = "scanningConfigurations";
|
|
1145
|
-
const _sCc = "scanningConfiguration";
|
|
1146
|
-
const _sCi = "signingConfiguration";
|
|
1147
|
-
const _sCt = "storageClass";
|
|
1148
|
-
const _sD = "scoreDetails";
|
|
1149
|
-
const _sF = "scanFrequency";
|
|
1150
|
-
const _sI = "subjectId";
|
|
1151
|
-
const _sLH = "sourceLayerHash";
|
|
1152
|
-
const _sMD = "subjectManifestDigest";
|
|
1153
|
-
const _sOP = "scanOnPush";
|
|
1154
|
-
const _sPA = "signingProfileArn";
|
|
1155
|
-
const _sS = "scoreSource";
|
|
1156
|
-
const _sSi = "signingStatuses";
|
|
1157
|
-
const _sT = "scanType";
|
|
1158
|
-
const _sU = "sourceUrl";
|
|
1159
|
-
const _sV = "scoringVector";
|
|
1160
|
-
const _sc = "score";
|
|
1161
|
-
const _se = "severity";
|
|
1162
|
-
const _ser = "server";
|
|
1163
|
-
const _si = "size";
|
|
1164
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ecr";
|
|
1165
|
-
const _st = "status";
|
|
1166
|
-
const _su = "summary";
|
|
1167
|
-
const _t = "tags";
|
|
1168
|
-
const _tITC = "transitioningImageTotalCounts";
|
|
1169
|
-
const _tK = "tagKeys";
|
|
1170
|
-
const _tS = "tagStatus";
|
|
1171
|
-
const _tSC = "targetStorageClass";
|
|
1172
|
-
const _te = "text";
|
|
1173
|
-
const _ti = "title";
|
|
1174
|
-
const _ty = "type";
|
|
1175
|
-
const _u = "uri";
|
|
1176
|
-
const _uA = "updatedAt";
|
|
1177
|
-
const _uI = "uploadId";
|
|
1178
|
-
const _uR = "upstreamRegistry";
|
|
1179
|
-
const _uRP = "upstreamRepositoryPrefix";
|
|
1180
|
-
const _uRU = "upstreamRegistryUrl";
|
|
1181
|
-
const _ur = "url";
|
|
1182
|
-
const _v = "value";
|
|
1183
|
-
const _vCA = "vendorCreatedAt";
|
|
1184
|
-
const _vI = "vulnerabilityId";
|
|
1185
|
-
const _vP = "vulnerablePackages";
|
|
1186
|
-
const _vS = "vendorSeverity";
|
|
1187
|
-
const _vSUA = "vulnerabilitySourceUpdatedAt";
|
|
1188
|
-
const _vUA = "vendorUpdatedAt";
|
|
1189
|
-
const _ve = "version";
|
|
1190
|
-
const n0 = "com.amazonaws.ecr";
|
|
1191
|
-
var Attribute$ = [3, n0, _A,
|
|
1192
|
-
0,
|
|
1193
|
-
[_k, _v],
|
|
1194
|
-
[0, 0], 1
|
|
1195
|
-
];
|
|
1196
|
-
var AuthorizationData$ = [3, n0, _AD,
|
|
1197
|
-
0,
|
|
1198
|
-
[_aT, _eA, _pE],
|
|
1199
|
-
[0, 4, 0]
|
|
1200
|
-
];
|
|
1201
|
-
var AwsEcrContainerImageDetails$ = [3, n0, _AECID,
|
|
1202
|
-
0,
|
|
1203
|
-
[_a, _au, _iH, _iT, _p, _pA, _lIUA, _iUC, _r, _rN],
|
|
1204
|
-
[0, 0, 0, 64 | 0, 0, 4, 4, 1, 0, 0]
|
|
1205
|
-
];
|
|
1206
|
-
var BatchCheckLayerAvailabilityRequest$ = [3, n0, _BCLAR,
|
|
1207
|
-
0,
|
|
1208
|
-
[_rN, _lD, _rI],
|
|
1209
|
-
[0, 64 | 0, 0], 2
|
|
1210
|
-
];
|
|
1211
|
-
var BatchCheckLayerAvailabilityResponse$ = [3, n0, _BCLARa,
|
|
1212
|
-
0,
|
|
1213
|
-
[_l, _f],
|
|
1214
|
-
[() => LayerList, () => LayerFailureList]
|
|
1215
|
-
];
|
|
1216
|
-
var BatchDeleteImageRequest$ = [3, n0, _BDIR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_rN, _iI, _rI],
|
|
1219
|
-
[0, () => ImageIdentifierList, 0], 2
|
|
1220
|
-
];
|
|
1221
|
-
var BatchDeleteImageResponse$ = [3, n0, _BDIRa,
|
|
1222
|
-
0,
|
|
1223
|
-
[_iI, _f],
|
|
1224
|
-
[() => ImageIdentifierList, () => ImageFailureList]
|
|
1225
|
-
];
|
|
1226
|
-
var BatchGetImageRequest$ = [3, n0, _BGIR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_rN, _iI, _rI, _aMT],
|
|
1229
|
-
[0, () => ImageIdentifierList, 0, 64 | 0], 2
|
|
1230
|
-
];
|
|
1231
|
-
var BatchGetImageResponse$ = [3, n0, _BGIRa,
|
|
1232
|
-
0,
|
|
1233
|
-
[_i, _f],
|
|
1234
|
-
[() => ImageList, () => ImageFailureList]
|
|
1235
|
-
];
|
|
1236
|
-
var BatchGetRepositoryScanningConfigurationRequest$ = [3, n0, _BGRSCR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_rNe],
|
|
1239
|
-
[64 | 0], 1
|
|
1240
|
-
];
|
|
1241
|
-
var BatchGetRepositoryScanningConfigurationResponse$ = [3, n0, _BGRSCRa,
|
|
1242
|
-
0,
|
|
1243
|
-
[_sC, _f],
|
|
1244
|
-
[() => RepositoryScanningConfigurationList, () => RepositoryScanningConfigurationFailureList]
|
|
1245
|
-
];
|
|
1246
|
-
var BlockedByOrganizationPolicyException$ = [-3, n0, _BBOPE,
|
|
1247
|
-
{ [_e]: _c },
|
|
1248
|
-
[_m],
|
|
1249
|
-
[0]
|
|
1250
|
-
];
|
|
1251
|
-
schema.TypeRegistry.for(n0).registerError(BlockedByOrganizationPolicyException$, BlockedByOrganizationPolicyException);
|
|
1252
|
-
var CompleteLayerUploadRequest$ = [3, n0, _CLUR,
|
|
1253
|
-
0,
|
|
1254
|
-
[_rN, _uI, _lD, _rI],
|
|
1255
|
-
[0, 0, 64 | 0, 0], 3
|
|
1256
|
-
];
|
|
1257
|
-
var CompleteLayerUploadResponse$ = [3, n0, _CLURo,
|
|
1258
|
-
0,
|
|
1259
|
-
[_rI, _rN, _uI, _lDa],
|
|
1260
|
-
[0, 0, 0, 0]
|
|
1261
|
-
];
|
|
1262
|
-
var CreatePullThroughCacheRuleRequest$ = [3, n0, _CPTCRR,
|
|
1263
|
-
0,
|
|
1264
|
-
[_eRP, _uRU, _rI, _uR, _cA, _cRA, _uRP],
|
|
1265
|
-
[0, 0, 0, 0, 0, 0, 0], 2
|
|
1266
|
-
];
|
|
1267
|
-
var CreatePullThroughCacheRuleResponse$ = [3, n0, _CPTCRRr,
|
|
1268
|
-
0,
|
|
1269
|
-
[_eRP, _uRU, _cAr, _rI, _uR, _cA, _cRA, _uRP],
|
|
1270
|
-
[0, 0, 4, 0, 0, 0, 0, 0]
|
|
1271
|
-
];
|
|
1272
|
-
var CreateRepositoryCreationTemplateRequest$ = [3, n0, _CRCTR,
|
|
1273
|
-
0,
|
|
1274
|
-
[_pr, _aF, _d, _eC, _rT, _iTM, _iTMEF, _rP, _lP, _cRA],
|
|
1275
|
-
[0, 64 | 0, 0, () => EncryptionConfigurationForRepositoryCreationTemplate$, () => TagList, 0, () => ImageTagMutabilityExclusionFilters, 0, 0, 0], 2
|
|
1276
|
-
];
|
|
1277
|
-
var CreateRepositoryCreationTemplateResponse$ = [3, n0, _CRCTRr,
|
|
1278
|
-
0,
|
|
1279
|
-
[_rI, _rCT],
|
|
1280
|
-
[0, () => RepositoryCreationTemplate$]
|
|
1281
|
-
];
|
|
1282
|
-
var CreateRepositoryRequest$ = [3, n0, _CRR,
|
|
1283
|
-
0,
|
|
1284
|
-
[_rN, _rI, _t, _iTM, _iTMEF, _iSC, _eC],
|
|
1285
|
-
[0, 0, () => TagList, 0, () => ImageTagMutabilityExclusionFilters, () => ImageScanningConfiguration$, () => EncryptionConfiguration$], 1
|
|
1286
|
-
];
|
|
1287
|
-
var CreateRepositoryResponse$ = [3, n0, _CRRr,
|
|
1288
|
-
0,
|
|
1289
|
-
[_re],
|
|
1290
|
-
[() => Repository$]
|
|
1291
|
-
];
|
|
1292
|
-
var CvssScore$ = [3, n0, _CS,
|
|
1293
|
-
0,
|
|
1294
|
-
[_bS, _sV, _s, _ve],
|
|
1295
|
-
[1, 0, 0, 0]
|
|
1296
|
-
];
|
|
1297
|
-
var CvssScoreAdjustment$ = [3, n0, _CSA,
|
|
1298
|
-
0,
|
|
1299
|
-
[_me, _rea],
|
|
1300
|
-
[0, 0]
|
|
1301
|
-
];
|
|
1302
|
-
var CvssScoreDetails$ = [3, n0, _CSD,
|
|
1303
|
-
0,
|
|
1304
|
-
[_ad, _sc, _sS, _sV, _ve],
|
|
1305
|
-
[() => CvssScoreAdjustmentList, 1, 0, 0, 0]
|
|
1306
|
-
];
|
|
1307
|
-
var DeleteLifecyclePolicyRequest$ = [3, n0, _DLPR,
|
|
1308
|
-
0,
|
|
1309
|
-
[_rN, _rI],
|
|
1310
|
-
[0, 0], 1
|
|
1311
|
-
];
|
|
1312
|
-
var DeleteLifecyclePolicyResponse$ = [3, n0, _DLPRe,
|
|
1313
|
-
0,
|
|
1314
|
-
[_rI, _rN, _lPT, _lEA],
|
|
1315
|
-
[0, 0, 0, 4]
|
|
1316
|
-
];
|
|
1317
|
-
var DeletePullThroughCacheRuleRequest$ = [3, n0, _DPTCRR,
|
|
1318
|
-
0,
|
|
1319
|
-
[_eRP, _rI],
|
|
1320
|
-
[0, 0], 1
|
|
1321
|
-
];
|
|
1322
|
-
var DeletePullThroughCacheRuleResponse$ = [3, n0, _DPTCRRe,
|
|
1323
|
-
0,
|
|
1324
|
-
[_eRP, _uRU, _cAr, _rI, _cA, _cRA, _uRP],
|
|
1325
|
-
[0, 0, 4, 0, 0, 0, 0]
|
|
1326
|
-
];
|
|
1327
|
-
var DeleteRegistryPolicyRequest$ = [3, n0, _DRPR,
|
|
1328
|
-
0,
|
|
1329
|
-
[],
|
|
1330
|
-
[]
|
|
1331
|
-
];
|
|
1332
|
-
var DeleteRegistryPolicyResponse$ = [3, n0, _DRPRe,
|
|
1333
|
-
0,
|
|
1334
|
-
[_rI, _pT],
|
|
1335
|
-
[0, 0]
|
|
1336
|
-
];
|
|
1337
|
-
var DeleteRepositoryCreationTemplateRequest$ = [3, n0, _DRCTR,
|
|
1338
|
-
0,
|
|
1339
|
-
[_pr],
|
|
1340
|
-
[0], 1
|
|
1341
|
-
];
|
|
1342
|
-
var DeleteRepositoryCreationTemplateResponse$ = [3, n0, _DRCTRe,
|
|
1343
|
-
0,
|
|
1344
|
-
[_rI, _rCT],
|
|
1345
|
-
[0, () => RepositoryCreationTemplate$]
|
|
1346
|
-
];
|
|
1347
|
-
var DeleteRepositoryPolicyRequest$ = [3, n0, _DRPRel,
|
|
1348
|
-
0,
|
|
1349
|
-
[_rN, _rI],
|
|
1350
|
-
[0, 0], 1
|
|
1351
|
-
];
|
|
1352
|
-
var DeleteRepositoryPolicyResponse$ = [3, n0, _DRPRele,
|
|
1353
|
-
0,
|
|
1354
|
-
[_rI, _rN, _pT],
|
|
1355
|
-
[0, 0, 0]
|
|
1356
|
-
];
|
|
1357
|
-
var DeleteRepositoryRequest$ = [3, n0, _DRR,
|
|
1358
|
-
0,
|
|
1359
|
-
[_rN, _rI, _fo],
|
|
1360
|
-
[0, 0, 2], 1
|
|
1361
|
-
];
|
|
1362
|
-
var DeleteRepositoryResponse$ = [3, n0, _DRRe,
|
|
1363
|
-
0,
|
|
1364
|
-
[_re],
|
|
1365
|
-
[() => Repository$]
|
|
1366
|
-
];
|
|
1367
|
-
var DeleteSigningConfigurationRequest$ = [3, n0, _DSCR,
|
|
1368
|
-
0,
|
|
1369
|
-
[],
|
|
1370
|
-
[]
|
|
1371
|
-
];
|
|
1372
|
-
var DeleteSigningConfigurationResponse$ = [3, n0, _DSCRe,
|
|
1373
|
-
0,
|
|
1374
|
-
[_rI, _sCi],
|
|
1375
|
-
[0, () => SigningConfiguration$]
|
|
1376
|
-
];
|
|
1377
|
-
var DeregisterPullTimeUpdateExclusionRequest$ = [3, n0, _DPTUER,
|
|
1378
|
-
0,
|
|
1379
|
-
[_pAr],
|
|
1380
|
-
[0], 1
|
|
1381
|
-
];
|
|
1382
|
-
var DeregisterPullTimeUpdateExclusionResponse$ = [3, n0, _DPTUERe,
|
|
1383
|
-
0,
|
|
1384
|
-
[_pAr],
|
|
1385
|
-
[0]
|
|
1386
|
-
];
|
|
1387
|
-
var DescribeImageReplicationStatusRequest$ = [3, n0, _DIRSR,
|
|
1388
|
-
0,
|
|
1389
|
-
[_rN, _iIm, _rI],
|
|
1390
|
-
[0, () => ImageIdentifier$, 0], 2
|
|
1391
|
-
];
|
|
1392
|
-
var DescribeImageReplicationStatusResponse$ = [3, n0, _DIRSRe,
|
|
1393
|
-
0,
|
|
1394
|
-
[_rN, _iIm, _rS],
|
|
1395
|
-
[0, () => ImageIdentifier$, () => ImageReplicationStatusList]
|
|
1396
|
-
];
|
|
1397
|
-
var DescribeImageScanFindingsRequest$ = [3, n0, _DISFR,
|
|
1398
|
-
0,
|
|
1399
|
-
[_rN, _iIm, _rI, _nT, _mR],
|
|
1400
|
-
[0, () => ImageIdentifier$, 0, 0, 1], 2
|
|
1401
|
-
];
|
|
1402
|
-
var DescribeImageScanFindingsResponse$ = [3, n0, _DISFRe,
|
|
1403
|
-
0,
|
|
1404
|
-
[_rI, _rN, _iIm, _iSS, _iSF, _nT],
|
|
1405
|
-
[0, 0, () => ImageIdentifier$, () => ImageScanStatus$, () => ImageScanFindings$, 0]
|
|
1406
|
-
];
|
|
1407
|
-
var DescribeImagesFilter$ = [3, n0, _DIF,
|
|
1408
|
-
0,
|
|
1409
|
-
[_tS, _iS],
|
|
1410
|
-
[0, 0]
|
|
1411
|
-
];
|
|
1412
|
-
var DescribeImageSigningStatusRequest$ = [3, n0, _DISSR,
|
|
1413
|
-
0,
|
|
1414
|
-
[_rN, _iIm, _rI],
|
|
1415
|
-
[0, () => ImageIdentifier$, 0], 2
|
|
1416
|
-
];
|
|
1417
|
-
var DescribeImageSigningStatusResponse$ = [3, n0, _DISSRe,
|
|
1418
|
-
0,
|
|
1419
|
-
[_rN, _iIm, _rI, _sSi],
|
|
1420
|
-
[0, () => ImageIdentifier$, 0, () => ImageSigningStatusList]
|
|
1421
|
-
];
|
|
1422
|
-
var DescribeImagesRequest$ = [3, n0, _DIR,
|
|
1423
|
-
0,
|
|
1424
|
-
[_rN, _rI, _iI, _nT, _mR, _fi],
|
|
1425
|
-
[0, 0, () => ImageIdentifierList, 0, 1, () => DescribeImagesFilter$], 1
|
|
1426
|
-
];
|
|
1427
|
-
var DescribeImagesResponse$ = [3, n0, _DIRe,
|
|
1428
|
-
0,
|
|
1429
|
-
[_iD, _nT],
|
|
1430
|
-
[() => ImageDetailList, 0]
|
|
1431
|
-
];
|
|
1432
|
-
var DescribePullThroughCacheRulesRequest$ = [3, n0, _DPTCRRes,
|
|
1433
|
-
0,
|
|
1434
|
-
[_rI, _eRPc, _nT, _mR],
|
|
1435
|
-
[0, 64 | 0, 0, 1]
|
|
1436
|
-
];
|
|
1437
|
-
var DescribePullThroughCacheRulesResponse$ = [3, n0, _DPTCRResc,
|
|
1438
|
-
0,
|
|
1439
|
-
[_pTCR, _nT],
|
|
1440
|
-
[() => PullThroughCacheRuleList, 0]
|
|
1441
|
-
];
|
|
1442
|
-
var DescribeRegistryRequest$ = [3, n0, _DRRes,
|
|
1443
|
-
0,
|
|
1444
|
-
[],
|
|
1445
|
-
[]
|
|
1446
|
-
];
|
|
1447
|
-
var DescribeRegistryResponse$ = [3, n0, _DRResc,
|
|
1448
|
-
0,
|
|
1449
|
-
[_rI, _rC],
|
|
1450
|
-
[0, () => ReplicationConfiguration$]
|
|
1451
|
-
];
|
|
1452
|
-
var DescribeRepositoriesRequest$ = [3, n0, _DRRescr,
|
|
1453
|
-
0,
|
|
1454
|
-
[_rI, _rNe, _nT, _mR],
|
|
1455
|
-
[0, 64 | 0, 0, 1]
|
|
1456
|
-
];
|
|
1457
|
-
var DescribeRepositoriesResponse$ = [3, n0, _DRRescri,
|
|
1458
|
-
0,
|
|
1459
|
-
[_rep, _nT],
|
|
1460
|
-
[() => RepositoryList, 0]
|
|
1461
|
-
];
|
|
1462
|
-
var DescribeRepositoryCreationTemplatesRequest$ = [3, n0, _DRCTRes,
|
|
1463
|
-
0,
|
|
1464
|
-
[_pre, _nT, _mR],
|
|
1465
|
-
[64 | 0, 0, 1]
|
|
1466
|
-
];
|
|
1467
|
-
var DescribeRepositoryCreationTemplatesResponse$ = [3, n0, _DRCTResc,
|
|
1468
|
-
0,
|
|
1469
|
-
[_rI, _rCTe, _nT],
|
|
1470
|
-
[0, () => RepositoryCreationTemplateList, 0]
|
|
1471
|
-
];
|
|
1472
|
-
var EmptyUploadException$ = [-3, n0, _EUE,
|
|
1473
|
-
{ [_e]: _c },
|
|
1474
|
-
[_m],
|
|
1475
|
-
[0]
|
|
1476
|
-
];
|
|
1477
|
-
schema.TypeRegistry.for(n0).registerError(EmptyUploadException$, EmptyUploadException);
|
|
1478
|
-
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
1479
|
-
0,
|
|
1480
|
-
[_eT, _kK],
|
|
1481
|
-
[0, 0], 1
|
|
1482
|
-
];
|
|
1483
|
-
var EncryptionConfigurationForRepositoryCreationTemplate$ = [3, n0, _ECFRCT,
|
|
1484
|
-
0,
|
|
1485
|
-
[_eT, _kK],
|
|
1486
|
-
[0, 0], 1
|
|
1487
|
-
];
|
|
1488
|
-
var EnhancedImageScanFinding$ = [3, n0, _EISF,
|
|
1489
|
-
0,
|
|
1490
|
-
[_aAI, _d, _fA, _fOA, _lOA, _pVD, _rem, _res, _sc, _sD, _se, _st, _ti, _ty, _uA, _fAi, _eAx],
|
|
1491
|
-
[0, 0, 0, 4, 4, () => PackageVulnerabilityDetails$, () => Remediation$, () => ResourceList, 1, () => ScoreDetails$, 0, 0, 0, 0, 4, 0, 0]
|
|
1492
|
-
];
|
|
1493
|
-
var ExclusionAlreadyExistsException$ = [-3, n0, _EAEE,
|
|
1494
|
-
{ [_e]: _c },
|
|
1495
|
-
[_m],
|
|
1496
|
-
[0]
|
|
1497
|
-
];
|
|
1498
|
-
schema.TypeRegistry.for(n0).registerError(ExclusionAlreadyExistsException$, ExclusionAlreadyExistsException);
|
|
1499
|
-
var ExclusionNotFoundException$ = [-3, n0, _ENFE,
|
|
1500
|
-
{ [_e]: _c },
|
|
1501
|
-
[_m],
|
|
1502
|
-
[0]
|
|
1503
|
-
];
|
|
1504
|
-
schema.TypeRegistry.for(n0).registerError(ExclusionNotFoundException$, ExclusionNotFoundException);
|
|
1505
|
-
var GetAccountSettingRequest$ = [3, n0, _GASR,
|
|
1506
|
-
0,
|
|
1507
|
-
[_n],
|
|
1508
|
-
[0], 1
|
|
1509
|
-
];
|
|
1510
|
-
var GetAccountSettingResponse$ = [3, n0, _GASRe,
|
|
1511
|
-
0,
|
|
1512
|
-
[_n, _v],
|
|
1513
|
-
[0, 0]
|
|
1514
|
-
];
|
|
1515
|
-
var GetAuthorizationTokenRequest$ = [3, n0, _GATR,
|
|
1516
|
-
0,
|
|
1517
|
-
[_rIe],
|
|
1518
|
-
[64 | 0]
|
|
1519
|
-
];
|
|
1520
|
-
var GetAuthorizationTokenResponse$ = [3, n0, _GATRe,
|
|
1521
|
-
0,
|
|
1522
|
-
[_aD],
|
|
1523
|
-
[() => AuthorizationDataList]
|
|
1524
|
-
];
|
|
1525
|
-
var GetDownloadUrlForLayerRequest$ = [3, n0, _GDUFLR,
|
|
1526
|
-
0,
|
|
1527
|
-
[_rN, _lDa, _rI],
|
|
1528
|
-
[0, 0, 0], 2
|
|
1529
|
-
];
|
|
1530
|
-
var GetDownloadUrlForLayerResponse$ = [3, n0, _GDUFLRe,
|
|
1531
|
-
0,
|
|
1532
|
-
[_dU, _lDa],
|
|
1533
|
-
[0, 0]
|
|
1534
|
-
];
|
|
1535
|
-
var GetLifecyclePolicyPreviewRequest$ = [3, n0, _GLPPR,
|
|
1536
|
-
0,
|
|
1537
|
-
[_rN, _rI, _iI, _nT, _mR, _fi],
|
|
1538
|
-
[0, 0, () => ImageIdentifierList, 0, 1, () => LifecyclePolicyPreviewFilter$], 1
|
|
1539
|
-
];
|
|
1540
|
-
var GetLifecyclePolicyPreviewResponse$ = [3, n0, _GLPPRe,
|
|
1541
|
-
0,
|
|
1542
|
-
[_rI, _rN, _lPT, _st, _nT, _pR, _su],
|
|
1543
|
-
[0, 0, 0, 0, 0, () => LifecyclePolicyPreviewResultList, () => LifecyclePolicyPreviewSummary$]
|
|
1544
|
-
];
|
|
1545
|
-
var GetLifecyclePolicyRequest$ = [3, n0, _GLPR,
|
|
1546
|
-
0,
|
|
1547
|
-
[_rN, _rI],
|
|
1548
|
-
[0, 0], 1
|
|
1549
|
-
];
|
|
1550
|
-
var GetLifecyclePolicyResponse$ = [3, n0, _GLPRe,
|
|
1551
|
-
0,
|
|
1552
|
-
[_rI, _rN, _lPT, _lEA],
|
|
1553
|
-
[0, 0, 0, 4]
|
|
1554
|
-
];
|
|
1555
|
-
var GetRegistryPolicyRequest$ = [3, n0, _GRPR,
|
|
1556
|
-
0,
|
|
1557
|
-
[],
|
|
1558
|
-
[]
|
|
1559
|
-
];
|
|
1560
|
-
var GetRegistryPolicyResponse$ = [3, n0, _GRPRe,
|
|
1561
|
-
0,
|
|
1562
|
-
[_rI, _pT],
|
|
1563
|
-
[0, 0]
|
|
1564
|
-
];
|
|
1565
|
-
var GetRegistryScanningConfigurationRequest$ = [3, n0, _GRSCR,
|
|
1566
|
-
0,
|
|
1567
|
-
[],
|
|
1568
|
-
[]
|
|
1569
|
-
];
|
|
1570
|
-
var GetRegistryScanningConfigurationResponse$ = [3, n0, _GRSCRe,
|
|
1571
|
-
0,
|
|
1572
|
-
[_rI, _sCc],
|
|
1573
|
-
[0, () => RegistryScanningConfiguration$]
|
|
1574
|
-
];
|
|
1575
|
-
var GetRepositoryPolicyRequest$ = [3, n0, _GRPRet,
|
|
1576
|
-
0,
|
|
1577
|
-
[_rN, _rI],
|
|
1578
|
-
[0, 0], 1
|
|
1579
|
-
];
|
|
1580
|
-
var GetRepositoryPolicyResponse$ = [3, n0, _GRPRete,
|
|
1581
|
-
0,
|
|
1582
|
-
[_rI, _rN, _pT],
|
|
1583
|
-
[0, 0, 0]
|
|
1584
|
-
];
|
|
1585
|
-
var GetSigningConfigurationRequest$ = [3, n0, _GSCR,
|
|
1586
|
-
0,
|
|
1587
|
-
[],
|
|
1588
|
-
[]
|
|
1589
|
-
];
|
|
1590
|
-
var GetSigningConfigurationResponse$ = [3, n0, _GSCRe,
|
|
1591
|
-
0,
|
|
1592
|
-
[_rI, _sCi],
|
|
1593
|
-
[0, () => SigningConfiguration$]
|
|
1594
|
-
];
|
|
1595
|
-
var Image$ = [3, n0, _I,
|
|
1596
|
-
0,
|
|
1597
|
-
[_rI, _rN, _iIm, _iM, _iMMT],
|
|
1598
|
-
[0, 0, () => ImageIdentifier$, 0, 0]
|
|
1599
|
-
];
|
|
1600
|
-
var ImageAlreadyExistsException$ = [-3, n0, _IAEE,
|
|
1601
|
-
{ [_e]: _c },
|
|
1602
|
-
[_m],
|
|
1603
|
-
[0]
|
|
1604
|
-
];
|
|
1605
|
-
schema.TypeRegistry.for(n0).registerError(ImageAlreadyExistsException$, ImageAlreadyExistsException);
|
|
1606
|
-
var ImageArchivedException$ = [-3, n0, _IAE,
|
|
1607
|
-
{ [_e]: _c },
|
|
1608
|
-
[_m],
|
|
1609
|
-
[0]
|
|
1610
|
-
];
|
|
1611
|
-
schema.TypeRegistry.for(n0).registerError(ImageArchivedException$, ImageArchivedException);
|
|
1612
|
-
var ImageDetail$ = [3, n0, _ID,
|
|
1613
|
-
0,
|
|
1614
|
-
[_rI, _rN, _iDm, _iT, _iSIB, _iPA, _iSS, _iSFS, _iMMT, _aMTr, _lRPT, _sMD, _iS, _lAA, _lAAa],
|
|
1615
|
-
[0, 0, 0, 64 | 0, 1, 4, () => ImageScanStatus$, () => ImageScanFindingsSummary$, 0, 0, 4, 0, 0, 4, 4]
|
|
1616
|
-
];
|
|
1617
|
-
var ImageDigestDoesNotMatchException$ = [-3, n0, _IDDNME,
|
|
1618
|
-
{ [_e]: _c },
|
|
1619
|
-
[_m],
|
|
1620
|
-
[0]
|
|
1621
|
-
];
|
|
1622
|
-
schema.TypeRegistry.for(n0).registerError(ImageDigestDoesNotMatchException$, ImageDigestDoesNotMatchException);
|
|
1623
|
-
var ImageFailure$ = [3, n0, _IF,
|
|
1624
|
-
0,
|
|
1625
|
-
[_iIm, _fC, _fR],
|
|
1626
|
-
[() => ImageIdentifier$, 0, 0]
|
|
1627
|
-
];
|
|
1628
|
-
var ImageIdentifier$ = [3, n0, _II,
|
|
1629
|
-
0,
|
|
1630
|
-
[_iDm, _iTm],
|
|
1631
|
-
[0, 0]
|
|
1632
|
-
];
|
|
1633
|
-
var ImageNotFoundException$ = [-3, n0, _INFE,
|
|
1634
|
-
{ [_e]: _c },
|
|
1635
|
-
[_m],
|
|
1636
|
-
[0]
|
|
1637
|
-
];
|
|
1638
|
-
schema.TypeRegistry.for(n0).registerError(ImageNotFoundException$, ImageNotFoundException);
|
|
1639
|
-
var ImageReferrer$ = [3, n0, _IR,
|
|
1640
|
-
0,
|
|
1641
|
-
[_di, _mT, _si, _aTr, _an, _aS],
|
|
1642
|
-
[0, 0, 1, 0, 128 | 0, 0], 3
|
|
1643
|
-
];
|
|
1644
|
-
var ImageReplicationStatus$ = [3, n0, _IRS,
|
|
1645
|
-
0,
|
|
1646
|
-
[_reg, _rI, _st, _fC],
|
|
1647
|
-
[0, 0, 0, 0]
|
|
1648
|
-
];
|
|
1649
|
-
var ImageScanFinding$ = [3, n0, _ISF,
|
|
1650
|
-
0,
|
|
1651
|
-
[_n, _d, _u, _se, _at],
|
|
1652
|
-
[0, 0, 0, 0, () => AttributeList]
|
|
1653
|
-
];
|
|
1654
|
-
var ImageScanFindings$ = [3, n0, _ISFm,
|
|
1655
|
-
0,
|
|
1656
|
-
[_iSCA, _vSUA, _fSC, _fin, _eF],
|
|
1657
|
-
[4, 4, 128 | 1, () => ImageScanFindingList, () => EnhancedImageScanFindingList]
|
|
1658
|
-
];
|
|
1659
|
-
var ImageScanFindingsSummary$ = [3, n0, _ISFS,
|
|
1660
|
-
0,
|
|
1661
|
-
[_iSCA, _vSUA, _fSC],
|
|
1662
|
-
[4, 4, 128 | 1]
|
|
1663
|
-
];
|
|
1664
|
-
var ImageScanningConfiguration$ = [3, n0, _ISC,
|
|
1665
|
-
0,
|
|
1666
|
-
[_sOP],
|
|
1667
|
-
[2]
|
|
1668
|
-
];
|
|
1669
|
-
var ImageScanStatus$ = [3, n0, _ISS,
|
|
1670
|
-
0,
|
|
1671
|
-
[_st, _d],
|
|
1672
|
-
[0, 0]
|
|
1673
|
-
];
|
|
1674
|
-
var ImageSigningStatus$ = [3, n0, _ISSm,
|
|
1675
|
-
0,
|
|
1676
|
-
[_sPA, _fC, _fR, _st],
|
|
1677
|
-
[0, 0, 0, 0]
|
|
1678
|
-
];
|
|
1679
|
-
var ImageStorageClassUpdateNotSupportedException$ = [-3, n0, _ISCUNSE,
|
|
1680
|
-
{ [_e]: _c },
|
|
1681
|
-
[_m],
|
|
1682
|
-
[0]
|
|
1683
|
-
];
|
|
1684
|
-
schema.TypeRegistry.for(n0).registerError(ImageStorageClassUpdateNotSupportedException$, ImageStorageClassUpdateNotSupportedException);
|
|
1685
|
-
var ImageTagAlreadyExistsException$ = [-3, n0, _ITAEE,
|
|
1686
|
-
{ [_e]: _c },
|
|
1687
|
-
[_m],
|
|
1688
|
-
[0]
|
|
1689
|
-
];
|
|
1690
|
-
schema.TypeRegistry.for(n0).registerError(ImageTagAlreadyExistsException$, ImageTagAlreadyExistsException);
|
|
1691
|
-
var ImageTagMutabilityExclusionFilter$ = [3, n0, _ITMEF,
|
|
1692
|
-
0,
|
|
1693
|
-
[_fT, _fi],
|
|
1694
|
-
[0, 0], 2
|
|
1695
|
-
];
|
|
1696
|
-
var InitiateLayerUploadRequest$ = [3, n0, _ILUR,
|
|
1697
|
-
0,
|
|
1698
|
-
[_rN, _rI],
|
|
1699
|
-
[0, 0], 1
|
|
1700
|
-
];
|
|
1701
|
-
var InitiateLayerUploadResponse$ = [3, n0, _ILURn,
|
|
1702
|
-
0,
|
|
1703
|
-
[_uI, _pS],
|
|
1704
|
-
[0, 1]
|
|
1705
|
-
];
|
|
1706
|
-
var InvalidLayerException$ = [-3, n0, _ILE,
|
|
1707
|
-
{ [_e]: _c },
|
|
1708
|
-
[_m],
|
|
1709
|
-
[0]
|
|
1710
|
-
];
|
|
1711
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerException$, InvalidLayerException);
|
|
1712
|
-
var InvalidLayerPartException$ = [-3, n0, _ILPE,
|
|
1713
|
-
{ [_e]: _c },
|
|
1714
|
-
[_rI, _rN, _uI, _lVBR, _m],
|
|
1715
|
-
[0, 0, 0, 1, 0]
|
|
1716
|
-
];
|
|
1717
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLayerPartException$, InvalidLayerPartException);
|
|
1718
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1719
|
-
{ [_e]: _c },
|
|
1720
|
-
[_m],
|
|
1721
|
-
[0]
|
|
1722
|
-
];
|
|
1723
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1724
|
-
var InvalidTagParameterException$ = [-3, n0, _ITPE,
|
|
1725
|
-
{ [_e]: _c },
|
|
1726
|
-
[_m],
|
|
1727
|
-
[0]
|
|
1728
|
-
];
|
|
1729
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTagParameterException$, InvalidTagParameterException);
|
|
1730
|
-
var KmsException$ = [-3, n0, _KE,
|
|
1731
|
-
{ [_e]: _c },
|
|
1732
|
-
[_m, _kE],
|
|
1733
|
-
[0, 0]
|
|
1734
|
-
];
|
|
1735
|
-
schema.TypeRegistry.for(n0).registerError(KmsException$, KmsException);
|
|
1736
|
-
var Layer$ = [3, n0, _L,
|
|
1737
|
-
0,
|
|
1738
|
-
[_lDa, _lA, _lS, _mT],
|
|
1739
|
-
[0, 0, 1, 0]
|
|
1740
|
-
];
|
|
1741
|
-
var LayerAlreadyExistsException$ = [-3, n0, _LAEE,
|
|
1742
|
-
{ [_e]: _c },
|
|
1743
|
-
[_m],
|
|
1744
|
-
[0]
|
|
1745
|
-
];
|
|
1746
|
-
schema.TypeRegistry.for(n0).registerError(LayerAlreadyExistsException$, LayerAlreadyExistsException);
|
|
1747
|
-
var LayerFailure$ = [3, n0, _LF,
|
|
1748
|
-
0,
|
|
1749
|
-
[_lDa, _fC, _fR],
|
|
1750
|
-
[0, 0, 0]
|
|
1751
|
-
];
|
|
1752
|
-
var LayerInaccessibleException$ = [-3, n0, _LIE,
|
|
1753
|
-
{ [_e]: _c },
|
|
1754
|
-
[_m],
|
|
1755
|
-
[0]
|
|
1756
|
-
];
|
|
1757
|
-
schema.TypeRegistry.for(n0).registerError(LayerInaccessibleException$, LayerInaccessibleException);
|
|
1758
|
-
var LayerPartTooSmallException$ = [-3, n0, _LPTSE,
|
|
1759
|
-
{ [_e]: _c },
|
|
1760
|
-
[_m],
|
|
1761
|
-
[0]
|
|
1762
|
-
];
|
|
1763
|
-
schema.TypeRegistry.for(n0).registerError(LayerPartTooSmallException$, LayerPartTooSmallException);
|
|
1764
|
-
var LayersNotFoundException$ = [-3, n0, _LNFE,
|
|
1765
|
-
{ [_e]: _c },
|
|
1766
|
-
[_m],
|
|
1767
|
-
[0]
|
|
1768
|
-
];
|
|
1769
|
-
schema.TypeRegistry.for(n0).registerError(LayersNotFoundException$, LayersNotFoundException);
|
|
1770
|
-
var LifecyclePolicyNotFoundException$ = [-3, n0, _LPNFE,
|
|
1771
|
-
{ [_e]: _c },
|
|
1772
|
-
[_m],
|
|
1773
|
-
[0]
|
|
1774
|
-
];
|
|
1775
|
-
schema.TypeRegistry.for(n0).registerError(LifecyclePolicyNotFoundException$, LifecyclePolicyNotFoundException);
|
|
1776
|
-
var LifecyclePolicyPreviewFilter$ = [3, n0, _LPPF,
|
|
1777
|
-
0,
|
|
1778
|
-
[_tS],
|
|
1779
|
-
[0]
|
|
1780
|
-
];
|
|
1781
|
-
var LifecyclePolicyPreviewInProgressException$ = [-3, n0, _LPPIPE,
|
|
1782
|
-
{ [_e]: _c },
|
|
1783
|
-
[_m],
|
|
1784
|
-
[0]
|
|
1785
|
-
];
|
|
1786
|
-
schema.TypeRegistry.for(n0).registerError(LifecyclePolicyPreviewInProgressException$, LifecyclePolicyPreviewInProgressException);
|
|
1787
|
-
var LifecyclePolicyPreviewNotFoundException$ = [-3, n0, _LPPNFE,
|
|
1788
|
-
{ [_e]: _c },
|
|
1789
|
-
[_m],
|
|
1790
|
-
[0]
|
|
1791
|
-
];
|
|
1792
|
-
schema.TypeRegistry.for(n0).registerError(LifecyclePolicyPreviewNotFoundException$, LifecyclePolicyPreviewNotFoundException);
|
|
1793
|
-
var LifecyclePolicyPreviewResult$ = [3, n0, _LPPR,
|
|
1794
|
-
0,
|
|
1795
|
-
[_iT, _iDm, _iPA, _ac, _aRP, _sCt],
|
|
1796
|
-
[64 | 0, 0, 4, () => LifecyclePolicyRuleAction$, 1, 0]
|
|
1797
|
-
];
|
|
1798
|
-
var LifecyclePolicyPreviewSummary$ = [3, n0, _LPPS,
|
|
1799
|
-
0,
|
|
1800
|
-
[_eITC, _tITC],
|
|
1801
|
-
[1, () => TransitioningImageTotalCounts]
|
|
1802
|
-
];
|
|
1803
|
-
var LifecyclePolicyRuleAction$ = [3, n0, _LPRA,
|
|
1804
|
-
0,
|
|
1805
|
-
[_ty, _tSC],
|
|
1806
|
-
[0, 0]
|
|
1807
|
-
];
|
|
1808
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1809
|
-
{ [_e]: _c },
|
|
1810
|
-
[_m],
|
|
1811
|
-
[0]
|
|
1812
|
-
];
|
|
1813
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1814
|
-
var ListImageReferrersFilter$ = [3, n0, _LIRF,
|
|
1815
|
-
0,
|
|
1816
|
-
[_aTrt, _aS],
|
|
1817
|
-
[64 | 0, 0]
|
|
1818
|
-
];
|
|
1819
|
-
var ListImageReferrersRequest$ = [3, n0, _LIRR,
|
|
1820
|
-
0,
|
|
1821
|
-
[_rN, _sI, _rI, _fi, _nT, _mR],
|
|
1822
|
-
[0, () => SubjectIdentifier$, 0, () => ListImageReferrersFilter$, 0, 1], 2
|
|
1823
|
-
];
|
|
1824
|
-
var ListImageReferrersResponse$ = [3, n0, _LIRRi,
|
|
1825
|
-
0,
|
|
1826
|
-
[_ref, _nT],
|
|
1827
|
-
[() => ImageReferrerList, 0]
|
|
1828
|
-
];
|
|
1829
|
-
var ListImagesFilter$ = [3, n0, _LIF,
|
|
1830
|
-
0,
|
|
1831
|
-
[_tS, _iS],
|
|
1832
|
-
[0, 0]
|
|
1833
|
-
];
|
|
1834
|
-
var ListImagesRequest$ = [3, n0, _LIR,
|
|
1835
|
-
0,
|
|
1836
|
-
[_rN, _rI, _nT, _mR, _fi],
|
|
1837
|
-
[0, 0, 0, 1, () => ListImagesFilter$], 1
|
|
1838
|
-
];
|
|
1839
|
-
var ListImagesResponse$ = [3, n0, _LIRi,
|
|
1840
|
-
0,
|
|
1841
|
-
[_iI, _nT],
|
|
1842
|
-
[() => ImageIdentifierList, 0]
|
|
1843
|
-
];
|
|
1844
|
-
var ListPullTimeUpdateExclusionsRequest$ = [3, n0, _LPTUER,
|
|
1845
|
-
0,
|
|
1846
|
-
[_mR, _nT],
|
|
1847
|
-
[1, 0]
|
|
1848
|
-
];
|
|
1849
|
-
var ListPullTimeUpdateExclusionsResponse$ = [3, n0, _LPTUERi,
|
|
1850
|
-
0,
|
|
1851
|
-
[_pTUE, _nT],
|
|
1852
|
-
[64 | 0, 0]
|
|
1853
|
-
];
|
|
1854
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1855
|
-
0,
|
|
1856
|
-
[_rA],
|
|
1857
|
-
[0], 1
|
|
1858
|
-
];
|
|
1859
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1860
|
-
0,
|
|
1861
|
-
[_t],
|
|
1862
|
-
[() => TagList]
|
|
1863
|
-
];
|
|
1864
|
-
var PackageVulnerabilityDetails$ = [3, n0, _PVD,
|
|
1865
|
-
0,
|
|
1866
|
-
[_cv, _rU, _rV, _s, _sU, _vCA, _vS, _vUA, _vI, _vP],
|
|
1867
|
-
[() => CvssScoreList, 64 | 0, 64 | 0, 0, 0, 4, 0, 4, 0, () => VulnerablePackagesList]
|
|
1868
|
-
];
|
|
1869
|
-
var PullThroughCacheRule$ = [3, n0, _PTCR,
|
|
1870
|
-
0,
|
|
1871
|
-
[_eRP, _uRU, _cAr, _rI, _cA, _cRA, _uRP, _uR, _uA],
|
|
1872
|
-
[0, 0, 4, 0, 0, 0, 0, 0, 4]
|
|
1873
|
-
];
|
|
1874
|
-
var PullThroughCacheRuleAlreadyExistsException$ = [-3, n0, _PTCRAEE,
|
|
1875
|
-
{ [_e]: _c },
|
|
1876
|
-
[_m],
|
|
1877
|
-
[0]
|
|
1878
|
-
];
|
|
1879
|
-
schema.TypeRegistry.for(n0).registerError(PullThroughCacheRuleAlreadyExistsException$, PullThroughCacheRuleAlreadyExistsException);
|
|
1880
|
-
var PullThroughCacheRuleNotFoundException$ = [-3, n0, _PTCRNFE,
|
|
1881
|
-
{ [_e]: _c },
|
|
1882
|
-
[_m],
|
|
1883
|
-
[0]
|
|
1884
|
-
];
|
|
1885
|
-
schema.TypeRegistry.for(n0).registerError(PullThroughCacheRuleNotFoundException$, PullThroughCacheRuleNotFoundException);
|
|
1886
|
-
var PutAccountSettingRequest$ = [3, n0, _PASR,
|
|
1887
|
-
0,
|
|
1888
|
-
[_n, _v],
|
|
1889
|
-
[0, 0], 2
|
|
1890
|
-
];
|
|
1891
|
-
var PutAccountSettingResponse$ = [3, n0, _PASRu,
|
|
1892
|
-
0,
|
|
1893
|
-
[_n, _v],
|
|
1894
|
-
[0, 0]
|
|
1895
|
-
];
|
|
1896
|
-
var PutImageRequest$ = [3, n0, _PIR,
|
|
1897
|
-
0,
|
|
1898
|
-
[_rN, _iM, _rI, _iMMT, _iTm, _iDm],
|
|
1899
|
-
[0, 0, 0, 0, 0, 0], 2
|
|
1900
|
-
];
|
|
1901
|
-
var PutImageResponse$ = [3, n0, _PIRu,
|
|
1902
|
-
0,
|
|
1903
|
-
[_im],
|
|
1904
|
-
[() => Image$]
|
|
1905
|
-
];
|
|
1906
|
-
var PutImageScanningConfigurationRequest$ = [3, n0, _PISCR,
|
|
1907
|
-
0,
|
|
1908
|
-
[_rN, _iSC, _rI],
|
|
1909
|
-
[0, () => ImageScanningConfiguration$, 0], 2
|
|
1910
|
-
];
|
|
1911
|
-
var PutImageScanningConfigurationResponse$ = [3, n0, _PISCRu,
|
|
1912
|
-
0,
|
|
1913
|
-
[_rI, _rN, _iSC],
|
|
1914
|
-
[0, 0, () => ImageScanningConfiguration$]
|
|
1915
|
-
];
|
|
1916
|
-
var PutImageTagMutabilityRequest$ = [3, n0, _PITMR,
|
|
1917
|
-
0,
|
|
1918
|
-
[_rN, _iTM, _rI, _iTMEF],
|
|
1919
|
-
[0, 0, 0, () => ImageTagMutabilityExclusionFilters], 2
|
|
1920
|
-
];
|
|
1921
|
-
var PutImageTagMutabilityResponse$ = [3, n0, _PITMRu,
|
|
1922
|
-
0,
|
|
1923
|
-
[_rI, _rN, _iTM, _iTMEF],
|
|
1924
|
-
[0, 0, 0, () => ImageTagMutabilityExclusionFilters]
|
|
1925
|
-
];
|
|
1926
|
-
var PutLifecyclePolicyRequest$ = [3, n0, _PLPR,
|
|
1927
|
-
0,
|
|
1928
|
-
[_rN, _lPT, _rI],
|
|
1929
|
-
[0, 0, 0], 2
|
|
1930
|
-
];
|
|
1931
|
-
var PutLifecyclePolicyResponse$ = [3, n0, _PLPRu,
|
|
1932
|
-
0,
|
|
1933
|
-
[_rI, _rN, _lPT],
|
|
1934
|
-
[0, 0, 0]
|
|
1935
|
-
];
|
|
1936
|
-
var PutRegistryPolicyRequest$ = [3, n0, _PRPR,
|
|
1937
|
-
0,
|
|
1938
|
-
[_pT],
|
|
1939
|
-
[0], 1
|
|
1940
|
-
];
|
|
1941
|
-
var PutRegistryPolicyResponse$ = [3, n0, _PRPRu,
|
|
1942
|
-
0,
|
|
1943
|
-
[_rI, _pT],
|
|
1944
|
-
[0, 0]
|
|
1945
|
-
];
|
|
1946
|
-
var PutRegistryScanningConfigurationRequest$ = [3, n0, _PRSCR,
|
|
1947
|
-
0,
|
|
1948
|
-
[_sT, _ru],
|
|
1949
|
-
[0, () => RegistryScanningRuleList]
|
|
1950
|
-
];
|
|
1951
|
-
var PutRegistryScanningConfigurationResponse$ = [3, n0, _PRSCRu,
|
|
1952
|
-
0,
|
|
1953
|
-
[_rSC],
|
|
1954
|
-
[() => RegistryScanningConfiguration$]
|
|
1955
|
-
];
|
|
1956
|
-
var PutReplicationConfigurationRequest$ = [3, n0, _PRCR,
|
|
1957
|
-
0,
|
|
1958
|
-
[_rC],
|
|
1959
|
-
[() => ReplicationConfiguration$], 1
|
|
1960
|
-
];
|
|
1961
|
-
var PutReplicationConfigurationResponse$ = [3, n0, _PRCRu,
|
|
1962
|
-
0,
|
|
1963
|
-
[_rC],
|
|
1964
|
-
[() => ReplicationConfiguration$]
|
|
1965
|
-
];
|
|
1966
|
-
var PutSigningConfigurationRequest$ = [3, n0, _PSCR,
|
|
1967
|
-
0,
|
|
1968
|
-
[_sCi],
|
|
1969
|
-
[() => SigningConfiguration$], 1
|
|
1970
|
-
];
|
|
1971
|
-
var PutSigningConfigurationResponse$ = [3, n0, _PSCRu,
|
|
1972
|
-
0,
|
|
1973
|
-
[_sCi],
|
|
1974
|
-
[() => SigningConfiguration$]
|
|
1975
|
-
];
|
|
1976
|
-
var Recommendation$ = [3, n0, _R,
|
|
1977
|
-
0,
|
|
1978
|
-
[_ur, _te],
|
|
1979
|
-
[0, 0]
|
|
1980
|
-
];
|
|
1981
|
-
var ReferencedImagesNotFoundException$ = [-3, n0, _RINFE,
|
|
1982
|
-
{ [_e]: _c },
|
|
1983
|
-
[_m],
|
|
1984
|
-
[0]
|
|
1985
|
-
];
|
|
1986
|
-
schema.TypeRegistry.for(n0).registerError(ReferencedImagesNotFoundException$, ReferencedImagesNotFoundException);
|
|
1987
|
-
var RegisterPullTimeUpdateExclusionRequest$ = [3, n0, _RPTUER,
|
|
1988
|
-
0,
|
|
1989
|
-
[_pAr],
|
|
1990
|
-
[0], 1
|
|
1991
|
-
];
|
|
1992
|
-
var RegisterPullTimeUpdateExclusionResponse$ = [3, n0, _RPTUERe,
|
|
1993
|
-
0,
|
|
1994
|
-
[_pAr, _cAr],
|
|
1995
|
-
[0, 4]
|
|
1996
|
-
];
|
|
1997
|
-
var RegistryPolicyNotFoundException$ = [-3, n0, _RPNFE,
|
|
1998
|
-
{ [_e]: _c },
|
|
1999
|
-
[_m],
|
|
2000
|
-
[0]
|
|
2001
|
-
];
|
|
2002
|
-
schema.TypeRegistry.for(n0).registerError(RegistryPolicyNotFoundException$, RegistryPolicyNotFoundException);
|
|
2003
|
-
var RegistryScanningConfiguration$ = [3, n0, _RSC,
|
|
2004
|
-
0,
|
|
2005
|
-
[_sT, _ru],
|
|
2006
|
-
[0, () => RegistryScanningRuleList]
|
|
2007
|
-
];
|
|
2008
|
-
var RegistryScanningRule$ = [3, n0, _RSR,
|
|
2009
|
-
0,
|
|
2010
|
-
[_sF, _rF],
|
|
2011
|
-
[0, () => ScanningRepositoryFilterList], 2
|
|
2012
|
-
];
|
|
2013
|
-
var Remediation$ = [3, n0, _Re,
|
|
2014
|
-
0,
|
|
2015
|
-
[_rec],
|
|
2016
|
-
[() => Recommendation$]
|
|
2017
|
-
];
|
|
2018
|
-
var ReplicationConfiguration$ = [3, n0, _RC,
|
|
2019
|
-
0,
|
|
2020
|
-
[_ru],
|
|
2021
|
-
[() => ReplicationRuleList], 1
|
|
2022
|
-
];
|
|
2023
|
-
var ReplicationDestination$ = [3, n0, _RD,
|
|
2024
|
-
0,
|
|
2025
|
-
[_reg, _rI],
|
|
2026
|
-
[0, 0], 2
|
|
2027
|
-
];
|
|
2028
|
-
var ReplicationRule$ = [3, n0, _RR,
|
|
2029
|
-
0,
|
|
2030
|
-
[_de, _rF],
|
|
2031
|
-
[() => ReplicationDestinationList, () => RepositoryFilterList], 1
|
|
2032
|
-
];
|
|
2033
|
-
var Repository$ = [3, n0, _Rep,
|
|
2034
|
-
0,
|
|
2035
|
-
[_rAe, _rI, _rN, _rUe, _cAr, _iTM, _iTMEF, _iSC, _eC],
|
|
2036
|
-
[0, 0, 0, 0, 4, 0, () => ImageTagMutabilityExclusionFilters, () => ImageScanningConfiguration$, () => EncryptionConfiguration$]
|
|
2037
|
-
];
|
|
2038
|
-
var RepositoryAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
2039
|
-
{ [_e]: _c },
|
|
2040
|
-
[_m],
|
|
2041
|
-
[0]
|
|
2042
|
-
];
|
|
2043
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryAlreadyExistsException$, RepositoryAlreadyExistsException);
|
|
2044
|
-
var RepositoryCreationTemplate$ = [3, n0, _RCT,
|
|
2045
|
-
0,
|
|
2046
|
-
[_pr, _d, _eC, _rT, _iTM, _iTMEF, _rP, _lP, _aF, _cRA, _cAr, _uA],
|
|
2047
|
-
[0, 0, () => EncryptionConfigurationForRepositoryCreationTemplate$, () => TagList, 0, () => ImageTagMutabilityExclusionFilters, 0, 0, 64 | 0, 0, 4, 4]
|
|
2048
|
-
];
|
|
2049
|
-
var RepositoryFilter$ = [3, n0, _RF,
|
|
2050
|
-
0,
|
|
2051
|
-
[_fi, _fT],
|
|
2052
|
-
[0, 0], 2
|
|
2053
|
-
];
|
|
2054
|
-
var RepositoryNotEmptyException$ = [-3, n0, _RNEE,
|
|
2055
|
-
{ [_e]: _c },
|
|
2056
|
-
[_m],
|
|
2057
|
-
[0]
|
|
2058
|
-
];
|
|
2059
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotEmptyException$, RepositoryNotEmptyException);
|
|
2060
|
-
var RepositoryNotFoundException$ = [-3, n0, _RNFE,
|
|
2061
|
-
{ [_e]: _c },
|
|
2062
|
-
[_m],
|
|
2063
|
-
[0]
|
|
2064
|
-
];
|
|
2065
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryNotFoundException$, RepositoryNotFoundException);
|
|
2066
|
-
var RepositoryPolicyNotFoundException$ = [-3, n0, _RPNFEe,
|
|
2067
|
-
{ [_e]: _c },
|
|
2068
|
-
[_m],
|
|
2069
|
-
[0]
|
|
2070
|
-
];
|
|
2071
|
-
schema.TypeRegistry.for(n0).registerError(RepositoryPolicyNotFoundException$, RepositoryPolicyNotFoundException);
|
|
2072
|
-
var RepositoryScanningConfiguration$ = [3, n0, _RSCe,
|
|
2073
|
-
0,
|
|
2074
|
-
[_rAe, _rN, _sOP, _sF, _aSF],
|
|
2075
|
-
[0, 0, 2, 0, () => ScanningRepositoryFilterList]
|
|
2076
|
-
];
|
|
2077
|
-
var RepositoryScanningConfigurationFailure$ = [3, n0, _RSCF,
|
|
2078
|
-
0,
|
|
2079
|
-
[_rN, _fC, _fR],
|
|
2080
|
-
[0, 0, 0]
|
|
2081
|
-
];
|
|
2082
|
-
var Resource$ = [3, n0, _Res,
|
|
2083
|
-
0,
|
|
2084
|
-
[_det, _id, _t, _ty],
|
|
2085
|
-
[() => ResourceDetails$, 0, 128 | 0, 0]
|
|
2086
|
-
];
|
|
2087
|
-
var ResourceDetails$ = [3, n0, _RDe,
|
|
2088
|
-
0,
|
|
2089
|
-
[_aECI],
|
|
2090
|
-
[() => AwsEcrContainerImageDetails$]
|
|
2091
|
-
];
|
|
2092
|
-
var ScanningRepositoryFilter$ = [3, n0, _SRF,
|
|
2093
|
-
0,
|
|
2094
|
-
[_fi, _fT],
|
|
2095
|
-
[0, 0], 2
|
|
2096
|
-
];
|
|
2097
|
-
var ScanNotFoundException$ = [-3, n0, _SNFE,
|
|
2098
|
-
{ [_e]: _c },
|
|
2099
|
-
[_m],
|
|
2100
|
-
[0]
|
|
2101
|
-
];
|
|
2102
|
-
schema.TypeRegistry.for(n0).registerError(ScanNotFoundException$, ScanNotFoundException);
|
|
2103
|
-
var ScoreDetails$ = [3, n0, _SD,
|
|
2104
|
-
0,
|
|
2105
|
-
[_cv],
|
|
2106
|
-
[() => CvssScoreDetails$]
|
|
2107
|
-
];
|
|
2108
|
-
var SecretNotFoundException$ = [-3, n0, _SNFEe,
|
|
2109
|
-
{ [_e]: _c },
|
|
2110
|
-
[_m],
|
|
2111
|
-
[0]
|
|
2112
|
-
];
|
|
2113
|
-
schema.TypeRegistry.for(n0).registerError(SecretNotFoundException$, SecretNotFoundException);
|
|
2114
|
-
var ServerException$ = [-3, n0, _SE,
|
|
2115
|
-
{ [_e]: _ser },
|
|
2116
|
-
[_m],
|
|
2117
|
-
[0]
|
|
2118
|
-
];
|
|
2119
|
-
schema.TypeRegistry.for(n0).registerError(ServerException$, ServerException);
|
|
2120
|
-
var SetRepositoryPolicyRequest$ = [3, n0, _SRPR,
|
|
2121
|
-
0,
|
|
2122
|
-
[_rN, _pT, _rI, _fo],
|
|
2123
|
-
[0, 0, 0, 2], 2
|
|
2124
|
-
];
|
|
2125
|
-
var SetRepositoryPolicyResponse$ = [3, n0, _SRPRe,
|
|
2126
|
-
0,
|
|
2127
|
-
[_rI, _rN, _pT],
|
|
2128
|
-
[0, 0, 0]
|
|
2129
|
-
];
|
|
2130
|
-
var SigningConfiguration$ = [3, n0, _SC,
|
|
2131
|
-
0,
|
|
2132
|
-
[_ru],
|
|
2133
|
-
[() => SigningRuleList], 1
|
|
2134
|
-
];
|
|
2135
|
-
var SigningConfigurationNotFoundException$ = [-3, n0, _SCNFE,
|
|
2136
|
-
{ [_e]: _c },
|
|
2137
|
-
[_m],
|
|
2138
|
-
[0]
|
|
2139
|
-
];
|
|
2140
|
-
schema.TypeRegistry.for(n0).registerError(SigningConfigurationNotFoundException$, SigningConfigurationNotFoundException);
|
|
2141
|
-
var SigningRepositoryFilter$ = [3, n0, _SRFi,
|
|
2142
|
-
0,
|
|
2143
|
-
[_fi, _fT],
|
|
2144
|
-
[0, 0], 2
|
|
2145
|
-
];
|
|
2146
|
-
var SigningRule$ = [3, n0, _SR,
|
|
2147
|
-
0,
|
|
2148
|
-
[_sPA, _rF],
|
|
2149
|
-
[0, () => SigningRepositoryFilterList], 1
|
|
2150
|
-
];
|
|
2151
|
-
var StartImageScanRequest$ = [3, n0, _SISR,
|
|
2152
|
-
0,
|
|
2153
|
-
[_rN, _iIm, _rI],
|
|
2154
|
-
[0, () => ImageIdentifier$, 0], 2
|
|
2155
|
-
];
|
|
2156
|
-
var StartImageScanResponse$ = [3, n0, _SISRt,
|
|
2157
|
-
0,
|
|
2158
|
-
[_rI, _rN, _iIm, _iSS],
|
|
2159
|
-
[0, 0, () => ImageIdentifier$, () => ImageScanStatus$]
|
|
2160
|
-
];
|
|
2161
|
-
var StartLifecyclePolicyPreviewRequest$ = [3, n0, _SLPPR,
|
|
2162
|
-
0,
|
|
2163
|
-
[_rN, _rI, _lPT],
|
|
2164
|
-
[0, 0, 0], 1
|
|
2165
|
-
];
|
|
2166
|
-
var StartLifecyclePolicyPreviewResponse$ = [3, n0, _SLPPRt,
|
|
2167
|
-
0,
|
|
2168
|
-
[_rI, _rN, _lPT, _st],
|
|
2169
|
-
[0, 0, 0, 0]
|
|
2170
|
-
];
|
|
2171
|
-
var SubjectIdentifier$ = [3, n0, _SI,
|
|
2172
|
-
0,
|
|
2173
|
-
[_iDm],
|
|
2174
|
-
[0], 1
|
|
2175
|
-
];
|
|
2176
|
-
var Tag$ = [3, n0, _T,
|
|
2177
|
-
0,
|
|
2178
|
-
[_K, _V],
|
|
2179
|
-
[0, 0], 2
|
|
2180
|
-
];
|
|
2181
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2182
|
-
0,
|
|
2183
|
-
[_rA, _t],
|
|
2184
|
-
[0, () => TagList], 2
|
|
2185
|
-
];
|
|
2186
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2187
|
-
0,
|
|
2188
|
-
[],
|
|
2189
|
-
[]
|
|
2190
|
-
];
|
|
2191
|
-
var TemplateAlreadyExistsException$ = [-3, n0, _TAEE,
|
|
2192
|
-
{ [_e]: _c },
|
|
2193
|
-
[_m],
|
|
2194
|
-
[0]
|
|
2195
|
-
];
|
|
2196
|
-
schema.TypeRegistry.for(n0).registerError(TemplateAlreadyExistsException$, TemplateAlreadyExistsException);
|
|
2197
|
-
var TemplateNotFoundException$ = [-3, n0, _TNFE,
|
|
2198
|
-
{ [_e]: _c },
|
|
2199
|
-
[_m],
|
|
2200
|
-
[0]
|
|
2201
|
-
];
|
|
2202
|
-
schema.TypeRegistry.for(n0).registerError(TemplateNotFoundException$, TemplateNotFoundException);
|
|
2203
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
2204
|
-
{ [_e]: _c },
|
|
2205
|
-
[_m],
|
|
2206
|
-
[0]
|
|
2207
|
-
];
|
|
2208
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
2209
|
-
var TransitioningImageTotalCount$ = [3, n0, _TITC,
|
|
2210
|
-
0,
|
|
2211
|
-
[_tSC, _iTC],
|
|
2212
|
-
[0, 1]
|
|
2213
|
-
];
|
|
2214
|
-
var UnableToAccessSecretException$ = [-3, n0, _UTASE,
|
|
2215
|
-
{ [_e]: _c },
|
|
2216
|
-
[_m],
|
|
2217
|
-
[0]
|
|
2218
|
-
];
|
|
2219
|
-
schema.TypeRegistry.for(n0).registerError(UnableToAccessSecretException$, UnableToAccessSecretException);
|
|
2220
|
-
var UnableToDecryptSecretValueException$ = [-3, n0, _UTDSVE,
|
|
2221
|
-
{ [_e]: _c },
|
|
2222
|
-
[_m],
|
|
2223
|
-
[0]
|
|
2224
|
-
];
|
|
2225
|
-
schema.TypeRegistry.for(n0).registerError(UnableToDecryptSecretValueException$, UnableToDecryptSecretValueException);
|
|
2226
|
-
var UnableToGetUpstreamImageException$ = [-3, n0, _UTGUIE,
|
|
2227
|
-
{ [_e]: _c },
|
|
2228
|
-
[_m],
|
|
2229
|
-
[0]
|
|
2230
|
-
];
|
|
2231
|
-
schema.TypeRegistry.for(n0).registerError(UnableToGetUpstreamImageException$, UnableToGetUpstreamImageException);
|
|
2232
|
-
var UnableToGetUpstreamLayerException$ = [-3, n0, _UTGULE,
|
|
2233
|
-
{ [_e]: _c },
|
|
2234
|
-
[_m],
|
|
2235
|
-
[0]
|
|
2236
|
-
];
|
|
2237
|
-
schema.TypeRegistry.for(n0).registerError(UnableToGetUpstreamLayerException$, UnableToGetUpstreamLayerException);
|
|
2238
|
-
var UnsupportedImageTypeException$ = [-3, n0, _UITE,
|
|
2239
|
-
{ [_e]: _c },
|
|
2240
|
-
[_m],
|
|
2241
|
-
[0]
|
|
2242
|
-
];
|
|
2243
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedImageTypeException$, UnsupportedImageTypeException);
|
|
2244
|
-
var UnsupportedUpstreamRegistryException$ = [-3, n0, _UURE,
|
|
2245
|
-
{ [_e]: _c },
|
|
2246
|
-
[_m],
|
|
2247
|
-
[0]
|
|
2248
|
-
];
|
|
2249
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedUpstreamRegistryException$, UnsupportedUpstreamRegistryException);
|
|
2250
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2251
|
-
0,
|
|
2252
|
-
[_rA, _tK],
|
|
2253
|
-
[0, 64 | 0], 2
|
|
2254
|
-
];
|
|
2255
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2256
|
-
0,
|
|
2257
|
-
[],
|
|
2258
|
-
[]
|
|
2259
|
-
];
|
|
2260
|
-
var UpdateImageStorageClassRequest$ = [3, n0, _UISCR,
|
|
2261
|
-
0,
|
|
2262
|
-
[_rN, _iIm, _tSC, _rI],
|
|
2263
|
-
[0, () => ImageIdentifier$, 0, 0], 3
|
|
2264
|
-
];
|
|
2265
|
-
var UpdateImageStorageClassResponse$ = [3, n0, _UISCRp,
|
|
2266
|
-
0,
|
|
2267
|
-
[_rI, _rN, _iIm, _iS],
|
|
2268
|
-
[0, 0, () => ImageIdentifier$, 0]
|
|
2269
|
-
];
|
|
2270
|
-
var UpdatePullThroughCacheRuleRequest$ = [3, n0, _UPTCRR,
|
|
2271
|
-
0,
|
|
2272
|
-
[_eRP, _rI, _cA, _cRA],
|
|
2273
|
-
[0, 0, 0, 0], 1
|
|
2274
|
-
];
|
|
2275
|
-
var UpdatePullThroughCacheRuleResponse$ = [3, n0, _UPTCRRp,
|
|
2276
|
-
0,
|
|
2277
|
-
[_eRP, _rI, _uA, _cA, _cRA, _uRP],
|
|
2278
|
-
[0, 0, 4, 0, 0, 0]
|
|
2279
|
-
];
|
|
2280
|
-
var UpdateRepositoryCreationTemplateRequest$ = [3, n0, _URCTR,
|
|
2281
|
-
0,
|
|
2282
|
-
[_pr, _d, _eC, _rT, _iTM, _iTMEF, _rP, _lP, _aF, _cRA],
|
|
2283
|
-
[0, 0, () => EncryptionConfigurationForRepositoryCreationTemplate$, () => TagList, 0, () => ImageTagMutabilityExclusionFilters, 0, 0, 64 | 0, 0], 1
|
|
2284
|
-
];
|
|
2285
|
-
var UpdateRepositoryCreationTemplateResponse$ = [3, n0, _URCTRp,
|
|
2286
|
-
0,
|
|
2287
|
-
[_rI, _rCT],
|
|
2288
|
-
[0, () => RepositoryCreationTemplate$]
|
|
2289
|
-
];
|
|
2290
|
-
var UploadLayerPartRequest$ = [3, n0, _ULPR,
|
|
2291
|
-
0,
|
|
2292
|
-
[_rN, _uI, _pFB, _pLB, _lPB, _rI],
|
|
2293
|
-
[0, 0, 1, 1, 21, 0], 5
|
|
2294
|
-
];
|
|
2295
|
-
var UploadLayerPartResponse$ = [3, n0, _ULPRp,
|
|
2296
|
-
0,
|
|
2297
|
-
[_rI, _rN, _uI, _lBR],
|
|
2298
|
-
[0, 0, 0, 1]
|
|
2299
|
-
];
|
|
2300
|
-
var UploadNotFoundException$ = [-3, n0, _UNFE,
|
|
2301
|
-
{ [_e]: _c },
|
|
2302
|
-
[_m],
|
|
2303
|
-
[0]
|
|
2304
|
-
];
|
|
2305
|
-
schema.TypeRegistry.for(n0).registerError(UploadNotFoundException$, UploadNotFoundException);
|
|
2306
|
-
var ValidatePullThroughCacheRuleRequest$ = [3, n0, _VPTCRR,
|
|
2307
|
-
0,
|
|
2308
|
-
[_eRP, _rI],
|
|
2309
|
-
[0, 0], 1
|
|
2310
|
-
];
|
|
2311
|
-
var ValidatePullThroughCacheRuleResponse$ = [3, n0, _VPTCRRa,
|
|
2312
|
-
0,
|
|
2313
|
-
[_eRP, _rI, _uRU, _cA, _cRA, _uRP, _iV, _fa],
|
|
2314
|
-
[0, 0, 0, 0, 0, 0, 2, 0]
|
|
2315
|
-
];
|
|
2316
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
2317
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2318
|
-
[_m],
|
|
2319
|
-
[0]
|
|
2320
|
-
];
|
|
2321
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
2322
|
-
var VulnerablePackage$ = [3, n0, _VP,
|
|
2323
|
-
0,
|
|
2324
|
-
[_ar, _ep, _fP, _n, _pM, _rel, _sLH, _ve, _fIV],
|
|
2325
|
-
[0, 1, 0, 0, 0, 0, 0, 0, 0]
|
|
2326
|
-
];
|
|
2327
|
-
var ECRServiceException$ = [-3, _sm, "ECRServiceException", 0, [], []];
|
|
2328
|
-
schema.TypeRegistry.for(_sm).registerError(ECRServiceException$, ECRServiceException);
|
|
2329
|
-
var AttributeList = [1, n0, _AL,
|
|
2330
|
-
0, () => Attribute$
|
|
2331
|
-
];
|
|
2332
|
-
var AuthorizationDataList = [1, n0, _ADL,
|
|
2333
|
-
0, () => AuthorizationData$
|
|
2334
|
-
];
|
|
2335
|
-
var CvssScoreAdjustmentList = [1, n0, _CSAL,
|
|
2336
|
-
0, () => CvssScoreAdjustment$
|
|
2337
|
-
];
|
|
2338
|
-
var CvssScoreList = [1, n0, _CSL,
|
|
2339
|
-
0, () => CvssScore$
|
|
2340
|
-
];
|
|
2341
|
-
var EnhancedImageScanFindingList = [1, n0, _EISFL,
|
|
2342
|
-
0, () => EnhancedImageScanFinding$
|
|
2343
|
-
];
|
|
2344
|
-
var ImageDetailList = [1, n0, _IDL,
|
|
2345
|
-
0, () => ImageDetail$
|
|
2346
|
-
];
|
|
2347
|
-
var ImageFailureList = [1, n0, _IFL,
|
|
2348
|
-
0, () => ImageFailure$
|
|
2349
|
-
];
|
|
2350
|
-
var ImageIdentifierList = [1, n0, _IIL,
|
|
2351
|
-
0, () => ImageIdentifier$
|
|
2352
|
-
];
|
|
2353
|
-
var ImageList = [1, n0, _IL,
|
|
2354
|
-
0, () => Image$
|
|
2355
|
-
];
|
|
2356
|
-
var ImageReferrerList = [1, n0, _IRL,
|
|
2357
|
-
0, () => ImageReferrer$
|
|
2358
|
-
];
|
|
2359
|
-
var ImageReplicationStatusList = [1, n0, _IRSL,
|
|
2360
|
-
0, () => ImageReplicationStatus$
|
|
2361
|
-
];
|
|
2362
|
-
var ImageScanFindingList = [1, n0, _ISFL,
|
|
2363
|
-
0, () => ImageScanFinding$
|
|
2364
|
-
];
|
|
2365
|
-
var ImageSigningStatusList = [1, n0, _ISSL,
|
|
2366
|
-
0, () => ImageSigningStatus$
|
|
2367
|
-
];
|
|
2368
|
-
var ImageTagMutabilityExclusionFilters = [1, n0, _ITMEFm,
|
|
2369
|
-
0, () => ImageTagMutabilityExclusionFilter$
|
|
2370
|
-
];
|
|
2371
|
-
var LayerFailureList = [1, n0, _LFL,
|
|
2372
|
-
0, () => LayerFailure$
|
|
2373
|
-
];
|
|
2374
|
-
var LayerList = [1, n0, _LL,
|
|
2375
|
-
0, () => Layer$
|
|
2376
|
-
];
|
|
2377
|
-
var LifecyclePolicyPreviewResultList = [1, n0, _LPPRL,
|
|
2378
|
-
0, () => LifecyclePolicyPreviewResult$
|
|
2379
|
-
];
|
|
2380
|
-
var PullThroughCacheRuleList = [1, n0, _PTCRL,
|
|
2381
|
-
0, () => PullThroughCacheRule$
|
|
2382
|
-
];
|
|
2383
|
-
var RegistryScanningRuleList = [1, n0, _RSRL,
|
|
2384
|
-
0, () => RegistryScanningRule$
|
|
2385
|
-
];
|
|
2386
|
-
var ReplicationDestinationList = [1, n0, _RDL,
|
|
2387
|
-
0, () => ReplicationDestination$
|
|
2388
|
-
];
|
|
2389
|
-
var ReplicationRuleList = [1, n0, _RRL,
|
|
2390
|
-
0, () => ReplicationRule$
|
|
2391
|
-
];
|
|
2392
|
-
var RepositoryCreationTemplateList = [1, n0, _RCTL,
|
|
2393
|
-
0, () => RepositoryCreationTemplate$
|
|
2394
|
-
];
|
|
2395
|
-
var RepositoryFilterList = [1, n0, _RFL,
|
|
2396
|
-
0, () => RepositoryFilter$
|
|
2397
|
-
];
|
|
2398
|
-
var RepositoryList = [1, n0, _RL,
|
|
2399
|
-
0, () => Repository$
|
|
2400
|
-
];
|
|
2401
|
-
var RepositoryScanningConfigurationFailureList = [1, n0, _RSCFL,
|
|
2402
|
-
0, () => RepositoryScanningConfigurationFailure$
|
|
2403
|
-
];
|
|
2404
|
-
var RepositoryScanningConfigurationList = [1, n0, _RSCL,
|
|
2405
|
-
0, () => RepositoryScanningConfiguration$
|
|
2406
|
-
];
|
|
2407
|
-
var ResourceList = [1, n0, _RLe,
|
|
2408
|
-
0, () => Resource$
|
|
2409
|
-
];
|
|
2410
|
-
var ScanningRepositoryFilterList = [1, n0, _SRFL,
|
|
2411
|
-
0, () => ScanningRepositoryFilter$
|
|
2412
|
-
];
|
|
2413
|
-
var SigningRepositoryFilterList = [1, n0, _SRFLi,
|
|
2414
|
-
0, () => SigningRepositoryFilter$
|
|
2415
|
-
];
|
|
2416
|
-
var SigningRuleList = [1, n0, _SRL,
|
|
2417
|
-
0, () => SigningRule$
|
|
2418
|
-
];
|
|
2419
|
-
var TagList = [1, n0, _TL,
|
|
2420
|
-
0, () => Tag$
|
|
2421
|
-
];
|
|
2422
|
-
var TransitioningImageTotalCounts = [1, n0, _TITCr,
|
|
2423
|
-
0, () => TransitioningImageTotalCount$
|
|
2424
|
-
];
|
|
2425
|
-
var VulnerablePackagesList = [1, n0, _VPL,
|
|
2426
|
-
0, () => VulnerablePackage$
|
|
2427
|
-
];
|
|
2428
|
-
var BatchCheckLayerAvailability$ = [9, n0, _BCLA,
|
|
2429
|
-
0, () => BatchCheckLayerAvailabilityRequest$, () => BatchCheckLayerAvailabilityResponse$
|
|
2430
|
-
];
|
|
2431
|
-
var BatchDeleteImage$ = [9, n0, _BDI,
|
|
2432
|
-
0, () => BatchDeleteImageRequest$, () => BatchDeleteImageResponse$
|
|
2433
|
-
];
|
|
2434
|
-
var BatchGetImage$ = [9, n0, _BGI,
|
|
2435
|
-
0, () => BatchGetImageRequest$, () => BatchGetImageResponse$
|
|
2436
|
-
];
|
|
2437
|
-
var BatchGetRepositoryScanningConfiguration$ = [9, n0, _BGRSC,
|
|
2438
|
-
0, () => BatchGetRepositoryScanningConfigurationRequest$, () => BatchGetRepositoryScanningConfigurationResponse$
|
|
2439
|
-
];
|
|
2440
|
-
var CompleteLayerUpload$ = [9, n0, _CLU,
|
|
2441
|
-
0, () => CompleteLayerUploadRequest$, () => CompleteLayerUploadResponse$
|
|
2442
|
-
];
|
|
2443
|
-
var CreatePullThroughCacheRule$ = [9, n0, _CPTCR,
|
|
2444
|
-
0, () => CreatePullThroughCacheRuleRequest$, () => CreatePullThroughCacheRuleResponse$
|
|
2445
|
-
];
|
|
2446
|
-
var CreateRepository$ = [9, n0, _CR,
|
|
2447
|
-
0, () => CreateRepositoryRequest$, () => CreateRepositoryResponse$
|
|
2448
|
-
];
|
|
2449
|
-
var CreateRepositoryCreationTemplate$ = [9, n0, _CRCT,
|
|
2450
|
-
0, () => CreateRepositoryCreationTemplateRequest$, () => CreateRepositoryCreationTemplateResponse$
|
|
2451
|
-
];
|
|
2452
|
-
var DeleteLifecyclePolicy$ = [9, n0, _DLP,
|
|
2453
|
-
0, () => DeleteLifecyclePolicyRequest$, () => DeleteLifecyclePolicyResponse$
|
|
2454
|
-
];
|
|
2455
|
-
var DeletePullThroughCacheRule$ = [9, n0, _DPTCR,
|
|
2456
|
-
0, () => DeletePullThroughCacheRuleRequest$, () => DeletePullThroughCacheRuleResponse$
|
|
2457
|
-
];
|
|
2458
|
-
var DeleteRegistryPolicy$ = [9, n0, _DRP,
|
|
2459
|
-
0, () => DeleteRegistryPolicyRequest$, () => DeleteRegistryPolicyResponse$
|
|
2460
|
-
];
|
|
2461
|
-
var DeleteRepository$ = [9, n0, _DR,
|
|
2462
|
-
0, () => DeleteRepositoryRequest$, () => DeleteRepositoryResponse$
|
|
2463
|
-
];
|
|
2464
|
-
var DeleteRepositoryCreationTemplate$ = [9, n0, _DRCT,
|
|
2465
|
-
0, () => DeleteRepositoryCreationTemplateRequest$, () => DeleteRepositoryCreationTemplateResponse$
|
|
2466
|
-
];
|
|
2467
|
-
var DeleteRepositoryPolicy$ = [9, n0, _DRPe,
|
|
2468
|
-
0, () => DeleteRepositoryPolicyRequest$, () => DeleteRepositoryPolicyResponse$
|
|
2469
|
-
];
|
|
2470
|
-
var DeleteSigningConfiguration$ = [9, n0, _DSC,
|
|
2471
|
-
0, () => DeleteSigningConfigurationRequest$, () => DeleteSigningConfigurationResponse$
|
|
2472
|
-
];
|
|
2473
|
-
var DeregisterPullTimeUpdateExclusion$ = [9, n0, _DPTUE,
|
|
2474
|
-
0, () => DeregisterPullTimeUpdateExclusionRequest$, () => DeregisterPullTimeUpdateExclusionResponse$
|
|
2475
|
-
];
|
|
2476
|
-
var DescribeImageReplicationStatus$ = [9, n0, _DIRS,
|
|
2477
|
-
0, () => DescribeImageReplicationStatusRequest$, () => DescribeImageReplicationStatusResponse$
|
|
2478
|
-
];
|
|
2479
|
-
var DescribeImages$ = [9, n0, _DI,
|
|
2480
|
-
0, () => DescribeImagesRequest$, () => DescribeImagesResponse$
|
|
2481
|
-
];
|
|
2482
|
-
var DescribeImageScanFindings$ = [9, n0, _DISF,
|
|
2483
|
-
0, () => DescribeImageScanFindingsRequest$, () => DescribeImageScanFindingsResponse$
|
|
2484
|
-
];
|
|
2485
|
-
var DescribeImageSigningStatus$ = [9, n0, _DISS,
|
|
2486
|
-
0, () => DescribeImageSigningStatusRequest$, () => DescribeImageSigningStatusResponse$
|
|
2487
|
-
];
|
|
2488
|
-
var DescribePullThroughCacheRules$ = [9, n0, _DPTCRe,
|
|
2489
|
-
0, () => DescribePullThroughCacheRulesRequest$, () => DescribePullThroughCacheRulesResponse$
|
|
2490
|
-
];
|
|
2491
|
-
var DescribeRegistry$ = [9, n0, _DRe,
|
|
2492
|
-
0, () => DescribeRegistryRequest$, () => DescribeRegistryResponse$
|
|
2493
|
-
];
|
|
2494
|
-
var DescribeRepositories$ = [9, n0, _DRes,
|
|
2495
|
-
0, () => DescribeRepositoriesRequest$, () => DescribeRepositoriesResponse$
|
|
2496
|
-
];
|
|
2497
|
-
var DescribeRepositoryCreationTemplates$ = [9, n0, _DRCTe,
|
|
2498
|
-
0, () => DescribeRepositoryCreationTemplatesRequest$, () => DescribeRepositoryCreationTemplatesResponse$
|
|
2499
|
-
];
|
|
2500
|
-
var GetAccountSetting$ = [9, n0, _GAS,
|
|
2501
|
-
0, () => GetAccountSettingRequest$, () => GetAccountSettingResponse$
|
|
2502
|
-
];
|
|
2503
|
-
var GetAuthorizationToken$ = [9, n0, _GAT,
|
|
2504
|
-
0, () => GetAuthorizationTokenRequest$, () => GetAuthorizationTokenResponse$
|
|
2505
|
-
];
|
|
2506
|
-
var GetDownloadUrlForLayer$ = [9, n0, _GDUFL,
|
|
2507
|
-
0, () => GetDownloadUrlForLayerRequest$, () => GetDownloadUrlForLayerResponse$
|
|
2508
|
-
];
|
|
2509
|
-
var GetLifecyclePolicy$ = [9, n0, _GLP,
|
|
2510
|
-
0, () => GetLifecyclePolicyRequest$, () => GetLifecyclePolicyResponse$
|
|
2511
|
-
];
|
|
2512
|
-
var GetLifecyclePolicyPreview$ = [9, n0, _GLPP,
|
|
2513
|
-
0, () => GetLifecyclePolicyPreviewRequest$, () => GetLifecyclePolicyPreviewResponse$
|
|
2514
|
-
];
|
|
2515
|
-
var GetRegistryPolicy$ = [9, n0, _GRP,
|
|
2516
|
-
0, () => GetRegistryPolicyRequest$, () => GetRegistryPolicyResponse$
|
|
2517
|
-
];
|
|
2518
|
-
var GetRegistryScanningConfiguration$ = [9, n0, _GRSC,
|
|
2519
|
-
0, () => GetRegistryScanningConfigurationRequest$, () => GetRegistryScanningConfigurationResponse$
|
|
2520
|
-
];
|
|
2521
|
-
var GetRepositoryPolicy$ = [9, n0, _GRPe,
|
|
2522
|
-
0, () => GetRepositoryPolicyRequest$, () => GetRepositoryPolicyResponse$
|
|
2523
|
-
];
|
|
2524
|
-
var GetSigningConfiguration$ = [9, n0, _GSC,
|
|
2525
|
-
0, () => GetSigningConfigurationRequest$, () => GetSigningConfigurationResponse$
|
|
2526
|
-
];
|
|
2527
|
-
var InitiateLayerUpload$ = [9, n0, _ILU,
|
|
2528
|
-
0, () => InitiateLayerUploadRequest$, () => InitiateLayerUploadResponse$
|
|
2529
|
-
];
|
|
2530
|
-
var ListImageReferrers$ = [9, n0, _LIRis,
|
|
2531
|
-
0, () => ListImageReferrersRequest$, () => ListImageReferrersResponse$
|
|
2532
|
-
];
|
|
2533
|
-
var ListImages$ = [9, n0, _LI,
|
|
2534
|
-
0, () => ListImagesRequest$, () => ListImagesResponse$
|
|
2535
|
-
];
|
|
2536
|
-
var ListPullTimeUpdateExclusions$ = [9, n0, _LPTUE,
|
|
2537
|
-
0, () => ListPullTimeUpdateExclusionsRequest$, () => ListPullTimeUpdateExclusionsResponse$
|
|
2538
|
-
];
|
|
2539
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2540
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2541
|
-
];
|
|
2542
|
-
var PutAccountSetting$ = [9, n0, _PAS,
|
|
2543
|
-
0, () => PutAccountSettingRequest$, () => PutAccountSettingResponse$
|
|
2544
|
-
];
|
|
2545
|
-
var PutImage$ = [9, n0, _PI,
|
|
2546
|
-
0, () => PutImageRequest$, () => PutImageResponse$
|
|
2547
|
-
];
|
|
2548
|
-
var PutImageScanningConfiguration$ = [9, n0, _PISC,
|
|
2549
|
-
0, () => PutImageScanningConfigurationRequest$, () => PutImageScanningConfigurationResponse$
|
|
2550
|
-
];
|
|
2551
|
-
var PutImageTagMutability$ = [9, n0, _PITM,
|
|
2552
|
-
0, () => PutImageTagMutabilityRequest$, () => PutImageTagMutabilityResponse$
|
|
2553
|
-
];
|
|
2554
|
-
var PutLifecyclePolicy$ = [9, n0, _PLP,
|
|
2555
|
-
0, () => PutLifecyclePolicyRequest$, () => PutLifecyclePolicyResponse$
|
|
2556
|
-
];
|
|
2557
|
-
var PutRegistryPolicy$ = [9, n0, _PRP,
|
|
2558
|
-
0, () => PutRegistryPolicyRequest$, () => PutRegistryPolicyResponse$
|
|
2559
|
-
];
|
|
2560
|
-
var PutRegistryScanningConfiguration$ = [9, n0, _PRSC,
|
|
2561
|
-
0, () => PutRegistryScanningConfigurationRequest$, () => PutRegistryScanningConfigurationResponse$
|
|
2562
|
-
];
|
|
2563
|
-
var PutReplicationConfiguration$ = [9, n0, _PRC,
|
|
2564
|
-
0, () => PutReplicationConfigurationRequest$, () => PutReplicationConfigurationResponse$
|
|
2565
|
-
];
|
|
2566
|
-
var PutSigningConfiguration$ = [9, n0, _PSC,
|
|
2567
|
-
0, () => PutSigningConfigurationRequest$, () => PutSigningConfigurationResponse$
|
|
2568
|
-
];
|
|
2569
|
-
var RegisterPullTimeUpdateExclusion$ = [9, n0, _RPTUE,
|
|
2570
|
-
0, () => RegisterPullTimeUpdateExclusionRequest$, () => RegisterPullTimeUpdateExclusionResponse$
|
|
2571
|
-
];
|
|
2572
|
-
var SetRepositoryPolicy$ = [9, n0, _SRP,
|
|
2573
|
-
0, () => SetRepositoryPolicyRequest$, () => SetRepositoryPolicyResponse$
|
|
2574
|
-
];
|
|
2575
|
-
var StartImageScan$ = [9, n0, _SIS,
|
|
2576
|
-
0, () => StartImageScanRequest$, () => StartImageScanResponse$
|
|
2577
|
-
];
|
|
2578
|
-
var StartLifecyclePolicyPreview$ = [9, n0, _SLPP,
|
|
2579
|
-
0, () => StartLifecyclePolicyPreviewRequest$, () => StartLifecyclePolicyPreviewResponse$
|
|
2580
|
-
];
|
|
2581
|
-
var TagResource$ = [9, n0, _TR,
|
|
2582
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2583
|
-
];
|
|
2584
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2585
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2586
|
-
];
|
|
2587
|
-
var UpdateImageStorageClass$ = [9, n0, _UISC,
|
|
2588
|
-
0, () => UpdateImageStorageClassRequest$, () => UpdateImageStorageClassResponse$
|
|
2589
|
-
];
|
|
2590
|
-
var UpdatePullThroughCacheRule$ = [9, n0, _UPTCR,
|
|
2591
|
-
0, () => UpdatePullThroughCacheRuleRequest$, () => UpdatePullThroughCacheRuleResponse$
|
|
2592
|
-
];
|
|
2593
|
-
var UpdateRepositoryCreationTemplate$ = [9, n0, _URCT,
|
|
2594
|
-
0, () => UpdateRepositoryCreationTemplateRequest$, () => UpdateRepositoryCreationTemplateResponse$
|
|
2595
|
-
];
|
|
2596
|
-
var UploadLayerPart$ = [9, n0, _ULP,
|
|
2597
|
-
0, () => UploadLayerPartRequest$, () => UploadLayerPartResponse$
|
|
2598
|
-
];
|
|
2599
|
-
var ValidatePullThroughCacheRule$ = [9, n0, _VPTCR,
|
|
2600
|
-
0, () => ValidatePullThroughCacheRuleRequest$, () => ValidatePullThroughCacheRuleResponse$
|
|
2601
|
-
];
|
|
2602
|
-
|
|
2603
117
|
class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
2604
118
|
.classBuilder()
|
|
2605
119
|
.ep(commonParams)
|
|
@@ -2608,7 +122,7 @@ class BatchCheckLayerAvailabilityCommand extends smithyClient.Command
|
|
|
2608
122
|
})
|
|
2609
123
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchCheckLayerAvailability", {})
|
|
2610
124
|
.n("ECRClient", "BatchCheckLayerAvailabilityCommand")
|
|
2611
|
-
.sc(BatchCheckLayerAvailability$)
|
|
125
|
+
.sc(schemas_0.BatchCheckLayerAvailability$)
|
|
2612
126
|
.build() {
|
|
2613
127
|
}
|
|
2614
128
|
|
|
@@ -2620,7 +134,7 @@ class BatchDeleteImageCommand extends smithyClient.Command
|
|
|
2620
134
|
})
|
|
2621
135
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchDeleteImage", {})
|
|
2622
136
|
.n("ECRClient", "BatchDeleteImageCommand")
|
|
2623
|
-
.sc(BatchDeleteImage$)
|
|
137
|
+
.sc(schemas_0.BatchDeleteImage$)
|
|
2624
138
|
.build() {
|
|
2625
139
|
}
|
|
2626
140
|
|
|
@@ -2632,7 +146,7 @@ class BatchGetImageCommand extends smithyClient.Command
|
|
|
2632
146
|
})
|
|
2633
147
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchGetImage", {})
|
|
2634
148
|
.n("ECRClient", "BatchGetImageCommand")
|
|
2635
|
-
.sc(BatchGetImage$)
|
|
149
|
+
.sc(schemas_0.BatchGetImage$)
|
|
2636
150
|
.build() {
|
|
2637
151
|
}
|
|
2638
152
|
|
|
@@ -2644,7 +158,7 @@ class BatchGetRepositoryScanningConfigurationCommand extends smithyClient.Comman
|
|
|
2644
158
|
})
|
|
2645
159
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchGetRepositoryScanningConfiguration", {})
|
|
2646
160
|
.n("ECRClient", "BatchGetRepositoryScanningConfigurationCommand")
|
|
2647
|
-
.sc(BatchGetRepositoryScanningConfiguration$)
|
|
161
|
+
.sc(schemas_0.BatchGetRepositoryScanningConfiguration$)
|
|
2648
162
|
.build() {
|
|
2649
163
|
}
|
|
2650
164
|
|
|
@@ -2656,7 +170,7 @@ class CompleteLayerUploadCommand extends smithyClient.Command
|
|
|
2656
170
|
})
|
|
2657
171
|
.s("AmazonEC2ContainerRegistry_V20150921", "CompleteLayerUpload", {})
|
|
2658
172
|
.n("ECRClient", "CompleteLayerUploadCommand")
|
|
2659
|
-
.sc(CompleteLayerUpload$)
|
|
173
|
+
.sc(schemas_0.CompleteLayerUpload$)
|
|
2660
174
|
.build() {
|
|
2661
175
|
}
|
|
2662
176
|
|
|
@@ -2668,7 +182,7 @@ class CreatePullThroughCacheRuleCommand extends smithyClient.Command
|
|
|
2668
182
|
})
|
|
2669
183
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreatePullThroughCacheRule", {})
|
|
2670
184
|
.n("ECRClient", "CreatePullThroughCacheRuleCommand")
|
|
2671
|
-
.sc(CreatePullThroughCacheRule$)
|
|
185
|
+
.sc(schemas_0.CreatePullThroughCacheRule$)
|
|
2672
186
|
.build() {
|
|
2673
187
|
}
|
|
2674
188
|
|
|
@@ -2680,7 +194,7 @@ class CreateRepositoryCommand extends smithyClient.Command
|
|
|
2680
194
|
})
|
|
2681
195
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreateRepository", {})
|
|
2682
196
|
.n("ECRClient", "CreateRepositoryCommand")
|
|
2683
|
-
.sc(CreateRepository$)
|
|
197
|
+
.sc(schemas_0.CreateRepository$)
|
|
2684
198
|
.build() {
|
|
2685
199
|
}
|
|
2686
200
|
|
|
@@ -2692,7 +206,7 @@ class CreateRepositoryCreationTemplateCommand extends smithyClient.Command
|
|
|
2692
206
|
})
|
|
2693
207
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreateRepositoryCreationTemplate", {})
|
|
2694
208
|
.n("ECRClient", "CreateRepositoryCreationTemplateCommand")
|
|
2695
|
-
.sc(CreateRepositoryCreationTemplate$)
|
|
209
|
+
.sc(schemas_0.CreateRepositoryCreationTemplate$)
|
|
2696
210
|
.build() {
|
|
2697
211
|
}
|
|
2698
212
|
|
|
@@ -2704,7 +218,7 @@ class DeleteLifecyclePolicyCommand extends smithyClient.Command
|
|
|
2704
218
|
})
|
|
2705
219
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteLifecyclePolicy", {})
|
|
2706
220
|
.n("ECRClient", "DeleteLifecyclePolicyCommand")
|
|
2707
|
-
.sc(DeleteLifecyclePolicy$)
|
|
221
|
+
.sc(schemas_0.DeleteLifecyclePolicy$)
|
|
2708
222
|
.build() {
|
|
2709
223
|
}
|
|
2710
224
|
|
|
@@ -2716,7 +230,7 @@ class DeletePullThroughCacheRuleCommand extends smithyClient.Command
|
|
|
2716
230
|
})
|
|
2717
231
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeletePullThroughCacheRule", {})
|
|
2718
232
|
.n("ECRClient", "DeletePullThroughCacheRuleCommand")
|
|
2719
|
-
.sc(DeletePullThroughCacheRule$)
|
|
233
|
+
.sc(schemas_0.DeletePullThroughCacheRule$)
|
|
2720
234
|
.build() {
|
|
2721
235
|
}
|
|
2722
236
|
|
|
@@ -2728,7 +242,7 @@ class DeleteRegistryPolicyCommand extends smithyClient.Command
|
|
|
2728
242
|
})
|
|
2729
243
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRegistryPolicy", {})
|
|
2730
244
|
.n("ECRClient", "DeleteRegistryPolicyCommand")
|
|
2731
|
-
.sc(DeleteRegistryPolicy$)
|
|
245
|
+
.sc(schemas_0.DeleteRegistryPolicy$)
|
|
2732
246
|
.build() {
|
|
2733
247
|
}
|
|
2734
248
|
|
|
@@ -2740,7 +254,7 @@ class DeleteRepositoryCommand extends smithyClient.Command
|
|
|
2740
254
|
})
|
|
2741
255
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepository", {})
|
|
2742
256
|
.n("ECRClient", "DeleteRepositoryCommand")
|
|
2743
|
-
.sc(DeleteRepository$)
|
|
257
|
+
.sc(schemas_0.DeleteRepository$)
|
|
2744
258
|
.build() {
|
|
2745
259
|
}
|
|
2746
260
|
|
|
@@ -2752,7 +266,7 @@ class DeleteRepositoryCreationTemplateCommand extends smithyClient.Command
|
|
|
2752
266
|
})
|
|
2753
267
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryCreationTemplate", {})
|
|
2754
268
|
.n("ECRClient", "DeleteRepositoryCreationTemplateCommand")
|
|
2755
|
-
.sc(DeleteRepositoryCreationTemplate$)
|
|
269
|
+
.sc(schemas_0.DeleteRepositoryCreationTemplate$)
|
|
2756
270
|
.build() {
|
|
2757
271
|
}
|
|
2758
272
|
|
|
@@ -2764,7 +278,7 @@ class DeleteRepositoryPolicyCommand extends smithyClient.Command
|
|
|
2764
278
|
})
|
|
2765
279
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryPolicy", {})
|
|
2766
280
|
.n("ECRClient", "DeleteRepositoryPolicyCommand")
|
|
2767
|
-
.sc(DeleteRepositoryPolicy$)
|
|
281
|
+
.sc(schemas_0.DeleteRepositoryPolicy$)
|
|
2768
282
|
.build() {
|
|
2769
283
|
}
|
|
2770
284
|
|
|
@@ -2776,7 +290,7 @@ class DeleteSigningConfigurationCommand extends smithyClient.Command
|
|
|
2776
290
|
})
|
|
2777
291
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteSigningConfiguration", {})
|
|
2778
292
|
.n("ECRClient", "DeleteSigningConfigurationCommand")
|
|
2779
|
-
.sc(DeleteSigningConfiguration$)
|
|
293
|
+
.sc(schemas_0.DeleteSigningConfiguration$)
|
|
2780
294
|
.build() {
|
|
2781
295
|
}
|
|
2782
296
|
|
|
@@ -2788,7 +302,7 @@ class DeregisterPullTimeUpdateExclusionCommand extends smithyClient.Command
|
|
|
2788
302
|
})
|
|
2789
303
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeregisterPullTimeUpdateExclusion", {})
|
|
2790
304
|
.n("ECRClient", "DeregisterPullTimeUpdateExclusionCommand")
|
|
2791
|
-
.sc(DeregisterPullTimeUpdateExclusion$)
|
|
305
|
+
.sc(schemas_0.DeregisterPullTimeUpdateExclusion$)
|
|
2792
306
|
.build() {
|
|
2793
307
|
}
|
|
2794
308
|
|
|
@@ -2800,7 +314,7 @@ class DescribeImageReplicationStatusCommand extends smithyClient.Command
|
|
|
2800
314
|
})
|
|
2801
315
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageReplicationStatus", {})
|
|
2802
316
|
.n("ECRClient", "DescribeImageReplicationStatusCommand")
|
|
2803
|
-
.sc(DescribeImageReplicationStatus$)
|
|
317
|
+
.sc(schemas_0.DescribeImageReplicationStatus$)
|
|
2804
318
|
.build() {
|
|
2805
319
|
}
|
|
2806
320
|
|
|
@@ -2812,7 +326,7 @@ class DescribeImageScanFindingsCommand extends smithyClient.Command
|
|
|
2812
326
|
})
|
|
2813
327
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageScanFindings", {})
|
|
2814
328
|
.n("ECRClient", "DescribeImageScanFindingsCommand")
|
|
2815
|
-
.sc(DescribeImageScanFindings$)
|
|
329
|
+
.sc(schemas_0.DescribeImageScanFindings$)
|
|
2816
330
|
.build() {
|
|
2817
331
|
}
|
|
2818
332
|
|
|
@@ -2824,7 +338,7 @@ class DescribeImagesCommand extends smithyClient.Command
|
|
|
2824
338
|
})
|
|
2825
339
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImages", {})
|
|
2826
340
|
.n("ECRClient", "DescribeImagesCommand")
|
|
2827
|
-
.sc(DescribeImages$)
|
|
341
|
+
.sc(schemas_0.DescribeImages$)
|
|
2828
342
|
.build() {
|
|
2829
343
|
}
|
|
2830
344
|
|
|
@@ -2836,7 +350,7 @@ class DescribeImageSigningStatusCommand extends smithyClient.Command
|
|
|
2836
350
|
})
|
|
2837
351
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageSigningStatus", {})
|
|
2838
352
|
.n("ECRClient", "DescribeImageSigningStatusCommand")
|
|
2839
|
-
.sc(DescribeImageSigningStatus$)
|
|
353
|
+
.sc(schemas_0.DescribeImageSigningStatus$)
|
|
2840
354
|
.build() {
|
|
2841
355
|
}
|
|
2842
356
|
|
|
@@ -2848,7 +362,7 @@ class DescribePullThroughCacheRulesCommand extends smithyClient.Command
|
|
|
2848
362
|
})
|
|
2849
363
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribePullThroughCacheRules", {})
|
|
2850
364
|
.n("ECRClient", "DescribePullThroughCacheRulesCommand")
|
|
2851
|
-
.sc(DescribePullThroughCacheRules$)
|
|
365
|
+
.sc(schemas_0.DescribePullThroughCacheRules$)
|
|
2852
366
|
.build() {
|
|
2853
367
|
}
|
|
2854
368
|
|
|
@@ -2860,7 +374,7 @@ class DescribeRegistryCommand extends smithyClient.Command
|
|
|
2860
374
|
})
|
|
2861
375
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRegistry", {})
|
|
2862
376
|
.n("ECRClient", "DescribeRegistryCommand")
|
|
2863
|
-
.sc(DescribeRegistry$)
|
|
377
|
+
.sc(schemas_0.DescribeRegistry$)
|
|
2864
378
|
.build() {
|
|
2865
379
|
}
|
|
2866
380
|
|
|
@@ -2872,7 +386,7 @@ class DescribeRepositoriesCommand extends smithyClient.Command
|
|
|
2872
386
|
})
|
|
2873
387
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositories", {})
|
|
2874
388
|
.n("ECRClient", "DescribeRepositoriesCommand")
|
|
2875
|
-
.sc(DescribeRepositories$)
|
|
389
|
+
.sc(schemas_0.DescribeRepositories$)
|
|
2876
390
|
.build() {
|
|
2877
391
|
}
|
|
2878
392
|
|
|
@@ -2884,7 +398,7 @@ class DescribeRepositoryCreationTemplatesCommand extends smithyClient.Command
|
|
|
2884
398
|
})
|
|
2885
399
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositoryCreationTemplates", {})
|
|
2886
400
|
.n("ECRClient", "DescribeRepositoryCreationTemplatesCommand")
|
|
2887
|
-
.sc(DescribeRepositoryCreationTemplates$)
|
|
401
|
+
.sc(schemas_0.DescribeRepositoryCreationTemplates$)
|
|
2888
402
|
.build() {
|
|
2889
403
|
}
|
|
2890
404
|
|
|
@@ -2896,7 +410,7 @@ class GetAccountSettingCommand extends smithyClient.Command
|
|
|
2896
410
|
})
|
|
2897
411
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetAccountSetting", {})
|
|
2898
412
|
.n("ECRClient", "GetAccountSettingCommand")
|
|
2899
|
-
.sc(GetAccountSetting$)
|
|
413
|
+
.sc(schemas_0.GetAccountSetting$)
|
|
2900
414
|
.build() {
|
|
2901
415
|
}
|
|
2902
416
|
|
|
@@ -2908,7 +422,7 @@ class GetAuthorizationTokenCommand extends smithyClient.Command
|
|
|
2908
422
|
})
|
|
2909
423
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetAuthorizationToken", {})
|
|
2910
424
|
.n("ECRClient", "GetAuthorizationTokenCommand")
|
|
2911
|
-
.sc(GetAuthorizationToken$)
|
|
425
|
+
.sc(schemas_0.GetAuthorizationToken$)
|
|
2912
426
|
.build() {
|
|
2913
427
|
}
|
|
2914
428
|
|
|
@@ -2920,7 +434,7 @@ class GetDownloadUrlForLayerCommand extends smithyClient.Command
|
|
|
2920
434
|
})
|
|
2921
435
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetDownloadUrlForLayer", {})
|
|
2922
436
|
.n("ECRClient", "GetDownloadUrlForLayerCommand")
|
|
2923
|
-
.sc(GetDownloadUrlForLayer$)
|
|
437
|
+
.sc(schemas_0.GetDownloadUrlForLayer$)
|
|
2924
438
|
.build() {
|
|
2925
439
|
}
|
|
2926
440
|
|
|
@@ -2932,7 +446,7 @@ class GetLifecyclePolicyCommand extends smithyClient.Command
|
|
|
2932
446
|
})
|
|
2933
447
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicy", {})
|
|
2934
448
|
.n("ECRClient", "GetLifecyclePolicyCommand")
|
|
2935
|
-
.sc(GetLifecyclePolicy$)
|
|
449
|
+
.sc(schemas_0.GetLifecyclePolicy$)
|
|
2936
450
|
.build() {
|
|
2937
451
|
}
|
|
2938
452
|
|
|
@@ -2944,7 +458,7 @@ class GetLifecyclePolicyPreviewCommand extends smithyClient.Command
|
|
|
2944
458
|
})
|
|
2945
459
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicyPreview", {})
|
|
2946
460
|
.n("ECRClient", "GetLifecyclePolicyPreviewCommand")
|
|
2947
|
-
.sc(GetLifecyclePolicyPreview$)
|
|
461
|
+
.sc(schemas_0.GetLifecyclePolicyPreview$)
|
|
2948
462
|
.build() {
|
|
2949
463
|
}
|
|
2950
464
|
|
|
@@ -2956,7 +470,7 @@ class GetRegistryPolicyCommand extends smithyClient.Command
|
|
|
2956
470
|
})
|
|
2957
471
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryPolicy", {})
|
|
2958
472
|
.n("ECRClient", "GetRegistryPolicyCommand")
|
|
2959
|
-
.sc(GetRegistryPolicy$)
|
|
473
|
+
.sc(schemas_0.GetRegistryPolicy$)
|
|
2960
474
|
.build() {
|
|
2961
475
|
}
|
|
2962
476
|
|
|
@@ -2968,7 +482,7 @@ class GetRegistryScanningConfigurationCommand extends smithyClient.Command
|
|
|
2968
482
|
})
|
|
2969
483
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryScanningConfiguration", {})
|
|
2970
484
|
.n("ECRClient", "GetRegistryScanningConfigurationCommand")
|
|
2971
|
-
.sc(GetRegistryScanningConfiguration$)
|
|
485
|
+
.sc(schemas_0.GetRegistryScanningConfiguration$)
|
|
2972
486
|
.build() {
|
|
2973
487
|
}
|
|
2974
488
|
|
|
@@ -2980,7 +494,7 @@ class GetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
2980
494
|
})
|
|
2981
495
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRepositoryPolicy", {})
|
|
2982
496
|
.n("ECRClient", "GetRepositoryPolicyCommand")
|
|
2983
|
-
.sc(GetRepositoryPolicy$)
|
|
497
|
+
.sc(schemas_0.GetRepositoryPolicy$)
|
|
2984
498
|
.build() {
|
|
2985
499
|
}
|
|
2986
500
|
|
|
@@ -2992,7 +506,7 @@ class GetSigningConfigurationCommand extends smithyClient.Command
|
|
|
2992
506
|
})
|
|
2993
507
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetSigningConfiguration", {})
|
|
2994
508
|
.n("ECRClient", "GetSigningConfigurationCommand")
|
|
2995
|
-
.sc(GetSigningConfiguration$)
|
|
509
|
+
.sc(schemas_0.GetSigningConfiguration$)
|
|
2996
510
|
.build() {
|
|
2997
511
|
}
|
|
2998
512
|
|
|
@@ -3004,7 +518,7 @@ class InitiateLayerUploadCommand extends smithyClient.Command
|
|
|
3004
518
|
})
|
|
3005
519
|
.s("AmazonEC2ContainerRegistry_V20150921", "InitiateLayerUpload", {})
|
|
3006
520
|
.n("ECRClient", "InitiateLayerUploadCommand")
|
|
3007
|
-
.sc(InitiateLayerUpload$)
|
|
521
|
+
.sc(schemas_0.InitiateLayerUpload$)
|
|
3008
522
|
.build() {
|
|
3009
523
|
}
|
|
3010
524
|
|
|
@@ -3016,7 +530,7 @@ class ListImageReferrersCommand extends smithyClient.Command
|
|
|
3016
530
|
})
|
|
3017
531
|
.s("AmazonEC2ContainerRegistry_V20150921", "ListImageReferrers", {})
|
|
3018
532
|
.n("ECRClient", "ListImageReferrersCommand")
|
|
3019
|
-
.sc(ListImageReferrers$)
|
|
533
|
+
.sc(schemas_0.ListImageReferrers$)
|
|
3020
534
|
.build() {
|
|
3021
535
|
}
|
|
3022
536
|
|
|
@@ -3028,7 +542,7 @@ class ListImagesCommand extends smithyClient.Command
|
|
|
3028
542
|
})
|
|
3029
543
|
.s("AmazonEC2ContainerRegistry_V20150921", "ListImages", {})
|
|
3030
544
|
.n("ECRClient", "ListImagesCommand")
|
|
3031
|
-
.sc(ListImages$)
|
|
545
|
+
.sc(schemas_0.ListImages$)
|
|
3032
546
|
.build() {
|
|
3033
547
|
}
|
|
3034
548
|
|
|
@@ -3040,7 +554,7 @@ class ListPullTimeUpdateExclusionsCommand extends smithyClient.Command
|
|
|
3040
554
|
})
|
|
3041
555
|
.s("AmazonEC2ContainerRegistry_V20150921", "ListPullTimeUpdateExclusions", {})
|
|
3042
556
|
.n("ECRClient", "ListPullTimeUpdateExclusionsCommand")
|
|
3043
|
-
.sc(ListPullTimeUpdateExclusions$)
|
|
557
|
+
.sc(schemas_0.ListPullTimeUpdateExclusions$)
|
|
3044
558
|
.build() {
|
|
3045
559
|
}
|
|
3046
560
|
|
|
@@ -3052,7 +566,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3052
566
|
})
|
|
3053
567
|
.s("AmazonEC2ContainerRegistry_V20150921", "ListTagsForResource", {})
|
|
3054
568
|
.n("ECRClient", "ListTagsForResourceCommand")
|
|
3055
|
-
.sc(ListTagsForResource$)
|
|
569
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3056
570
|
.build() {
|
|
3057
571
|
}
|
|
3058
572
|
|
|
@@ -3064,7 +578,7 @@ class PutAccountSettingCommand extends smithyClient.Command
|
|
|
3064
578
|
})
|
|
3065
579
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutAccountSetting", {})
|
|
3066
580
|
.n("ECRClient", "PutAccountSettingCommand")
|
|
3067
|
-
.sc(PutAccountSetting$)
|
|
581
|
+
.sc(schemas_0.PutAccountSetting$)
|
|
3068
582
|
.build() {
|
|
3069
583
|
}
|
|
3070
584
|
|
|
@@ -3076,7 +590,7 @@ class PutImageCommand extends smithyClient.Command
|
|
|
3076
590
|
})
|
|
3077
591
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutImage", {})
|
|
3078
592
|
.n("ECRClient", "PutImageCommand")
|
|
3079
|
-
.sc(PutImage$)
|
|
593
|
+
.sc(schemas_0.PutImage$)
|
|
3080
594
|
.build() {
|
|
3081
595
|
}
|
|
3082
596
|
|
|
@@ -3088,7 +602,7 @@ class PutImageScanningConfigurationCommand extends smithyClient.Command
|
|
|
3088
602
|
})
|
|
3089
603
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutImageScanningConfiguration", {})
|
|
3090
604
|
.n("ECRClient", "PutImageScanningConfigurationCommand")
|
|
3091
|
-
.sc(PutImageScanningConfiguration$)
|
|
605
|
+
.sc(schemas_0.PutImageScanningConfiguration$)
|
|
3092
606
|
.build() {
|
|
3093
607
|
}
|
|
3094
608
|
|
|
@@ -3100,7 +614,7 @@ class PutImageTagMutabilityCommand extends smithyClient.Command
|
|
|
3100
614
|
})
|
|
3101
615
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutImageTagMutability", {})
|
|
3102
616
|
.n("ECRClient", "PutImageTagMutabilityCommand")
|
|
3103
|
-
.sc(PutImageTagMutability$)
|
|
617
|
+
.sc(schemas_0.PutImageTagMutability$)
|
|
3104
618
|
.build() {
|
|
3105
619
|
}
|
|
3106
620
|
|
|
@@ -3112,7 +626,7 @@ class PutLifecyclePolicyCommand extends smithyClient.Command
|
|
|
3112
626
|
})
|
|
3113
627
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutLifecyclePolicy", {})
|
|
3114
628
|
.n("ECRClient", "PutLifecyclePolicyCommand")
|
|
3115
|
-
.sc(PutLifecyclePolicy$)
|
|
629
|
+
.sc(schemas_0.PutLifecyclePolicy$)
|
|
3116
630
|
.build() {
|
|
3117
631
|
}
|
|
3118
632
|
|
|
@@ -3124,7 +638,7 @@ class PutRegistryPolicyCommand extends smithyClient.Command
|
|
|
3124
638
|
})
|
|
3125
639
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutRegistryPolicy", {})
|
|
3126
640
|
.n("ECRClient", "PutRegistryPolicyCommand")
|
|
3127
|
-
.sc(PutRegistryPolicy$)
|
|
641
|
+
.sc(schemas_0.PutRegistryPolicy$)
|
|
3128
642
|
.build() {
|
|
3129
643
|
}
|
|
3130
644
|
|
|
@@ -3136,7 +650,7 @@ class PutRegistryScanningConfigurationCommand extends smithyClient.Command
|
|
|
3136
650
|
})
|
|
3137
651
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutRegistryScanningConfiguration", {})
|
|
3138
652
|
.n("ECRClient", "PutRegistryScanningConfigurationCommand")
|
|
3139
|
-
.sc(PutRegistryScanningConfiguration$)
|
|
653
|
+
.sc(schemas_0.PutRegistryScanningConfiguration$)
|
|
3140
654
|
.build() {
|
|
3141
655
|
}
|
|
3142
656
|
|
|
@@ -3148,7 +662,7 @@ class PutReplicationConfigurationCommand extends smithyClient.Command
|
|
|
3148
662
|
})
|
|
3149
663
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutReplicationConfiguration", {})
|
|
3150
664
|
.n("ECRClient", "PutReplicationConfigurationCommand")
|
|
3151
|
-
.sc(PutReplicationConfiguration$)
|
|
665
|
+
.sc(schemas_0.PutReplicationConfiguration$)
|
|
3152
666
|
.build() {
|
|
3153
667
|
}
|
|
3154
668
|
|
|
@@ -3160,7 +674,7 @@ class PutSigningConfigurationCommand extends smithyClient.Command
|
|
|
3160
674
|
})
|
|
3161
675
|
.s("AmazonEC2ContainerRegistry_V20150921", "PutSigningConfiguration", {})
|
|
3162
676
|
.n("ECRClient", "PutSigningConfigurationCommand")
|
|
3163
|
-
.sc(PutSigningConfiguration$)
|
|
677
|
+
.sc(schemas_0.PutSigningConfiguration$)
|
|
3164
678
|
.build() {
|
|
3165
679
|
}
|
|
3166
680
|
|
|
@@ -3172,7 +686,7 @@ class RegisterPullTimeUpdateExclusionCommand extends smithyClient.Command
|
|
|
3172
686
|
})
|
|
3173
687
|
.s("AmazonEC2ContainerRegistry_V20150921", "RegisterPullTimeUpdateExclusion", {})
|
|
3174
688
|
.n("ECRClient", "RegisterPullTimeUpdateExclusionCommand")
|
|
3175
|
-
.sc(RegisterPullTimeUpdateExclusion$)
|
|
689
|
+
.sc(schemas_0.RegisterPullTimeUpdateExclusion$)
|
|
3176
690
|
.build() {
|
|
3177
691
|
}
|
|
3178
692
|
|
|
@@ -3184,7 +698,7 @@ class SetRepositoryPolicyCommand extends smithyClient.Command
|
|
|
3184
698
|
})
|
|
3185
699
|
.s("AmazonEC2ContainerRegistry_V20150921", "SetRepositoryPolicy", {})
|
|
3186
700
|
.n("ECRClient", "SetRepositoryPolicyCommand")
|
|
3187
|
-
.sc(SetRepositoryPolicy$)
|
|
701
|
+
.sc(schemas_0.SetRepositoryPolicy$)
|
|
3188
702
|
.build() {
|
|
3189
703
|
}
|
|
3190
704
|
|
|
@@ -3196,7 +710,7 @@ class StartImageScanCommand extends smithyClient.Command
|
|
|
3196
710
|
})
|
|
3197
711
|
.s("AmazonEC2ContainerRegistry_V20150921", "StartImageScan", {})
|
|
3198
712
|
.n("ECRClient", "StartImageScanCommand")
|
|
3199
|
-
.sc(StartImageScan$)
|
|
713
|
+
.sc(schemas_0.StartImageScan$)
|
|
3200
714
|
.build() {
|
|
3201
715
|
}
|
|
3202
716
|
|
|
@@ -3208,7 +722,7 @@ class StartLifecyclePolicyPreviewCommand extends smithyClient.Command
|
|
|
3208
722
|
})
|
|
3209
723
|
.s("AmazonEC2ContainerRegistry_V20150921", "StartLifecyclePolicyPreview", {})
|
|
3210
724
|
.n("ECRClient", "StartLifecyclePolicyPreviewCommand")
|
|
3211
|
-
.sc(StartLifecyclePolicyPreview$)
|
|
725
|
+
.sc(schemas_0.StartLifecyclePolicyPreview$)
|
|
3212
726
|
.build() {
|
|
3213
727
|
}
|
|
3214
728
|
|
|
@@ -3220,7 +734,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3220
734
|
})
|
|
3221
735
|
.s("AmazonEC2ContainerRegistry_V20150921", "TagResource", {})
|
|
3222
736
|
.n("ECRClient", "TagResourceCommand")
|
|
3223
|
-
.sc(TagResource$)
|
|
737
|
+
.sc(schemas_0.TagResource$)
|
|
3224
738
|
.build() {
|
|
3225
739
|
}
|
|
3226
740
|
|
|
@@ -3232,7 +746,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3232
746
|
})
|
|
3233
747
|
.s("AmazonEC2ContainerRegistry_V20150921", "UntagResource", {})
|
|
3234
748
|
.n("ECRClient", "UntagResourceCommand")
|
|
3235
|
-
.sc(UntagResource$)
|
|
749
|
+
.sc(schemas_0.UntagResource$)
|
|
3236
750
|
.build() {
|
|
3237
751
|
}
|
|
3238
752
|
|
|
@@ -3244,7 +758,7 @@ class UpdateImageStorageClassCommand extends smithyClient.Command
|
|
|
3244
758
|
})
|
|
3245
759
|
.s("AmazonEC2ContainerRegistry_V20150921", "UpdateImageStorageClass", {})
|
|
3246
760
|
.n("ECRClient", "UpdateImageStorageClassCommand")
|
|
3247
|
-
.sc(UpdateImageStorageClass$)
|
|
761
|
+
.sc(schemas_0.UpdateImageStorageClass$)
|
|
3248
762
|
.build() {
|
|
3249
763
|
}
|
|
3250
764
|
|
|
@@ -3256,7 +770,7 @@ class UpdatePullThroughCacheRuleCommand extends smithyClient.Command
|
|
|
3256
770
|
})
|
|
3257
771
|
.s("AmazonEC2ContainerRegistry_V20150921", "UpdatePullThroughCacheRule", {})
|
|
3258
772
|
.n("ECRClient", "UpdatePullThroughCacheRuleCommand")
|
|
3259
|
-
.sc(UpdatePullThroughCacheRule$)
|
|
773
|
+
.sc(schemas_0.UpdatePullThroughCacheRule$)
|
|
3260
774
|
.build() {
|
|
3261
775
|
}
|
|
3262
776
|
|
|
@@ -3268,7 +782,7 @@ class UpdateRepositoryCreationTemplateCommand extends smithyClient.Command
|
|
|
3268
782
|
})
|
|
3269
783
|
.s("AmazonEC2ContainerRegistry_V20150921", "UpdateRepositoryCreationTemplate", {})
|
|
3270
784
|
.n("ECRClient", "UpdateRepositoryCreationTemplateCommand")
|
|
3271
|
-
.sc(UpdateRepositoryCreationTemplate$)
|
|
785
|
+
.sc(schemas_0.UpdateRepositoryCreationTemplate$)
|
|
3272
786
|
.build() {
|
|
3273
787
|
}
|
|
3274
788
|
|
|
@@ -3280,7 +794,7 @@ class UploadLayerPartCommand extends smithyClient.Command
|
|
|
3280
794
|
})
|
|
3281
795
|
.s("AmazonEC2ContainerRegistry_V20150921", "UploadLayerPart", {})
|
|
3282
796
|
.n("ECRClient", "UploadLayerPartCommand")
|
|
3283
|
-
.sc(UploadLayerPart$)
|
|
797
|
+
.sc(schemas_0.UploadLayerPart$)
|
|
3284
798
|
.build() {
|
|
3285
799
|
}
|
|
3286
800
|
|
|
@@ -3292,7 +806,7 @@ class ValidatePullThroughCacheRuleCommand extends smithyClient.Command
|
|
|
3292
806
|
})
|
|
3293
807
|
.s("AmazonEC2ContainerRegistry_V20150921", "ValidatePullThroughCacheRule", {})
|
|
3294
808
|
.n("ECRClient", "ValidatePullThroughCacheRuleCommand")
|
|
3295
|
-
.sc(ValidatePullThroughCacheRule$)
|
|
809
|
+
.sc(schemas_0.ValidatePullThroughCacheRule$)
|
|
3296
810
|
.build() {
|
|
3297
811
|
}
|
|
3298
812
|
|
|
@@ -3624,418 +1138,98 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3624
1138
|
enumerable: true,
|
|
3625
1139
|
get: function () { return smithyClient.Client; }
|
|
3626
1140
|
});
|
|
1141
|
+
Object.defineProperty(exports, "ECRServiceException", {
|
|
1142
|
+
enumerable: true,
|
|
1143
|
+
get: function () { return ECRServiceException.ECRServiceException; }
|
|
1144
|
+
});
|
|
3627
1145
|
exports.ArtifactStatus = ArtifactStatus;
|
|
3628
1146
|
exports.ArtifactStatusFilter = ArtifactStatusFilter;
|
|
3629
|
-
exports.Attribute$ = Attribute$;
|
|
3630
|
-
exports.AuthorizationData$ = AuthorizationData$;
|
|
3631
|
-
exports.AwsEcrContainerImageDetails$ = AwsEcrContainerImageDetails$;
|
|
3632
|
-
exports.BatchCheckLayerAvailability$ = BatchCheckLayerAvailability$;
|
|
3633
1147
|
exports.BatchCheckLayerAvailabilityCommand = BatchCheckLayerAvailabilityCommand;
|
|
3634
|
-
exports.BatchCheckLayerAvailabilityRequest$ = BatchCheckLayerAvailabilityRequest$;
|
|
3635
|
-
exports.BatchCheckLayerAvailabilityResponse$ = BatchCheckLayerAvailabilityResponse$;
|
|
3636
|
-
exports.BatchDeleteImage$ = BatchDeleteImage$;
|
|
3637
1148
|
exports.BatchDeleteImageCommand = BatchDeleteImageCommand;
|
|
3638
|
-
exports.BatchDeleteImageRequest$ = BatchDeleteImageRequest$;
|
|
3639
|
-
exports.BatchDeleteImageResponse$ = BatchDeleteImageResponse$;
|
|
3640
|
-
exports.BatchGetImage$ = BatchGetImage$;
|
|
3641
1149
|
exports.BatchGetImageCommand = BatchGetImageCommand;
|
|
3642
|
-
exports.BatchGetImageRequest$ = BatchGetImageRequest$;
|
|
3643
|
-
exports.BatchGetImageResponse$ = BatchGetImageResponse$;
|
|
3644
|
-
exports.BatchGetRepositoryScanningConfiguration$ = BatchGetRepositoryScanningConfiguration$;
|
|
3645
1150
|
exports.BatchGetRepositoryScanningConfigurationCommand = BatchGetRepositoryScanningConfigurationCommand;
|
|
3646
|
-
exports.BatchGetRepositoryScanningConfigurationRequest$ = BatchGetRepositoryScanningConfigurationRequest$;
|
|
3647
|
-
exports.BatchGetRepositoryScanningConfigurationResponse$ = BatchGetRepositoryScanningConfigurationResponse$;
|
|
3648
|
-
exports.BlockedByOrganizationPolicyException = BlockedByOrganizationPolicyException;
|
|
3649
|
-
exports.BlockedByOrganizationPolicyException$ = BlockedByOrganizationPolicyException$;
|
|
3650
|
-
exports.CompleteLayerUpload$ = CompleteLayerUpload$;
|
|
3651
1151
|
exports.CompleteLayerUploadCommand = CompleteLayerUploadCommand;
|
|
3652
|
-
exports.CompleteLayerUploadRequest$ = CompleteLayerUploadRequest$;
|
|
3653
|
-
exports.CompleteLayerUploadResponse$ = CompleteLayerUploadResponse$;
|
|
3654
|
-
exports.CreatePullThroughCacheRule$ = CreatePullThroughCacheRule$;
|
|
3655
1152
|
exports.CreatePullThroughCacheRuleCommand = CreatePullThroughCacheRuleCommand;
|
|
3656
|
-
exports.CreatePullThroughCacheRuleRequest$ = CreatePullThroughCacheRuleRequest$;
|
|
3657
|
-
exports.CreatePullThroughCacheRuleResponse$ = CreatePullThroughCacheRuleResponse$;
|
|
3658
|
-
exports.CreateRepository$ = CreateRepository$;
|
|
3659
1153
|
exports.CreateRepositoryCommand = CreateRepositoryCommand;
|
|
3660
|
-
exports.CreateRepositoryCreationTemplate$ = CreateRepositoryCreationTemplate$;
|
|
3661
1154
|
exports.CreateRepositoryCreationTemplateCommand = CreateRepositoryCreationTemplateCommand;
|
|
3662
|
-
exports.CreateRepositoryCreationTemplateRequest$ = CreateRepositoryCreationTemplateRequest$;
|
|
3663
|
-
exports.CreateRepositoryCreationTemplateResponse$ = CreateRepositoryCreationTemplateResponse$;
|
|
3664
|
-
exports.CreateRepositoryRequest$ = CreateRepositoryRequest$;
|
|
3665
|
-
exports.CreateRepositoryResponse$ = CreateRepositoryResponse$;
|
|
3666
|
-
exports.CvssScore$ = CvssScore$;
|
|
3667
|
-
exports.CvssScoreAdjustment$ = CvssScoreAdjustment$;
|
|
3668
|
-
exports.CvssScoreDetails$ = CvssScoreDetails$;
|
|
3669
|
-
exports.DeleteLifecyclePolicy$ = DeleteLifecyclePolicy$;
|
|
3670
1155
|
exports.DeleteLifecyclePolicyCommand = DeleteLifecyclePolicyCommand;
|
|
3671
|
-
exports.DeleteLifecyclePolicyRequest$ = DeleteLifecyclePolicyRequest$;
|
|
3672
|
-
exports.DeleteLifecyclePolicyResponse$ = DeleteLifecyclePolicyResponse$;
|
|
3673
|
-
exports.DeletePullThroughCacheRule$ = DeletePullThroughCacheRule$;
|
|
3674
1156
|
exports.DeletePullThroughCacheRuleCommand = DeletePullThroughCacheRuleCommand;
|
|
3675
|
-
exports.DeletePullThroughCacheRuleRequest$ = DeletePullThroughCacheRuleRequest$;
|
|
3676
|
-
exports.DeletePullThroughCacheRuleResponse$ = DeletePullThroughCacheRuleResponse$;
|
|
3677
|
-
exports.DeleteRegistryPolicy$ = DeleteRegistryPolicy$;
|
|
3678
1157
|
exports.DeleteRegistryPolicyCommand = DeleteRegistryPolicyCommand;
|
|
3679
|
-
exports.DeleteRegistryPolicyRequest$ = DeleteRegistryPolicyRequest$;
|
|
3680
|
-
exports.DeleteRegistryPolicyResponse$ = DeleteRegistryPolicyResponse$;
|
|
3681
|
-
exports.DeleteRepository$ = DeleteRepository$;
|
|
3682
1158
|
exports.DeleteRepositoryCommand = DeleteRepositoryCommand;
|
|
3683
|
-
exports.DeleteRepositoryCreationTemplate$ = DeleteRepositoryCreationTemplate$;
|
|
3684
1159
|
exports.DeleteRepositoryCreationTemplateCommand = DeleteRepositoryCreationTemplateCommand;
|
|
3685
|
-
exports.DeleteRepositoryCreationTemplateRequest$ = DeleteRepositoryCreationTemplateRequest$;
|
|
3686
|
-
exports.DeleteRepositoryCreationTemplateResponse$ = DeleteRepositoryCreationTemplateResponse$;
|
|
3687
|
-
exports.DeleteRepositoryPolicy$ = DeleteRepositoryPolicy$;
|
|
3688
1160
|
exports.DeleteRepositoryPolicyCommand = DeleteRepositoryPolicyCommand;
|
|
3689
|
-
exports.DeleteRepositoryPolicyRequest$ = DeleteRepositoryPolicyRequest$;
|
|
3690
|
-
exports.DeleteRepositoryPolicyResponse$ = DeleteRepositoryPolicyResponse$;
|
|
3691
|
-
exports.DeleteRepositoryRequest$ = DeleteRepositoryRequest$;
|
|
3692
|
-
exports.DeleteRepositoryResponse$ = DeleteRepositoryResponse$;
|
|
3693
|
-
exports.DeleteSigningConfiguration$ = DeleteSigningConfiguration$;
|
|
3694
1161
|
exports.DeleteSigningConfigurationCommand = DeleteSigningConfigurationCommand;
|
|
3695
|
-
exports.DeleteSigningConfigurationRequest$ = DeleteSigningConfigurationRequest$;
|
|
3696
|
-
exports.DeleteSigningConfigurationResponse$ = DeleteSigningConfigurationResponse$;
|
|
3697
|
-
exports.DeregisterPullTimeUpdateExclusion$ = DeregisterPullTimeUpdateExclusion$;
|
|
3698
1162
|
exports.DeregisterPullTimeUpdateExclusionCommand = DeregisterPullTimeUpdateExclusionCommand;
|
|
3699
|
-
exports.DeregisterPullTimeUpdateExclusionRequest$ = DeregisterPullTimeUpdateExclusionRequest$;
|
|
3700
|
-
exports.DeregisterPullTimeUpdateExclusionResponse$ = DeregisterPullTimeUpdateExclusionResponse$;
|
|
3701
|
-
exports.DescribeImageReplicationStatus$ = DescribeImageReplicationStatus$;
|
|
3702
1163
|
exports.DescribeImageReplicationStatusCommand = DescribeImageReplicationStatusCommand;
|
|
3703
|
-
exports.DescribeImageReplicationStatusRequest$ = DescribeImageReplicationStatusRequest$;
|
|
3704
|
-
exports.DescribeImageReplicationStatusResponse$ = DescribeImageReplicationStatusResponse$;
|
|
3705
|
-
exports.DescribeImageScanFindings$ = DescribeImageScanFindings$;
|
|
3706
1164
|
exports.DescribeImageScanFindingsCommand = DescribeImageScanFindingsCommand;
|
|
3707
|
-
exports.DescribeImageScanFindingsRequest$ = DescribeImageScanFindingsRequest$;
|
|
3708
|
-
exports.DescribeImageScanFindingsResponse$ = DescribeImageScanFindingsResponse$;
|
|
3709
|
-
exports.DescribeImageSigningStatus$ = DescribeImageSigningStatus$;
|
|
3710
1165
|
exports.DescribeImageSigningStatusCommand = DescribeImageSigningStatusCommand;
|
|
3711
|
-
exports.DescribeImageSigningStatusRequest$ = DescribeImageSigningStatusRequest$;
|
|
3712
|
-
exports.DescribeImageSigningStatusResponse$ = DescribeImageSigningStatusResponse$;
|
|
3713
|
-
exports.DescribeImages$ = DescribeImages$;
|
|
3714
1166
|
exports.DescribeImagesCommand = DescribeImagesCommand;
|
|
3715
|
-
exports.DescribeImagesFilter$ = DescribeImagesFilter$;
|
|
3716
|
-
exports.DescribeImagesRequest$ = DescribeImagesRequest$;
|
|
3717
|
-
exports.DescribeImagesResponse$ = DescribeImagesResponse$;
|
|
3718
|
-
exports.DescribePullThroughCacheRules$ = DescribePullThroughCacheRules$;
|
|
3719
1167
|
exports.DescribePullThroughCacheRulesCommand = DescribePullThroughCacheRulesCommand;
|
|
3720
|
-
exports.DescribePullThroughCacheRulesRequest$ = DescribePullThroughCacheRulesRequest$;
|
|
3721
|
-
exports.DescribePullThroughCacheRulesResponse$ = DescribePullThroughCacheRulesResponse$;
|
|
3722
|
-
exports.DescribeRegistry$ = DescribeRegistry$;
|
|
3723
1168
|
exports.DescribeRegistryCommand = DescribeRegistryCommand;
|
|
3724
|
-
exports.DescribeRegistryRequest$ = DescribeRegistryRequest$;
|
|
3725
|
-
exports.DescribeRegistryResponse$ = DescribeRegistryResponse$;
|
|
3726
|
-
exports.DescribeRepositories$ = DescribeRepositories$;
|
|
3727
1169
|
exports.DescribeRepositoriesCommand = DescribeRepositoriesCommand;
|
|
3728
|
-
exports.DescribeRepositoriesRequest$ = DescribeRepositoriesRequest$;
|
|
3729
|
-
exports.DescribeRepositoriesResponse$ = DescribeRepositoriesResponse$;
|
|
3730
|
-
exports.DescribeRepositoryCreationTemplates$ = DescribeRepositoryCreationTemplates$;
|
|
3731
1170
|
exports.DescribeRepositoryCreationTemplatesCommand = DescribeRepositoryCreationTemplatesCommand;
|
|
3732
|
-
exports.DescribeRepositoryCreationTemplatesRequest$ = DescribeRepositoryCreationTemplatesRequest$;
|
|
3733
|
-
exports.DescribeRepositoryCreationTemplatesResponse$ = DescribeRepositoryCreationTemplatesResponse$;
|
|
3734
1171
|
exports.ECR = ECR;
|
|
3735
1172
|
exports.ECRClient = ECRClient;
|
|
3736
|
-
exports.ECRServiceException = ECRServiceException;
|
|
3737
|
-
exports.ECRServiceException$ = ECRServiceException$;
|
|
3738
|
-
exports.EmptyUploadException = EmptyUploadException;
|
|
3739
|
-
exports.EmptyUploadException$ = EmptyUploadException$;
|
|
3740
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
3741
|
-
exports.EncryptionConfigurationForRepositoryCreationTemplate$ = EncryptionConfigurationForRepositoryCreationTemplate$;
|
|
3742
1173
|
exports.EncryptionType = EncryptionType;
|
|
3743
|
-
exports.EnhancedImageScanFinding$ = EnhancedImageScanFinding$;
|
|
3744
|
-
exports.ExclusionAlreadyExistsException = ExclusionAlreadyExistsException;
|
|
3745
|
-
exports.ExclusionAlreadyExistsException$ = ExclusionAlreadyExistsException$;
|
|
3746
|
-
exports.ExclusionNotFoundException = ExclusionNotFoundException;
|
|
3747
|
-
exports.ExclusionNotFoundException$ = ExclusionNotFoundException$;
|
|
3748
1174
|
exports.FindingSeverity = FindingSeverity;
|
|
3749
|
-
exports.GetAccountSetting$ = GetAccountSetting$;
|
|
3750
1175
|
exports.GetAccountSettingCommand = GetAccountSettingCommand;
|
|
3751
|
-
exports.GetAccountSettingRequest$ = GetAccountSettingRequest$;
|
|
3752
|
-
exports.GetAccountSettingResponse$ = GetAccountSettingResponse$;
|
|
3753
|
-
exports.GetAuthorizationToken$ = GetAuthorizationToken$;
|
|
3754
1176
|
exports.GetAuthorizationTokenCommand = GetAuthorizationTokenCommand;
|
|
3755
|
-
exports.GetAuthorizationTokenRequest$ = GetAuthorizationTokenRequest$;
|
|
3756
|
-
exports.GetAuthorizationTokenResponse$ = GetAuthorizationTokenResponse$;
|
|
3757
|
-
exports.GetDownloadUrlForLayer$ = GetDownloadUrlForLayer$;
|
|
3758
1177
|
exports.GetDownloadUrlForLayerCommand = GetDownloadUrlForLayerCommand;
|
|
3759
|
-
exports.GetDownloadUrlForLayerRequest$ = GetDownloadUrlForLayerRequest$;
|
|
3760
|
-
exports.GetDownloadUrlForLayerResponse$ = GetDownloadUrlForLayerResponse$;
|
|
3761
|
-
exports.GetLifecyclePolicy$ = GetLifecyclePolicy$;
|
|
3762
1178
|
exports.GetLifecyclePolicyCommand = GetLifecyclePolicyCommand;
|
|
3763
|
-
exports.GetLifecyclePolicyPreview$ = GetLifecyclePolicyPreview$;
|
|
3764
1179
|
exports.GetLifecyclePolicyPreviewCommand = GetLifecyclePolicyPreviewCommand;
|
|
3765
|
-
exports.GetLifecyclePolicyPreviewRequest$ = GetLifecyclePolicyPreviewRequest$;
|
|
3766
|
-
exports.GetLifecyclePolicyPreviewResponse$ = GetLifecyclePolicyPreviewResponse$;
|
|
3767
|
-
exports.GetLifecyclePolicyRequest$ = GetLifecyclePolicyRequest$;
|
|
3768
|
-
exports.GetLifecyclePolicyResponse$ = GetLifecyclePolicyResponse$;
|
|
3769
|
-
exports.GetRegistryPolicy$ = GetRegistryPolicy$;
|
|
3770
1180
|
exports.GetRegistryPolicyCommand = GetRegistryPolicyCommand;
|
|
3771
|
-
exports.GetRegistryPolicyRequest$ = GetRegistryPolicyRequest$;
|
|
3772
|
-
exports.GetRegistryPolicyResponse$ = GetRegistryPolicyResponse$;
|
|
3773
|
-
exports.GetRegistryScanningConfiguration$ = GetRegistryScanningConfiguration$;
|
|
3774
1181
|
exports.GetRegistryScanningConfigurationCommand = GetRegistryScanningConfigurationCommand;
|
|
3775
|
-
exports.GetRegistryScanningConfigurationRequest$ = GetRegistryScanningConfigurationRequest$;
|
|
3776
|
-
exports.GetRegistryScanningConfigurationResponse$ = GetRegistryScanningConfigurationResponse$;
|
|
3777
|
-
exports.GetRepositoryPolicy$ = GetRepositoryPolicy$;
|
|
3778
1182
|
exports.GetRepositoryPolicyCommand = GetRepositoryPolicyCommand;
|
|
3779
|
-
exports.GetRepositoryPolicyRequest$ = GetRepositoryPolicyRequest$;
|
|
3780
|
-
exports.GetRepositoryPolicyResponse$ = GetRepositoryPolicyResponse$;
|
|
3781
|
-
exports.GetSigningConfiguration$ = GetSigningConfiguration$;
|
|
3782
1183
|
exports.GetSigningConfigurationCommand = GetSigningConfigurationCommand;
|
|
3783
|
-
exports.GetSigningConfigurationRequest$ = GetSigningConfigurationRequest$;
|
|
3784
|
-
exports.GetSigningConfigurationResponse$ = GetSigningConfigurationResponse$;
|
|
3785
|
-
exports.Image$ = Image$;
|
|
3786
1184
|
exports.ImageActionType = ImageActionType;
|
|
3787
|
-
exports.ImageAlreadyExistsException = ImageAlreadyExistsException;
|
|
3788
|
-
exports.ImageAlreadyExistsException$ = ImageAlreadyExistsException$;
|
|
3789
|
-
exports.ImageArchivedException = ImageArchivedException;
|
|
3790
|
-
exports.ImageArchivedException$ = ImageArchivedException$;
|
|
3791
|
-
exports.ImageDetail$ = ImageDetail$;
|
|
3792
|
-
exports.ImageDigestDoesNotMatchException = ImageDigestDoesNotMatchException;
|
|
3793
|
-
exports.ImageDigestDoesNotMatchException$ = ImageDigestDoesNotMatchException$;
|
|
3794
|
-
exports.ImageFailure$ = ImageFailure$;
|
|
3795
1185
|
exports.ImageFailureCode = ImageFailureCode;
|
|
3796
|
-
exports.ImageIdentifier$ = ImageIdentifier$;
|
|
3797
|
-
exports.ImageNotFoundException = ImageNotFoundException;
|
|
3798
|
-
exports.ImageNotFoundException$ = ImageNotFoundException$;
|
|
3799
|
-
exports.ImageReferrer$ = ImageReferrer$;
|
|
3800
|
-
exports.ImageReplicationStatus$ = ImageReplicationStatus$;
|
|
3801
|
-
exports.ImageScanFinding$ = ImageScanFinding$;
|
|
3802
|
-
exports.ImageScanFindings$ = ImageScanFindings$;
|
|
3803
|
-
exports.ImageScanFindingsSummary$ = ImageScanFindingsSummary$;
|
|
3804
|
-
exports.ImageScanStatus$ = ImageScanStatus$;
|
|
3805
|
-
exports.ImageScanningConfiguration$ = ImageScanningConfiguration$;
|
|
3806
|
-
exports.ImageSigningStatus$ = ImageSigningStatus$;
|
|
3807
1186
|
exports.ImageStatus = ImageStatus;
|
|
3808
1187
|
exports.ImageStatusFilter = ImageStatusFilter;
|
|
3809
|
-
exports.ImageStorageClassUpdateNotSupportedException = ImageStorageClassUpdateNotSupportedException;
|
|
3810
|
-
exports.ImageStorageClassUpdateNotSupportedException$ = ImageStorageClassUpdateNotSupportedException$;
|
|
3811
|
-
exports.ImageTagAlreadyExistsException = ImageTagAlreadyExistsException;
|
|
3812
|
-
exports.ImageTagAlreadyExistsException$ = ImageTagAlreadyExistsException$;
|
|
3813
1188
|
exports.ImageTagMutability = ImageTagMutability;
|
|
3814
|
-
exports.ImageTagMutabilityExclusionFilter$ = ImageTagMutabilityExclusionFilter$;
|
|
3815
1189
|
exports.ImageTagMutabilityExclusionFilterType = ImageTagMutabilityExclusionFilterType;
|
|
3816
|
-
exports.InitiateLayerUpload$ = InitiateLayerUpload$;
|
|
3817
1190
|
exports.InitiateLayerUploadCommand = InitiateLayerUploadCommand;
|
|
3818
|
-
exports.InitiateLayerUploadRequest$ = InitiateLayerUploadRequest$;
|
|
3819
|
-
exports.InitiateLayerUploadResponse$ = InitiateLayerUploadResponse$;
|
|
3820
|
-
exports.InvalidLayerException = InvalidLayerException;
|
|
3821
|
-
exports.InvalidLayerException$ = InvalidLayerException$;
|
|
3822
|
-
exports.InvalidLayerPartException = InvalidLayerPartException;
|
|
3823
|
-
exports.InvalidLayerPartException$ = InvalidLayerPartException$;
|
|
3824
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
3825
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
3826
|
-
exports.InvalidTagParameterException = InvalidTagParameterException;
|
|
3827
|
-
exports.InvalidTagParameterException$ = InvalidTagParameterException$;
|
|
3828
|
-
exports.KmsException = KmsException;
|
|
3829
|
-
exports.KmsException$ = KmsException$;
|
|
3830
|
-
exports.Layer$ = Layer$;
|
|
3831
|
-
exports.LayerAlreadyExistsException = LayerAlreadyExistsException;
|
|
3832
|
-
exports.LayerAlreadyExistsException$ = LayerAlreadyExistsException$;
|
|
3833
1191
|
exports.LayerAvailability = LayerAvailability;
|
|
3834
|
-
exports.LayerFailure$ = LayerFailure$;
|
|
3835
1192
|
exports.LayerFailureCode = LayerFailureCode;
|
|
3836
|
-
exports.LayerInaccessibleException = LayerInaccessibleException;
|
|
3837
|
-
exports.LayerInaccessibleException$ = LayerInaccessibleException$;
|
|
3838
|
-
exports.LayerPartTooSmallException = LayerPartTooSmallException;
|
|
3839
|
-
exports.LayerPartTooSmallException$ = LayerPartTooSmallException$;
|
|
3840
|
-
exports.LayersNotFoundException = LayersNotFoundException;
|
|
3841
|
-
exports.LayersNotFoundException$ = LayersNotFoundException$;
|
|
3842
|
-
exports.LifecyclePolicyNotFoundException = LifecyclePolicyNotFoundException;
|
|
3843
|
-
exports.LifecyclePolicyNotFoundException$ = LifecyclePolicyNotFoundException$;
|
|
3844
|
-
exports.LifecyclePolicyPreviewFilter$ = LifecyclePolicyPreviewFilter$;
|
|
3845
|
-
exports.LifecyclePolicyPreviewInProgressException = LifecyclePolicyPreviewInProgressException;
|
|
3846
|
-
exports.LifecyclePolicyPreviewInProgressException$ = LifecyclePolicyPreviewInProgressException$;
|
|
3847
|
-
exports.LifecyclePolicyPreviewNotFoundException = LifecyclePolicyPreviewNotFoundException;
|
|
3848
|
-
exports.LifecyclePolicyPreviewNotFoundException$ = LifecyclePolicyPreviewNotFoundException$;
|
|
3849
|
-
exports.LifecyclePolicyPreviewResult$ = LifecyclePolicyPreviewResult$;
|
|
3850
1193
|
exports.LifecyclePolicyPreviewStatus = LifecyclePolicyPreviewStatus;
|
|
3851
|
-
exports.LifecyclePolicyPreviewSummary$ = LifecyclePolicyPreviewSummary$;
|
|
3852
|
-
exports.LifecyclePolicyRuleAction$ = LifecyclePolicyRuleAction$;
|
|
3853
1194
|
exports.LifecyclePolicyStorageClass = LifecyclePolicyStorageClass;
|
|
3854
1195
|
exports.LifecyclePolicyTargetStorageClass = LifecyclePolicyTargetStorageClass;
|
|
3855
|
-
exports.LimitExceededException = LimitExceededException;
|
|
3856
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
3857
|
-
exports.ListImageReferrers$ = ListImageReferrers$;
|
|
3858
1196
|
exports.ListImageReferrersCommand = ListImageReferrersCommand;
|
|
3859
|
-
exports.ListImageReferrersFilter$ = ListImageReferrersFilter$;
|
|
3860
|
-
exports.ListImageReferrersRequest$ = ListImageReferrersRequest$;
|
|
3861
|
-
exports.ListImageReferrersResponse$ = ListImageReferrersResponse$;
|
|
3862
|
-
exports.ListImages$ = ListImages$;
|
|
3863
1197
|
exports.ListImagesCommand = ListImagesCommand;
|
|
3864
|
-
exports.ListImagesFilter$ = ListImagesFilter$;
|
|
3865
|
-
exports.ListImagesRequest$ = ListImagesRequest$;
|
|
3866
|
-
exports.ListImagesResponse$ = ListImagesResponse$;
|
|
3867
|
-
exports.ListPullTimeUpdateExclusions$ = ListPullTimeUpdateExclusions$;
|
|
3868
1198
|
exports.ListPullTimeUpdateExclusionsCommand = ListPullTimeUpdateExclusionsCommand;
|
|
3869
|
-
exports.ListPullTimeUpdateExclusionsRequest$ = ListPullTimeUpdateExclusionsRequest$;
|
|
3870
|
-
exports.ListPullTimeUpdateExclusionsResponse$ = ListPullTimeUpdateExclusionsResponse$;
|
|
3871
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3872
1199
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3873
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3874
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3875
|
-
exports.PackageVulnerabilityDetails$ = PackageVulnerabilityDetails$;
|
|
3876
|
-
exports.PullThroughCacheRule$ = PullThroughCacheRule$;
|
|
3877
|
-
exports.PullThroughCacheRuleAlreadyExistsException = PullThroughCacheRuleAlreadyExistsException;
|
|
3878
|
-
exports.PullThroughCacheRuleAlreadyExistsException$ = PullThroughCacheRuleAlreadyExistsException$;
|
|
3879
|
-
exports.PullThroughCacheRuleNotFoundException = PullThroughCacheRuleNotFoundException;
|
|
3880
|
-
exports.PullThroughCacheRuleNotFoundException$ = PullThroughCacheRuleNotFoundException$;
|
|
3881
|
-
exports.PutAccountSetting$ = PutAccountSetting$;
|
|
3882
1200
|
exports.PutAccountSettingCommand = PutAccountSettingCommand;
|
|
3883
|
-
exports.PutAccountSettingRequest$ = PutAccountSettingRequest$;
|
|
3884
|
-
exports.PutAccountSettingResponse$ = PutAccountSettingResponse$;
|
|
3885
|
-
exports.PutImage$ = PutImage$;
|
|
3886
1201
|
exports.PutImageCommand = PutImageCommand;
|
|
3887
|
-
exports.PutImageRequest$ = PutImageRequest$;
|
|
3888
|
-
exports.PutImageResponse$ = PutImageResponse$;
|
|
3889
|
-
exports.PutImageScanningConfiguration$ = PutImageScanningConfiguration$;
|
|
3890
1202
|
exports.PutImageScanningConfigurationCommand = PutImageScanningConfigurationCommand;
|
|
3891
|
-
exports.PutImageScanningConfigurationRequest$ = PutImageScanningConfigurationRequest$;
|
|
3892
|
-
exports.PutImageScanningConfigurationResponse$ = PutImageScanningConfigurationResponse$;
|
|
3893
|
-
exports.PutImageTagMutability$ = PutImageTagMutability$;
|
|
3894
1203
|
exports.PutImageTagMutabilityCommand = PutImageTagMutabilityCommand;
|
|
3895
|
-
exports.PutImageTagMutabilityRequest$ = PutImageTagMutabilityRequest$;
|
|
3896
|
-
exports.PutImageTagMutabilityResponse$ = PutImageTagMutabilityResponse$;
|
|
3897
|
-
exports.PutLifecyclePolicy$ = PutLifecyclePolicy$;
|
|
3898
1204
|
exports.PutLifecyclePolicyCommand = PutLifecyclePolicyCommand;
|
|
3899
|
-
exports.PutLifecyclePolicyRequest$ = PutLifecyclePolicyRequest$;
|
|
3900
|
-
exports.PutLifecyclePolicyResponse$ = PutLifecyclePolicyResponse$;
|
|
3901
|
-
exports.PutRegistryPolicy$ = PutRegistryPolicy$;
|
|
3902
1205
|
exports.PutRegistryPolicyCommand = PutRegistryPolicyCommand;
|
|
3903
|
-
exports.PutRegistryPolicyRequest$ = PutRegistryPolicyRequest$;
|
|
3904
|
-
exports.PutRegistryPolicyResponse$ = PutRegistryPolicyResponse$;
|
|
3905
|
-
exports.PutRegistryScanningConfiguration$ = PutRegistryScanningConfiguration$;
|
|
3906
1206
|
exports.PutRegistryScanningConfigurationCommand = PutRegistryScanningConfigurationCommand;
|
|
3907
|
-
exports.PutRegistryScanningConfigurationRequest$ = PutRegistryScanningConfigurationRequest$;
|
|
3908
|
-
exports.PutRegistryScanningConfigurationResponse$ = PutRegistryScanningConfigurationResponse$;
|
|
3909
|
-
exports.PutReplicationConfiguration$ = PutReplicationConfiguration$;
|
|
3910
1207
|
exports.PutReplicationConfigurationCommand = PutReplicationConfigurationCommand;
|
|
3911
|
-
exports.PutReplicationConfigurationRequest$ = PutReplicationConfigurationRequest$;
|
|
3912
|
-
exports.PutReplicationConfigurationResponse$ = PutReplicationConfigurationResponse$;
|
|
3913
|
-
exports.PutSigningConfiguration$ = PutSigningConfiguration$;
|
|
3914
1208
|
exports.PutSigningConfigurationCommand = PutSigningConfigurationCommand;
|
|
3915
|
-
exports.PutSigningConfigurationRequest$ = PutSigningConfigurationRequest$;
|
|
3916
|
-
exports.PutSigningConfigurationResponse$ = PutSigningConfigurationResponse$;
|
|
3917
1209
|
exports.RCTAppliedFor = RCTAppliedFor;
|
|
3918
|
-
exports.Recommendation$ = Recommendation$;
|
|
3919
|
-
exports.ReferencedImagesNotFoundException = ReferencedImagesNotFoundException;
|
|
3920
|
-
exports.ReferencedImagesNotFoundException$ = ReferencedImagesNotFoundException$;
|
|
3921
|
-
exports.RegisterPullTimeUpdateExclusion$ = RegisterPullTimeUpdateExclusion$;
|
|
3922
1210
|
exports.RegisterPullTimeUpdateExclusionCommand = RegisterPullTimeUpdateExclusionCommand;
|
|
3923
|
-
exports.RegisterPullTimeUpdateExclusionRequest$ = RegisterPullTimeUpdateExclusionRequest$;
|
|
3924
|
-
exports.RegisterPullTimeUpdateExclusionResponse$ = RegisterPullTimeUpdateExclusionResponse$;
|
|
3925
|
-
exports.RegistryPolicyNotFoundException = RegistryPolicyNotFoundException;
|
|
3926
|
-
exports.RegistryPolicyNotFoundException$ = RegistryPolicyNotFoundException$;
|
|
3927
|
-
exports.RegistryScanningConfiguration$ = RegistryScanningConfiguration$;
|
|
3928
|
-
exports.RegistryScanningRule$ = RegistryScanningRule$;
|
|
3929
|
-
exports.Remediation$ = Remediation$;
|
|
3930
|
-
exports.ReplicationConfiguration$ = ReplicationConfiguration$;
|
|
3931
|
-
exports.ReplicationDestination$ = ReplicationDestination$;
|
|
3932
|
-
exports.ReplicationRule$ = ReplicationRule$;
|
|
3933
1211
|
exports.ReplicationStatus = ReplicationStatus;
|
|
3934
|
-
exports.Repository$ = Repository$;
|
|
3935
|
-
exports.RepositoryAlreadyExistsException = RepositoryAlreadyExistsException;
|
|
3936
|
-
exports.RepositoryAlreadyExistsException$ = RepositoryAlreadyExistsException$;
|
|
3937
|
-
exports.RepositoryCreationTemplate$ = RepositoryCreationTemplate$;
|
|
3938
|
-
exports.RepositoryFilter$ = RepositoryFilter$;
|
|
3939
1212
|
exports.RepositoryFilterType = RepositoryFilterType;
|
|
3940
|
-
exports.RepositoryNotEmptyException = RepositoryNotEmptyException;
|
|
3941
|
-
exports.RepositoryNotEmptyException$ = RepositoryNotEmptyException$;
|
|
3942
|
-
exports.RepositoryNotFoundException = RepositoryNotFoundException;
|
|
3943
|
-
exports.RepositoryNotFoundException$ = RepositoryNotFoundException$;
|
|
3944
|
-
exports.RepositoryPolicyNotFoundException = RepositoryPolicyNotFoundException;
|
|
3945
|
-
exports.RepositoryPolicyNotFoundException$ = RepositoryPolicyNotFoundException$;
|
|
3946
|
-
exports.RepositoryScanningConfiguration$ = RepositoryScanningConfiguration$;
|
|
3947
|
-
exports.RepositoryScanningConfigurationFailure$ = RepositoryScanningConfigurationFailure$;
|
|
3948
|
-
exports.Resource$ = Resource$;
|
|
3949
|
-
exports.ResourceDetails$ = ResourceDetails$;
|
|
3950
1213
|
exports.ScanFrequency = ScanFrequency;
|
|
3951
|
-
exports.ScanNotFoundException = ScanNotFoundException;
|
|
3952
|
-
exports.ScanNotFoundException$ = ScanNotFoundException$;
|
|
3953
1214
|
exports.ScanStatus = ScanStatus;
|
|
3954
1215
|
exports.ScanType = ScanType;
|
|
3955
1216
|
exports.ScanningConfigurationFailureCode = ScanningConfigurationFailureCode;
|
|
3956
|
-
exports.ScanningRepositoryFilter$ = ScanningRepositoryFilter$;
|
|
3957
1217
|
exports.ScanningRepositoryFilterType = ScanningRepositoryFilterType;
|
|
3958
|
-
exports.ScoreDetails$ = ScoreDetails$;
|
|
3959
|
-
exports.SecretNotFoundException = SecretNotFoundException;
|
|
3960
|
-
exports.SecretNotFoundException$ = SecretNotFoundException$;
|
|
3961
|
-
exports.ServerException = ServerException;
|
|
3962
|
-
exports.ServerException$ = ServerException$;
|
|
3963
|
-
exports.SetRepositoryPolicy$ = SetRepositoryPolicy$;
|
|
3964
1218
|
exports.SetRepositoryPolicyCommand = SetRepositoryPolicyCommand;
|
|
3965
|
-
exports.SetRepositoryPolicyRequest$ = SetRepositoryPolicyRequest$;
|
|
3966
|
-
exports.SetRepositoryPolicyResponse$ = SetRepositoryPolicyResponse$;
|
|
3967
|
-
exports.SigningConfiguration$ = SigningConfiguration$;
|
|
3968
|
-
exports.SigningConfigurationNotFoundException = SigningConfigurationNotFoundException;
|
|
3969
|
-
exports.SigningConfigurationNotFoundException$ = SigningConfigurationNotFoundException$;
|
|
3970
|
-
exports.SigningRepositoryFilter$ = SigningRepositoryFilter$;
|
|
3971
1219
|
exports.SigningRepositoryFilterType = SigningRepositoryFilterType;
|
|
3972
|
-
exports.SigningRule$ = SigningRule$;
|
|
3973
1220
|
exports.SigningStatus = SigningStatus;
|
|
3974
|
-
exports.StartImageScan$ = StartImageScan$;
|
|
3975
1221
|
exports.StartImageScanCommand = StartImageScanCommand;
|
|
3976
|
-
exports.StartImageScanRequest$ = StartImageScanRequest$;
|
|
3977
|
-
exports.StartImageScanResponse$ = StartImageScanResponse$;
|
|
3978
|
-
exports.StartLifecyclePolicyPreview$ = StartLifecyclePolicyPreview$;
|
|
3979
1222
|
exports.StartLifecyclePolicyPreviewCommand = StartLifecyclePolicyPreviewCommand;
|
|
3980
|
-
exports.StartLifecyclePolicyPreviewRequest$ = StartLifecyclePolicyPreviewRequest$;
|
|
3981
|
-
exports.StartLifecyclePolicyPreviewResponse$ = StartLifecyclePolicyPreviewResponse$;
|
|
3982
|
-
exports.SubjectIdentifier$ = SubjectIdentifier$;
|
|
3983
|
-
exports.Tag$ = Tag$;
|
|
3984
|
-
exports.TagResource$ = TagResource$;
|
|
3985
1223
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3986
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3987
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3988
1224
|
exports.TagStatus = TagStatus;
|
|
3989
1225
|
exports.TargetStorageClass = TargetStorageClass;
|
|
3990
|
-
exports.TemplateAlreadyExistsException = TemplateAlreadyExistsException;
|
|
3991
|
-
exports.TemplateAlreadyExistsException$ = TemplateAlreadyExistsException$;
|
|
3992
|
-
exports.TemplateNotFoundException = TemplateNotFoundException;
|
|
3993
|
-
exports.TemplateNotFoundException$ = TemplateNotFoundException$;
|
|
3994
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
3995
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3996
|
-
exports.TransitioningImageTotalCount$ = TransitioningImageTotalCount$;
|
|
3997
|
-
exports.UnableToAccessSecretException = UnableToAccessSecretException;
|
|
3998
|
-
exports.UnableToAccessSecretException$ = UnableToAccessSecretException$;
|
|
3999
|
-
exports.UnableToDecryptSecretValueException = UnableToDecryptSecretValueException;
|
|
4000
|
-
exports.UnableToDecryptSecretValueException$ = UnableToDecryptSecretValueException$;
|
|
4001
|
-
exports.UnableToGetUpstreamImageException = UnableToGetUpstreamImageException;
|
|
4002
|
-
exports.UnableToGetUpstreamImageException$ = UnableToGetUpstreamImageException$;
|
|
4003
|
-
exports.UnableToGetUpstreamLayerException = UnableToGetUpstreamLayerException;
|
|
4004
|
-
exports.UnableToGetUpstreamLayerException$ = UnableToGetUpstreamLayerException$;
|
|
4005
|
-
exports.UnsupportedImageTypeException = UnsupportedImageTypeException;
|
|
4006
|
-
exports.UnsupportedImageTypeException$ = UnsupportedImageTypeException$;
|
|
4007
|
-
exports.UnsupportedUpstreamRegistryException = UnsupportedUpstreamRegistryException;
|
|
4008
|
-
exports.UnsupportedUpstreamRegistryException$ = UnsupportedUpstreamRegistryException$;
|
|
4009
|
-
exports.UntagResource$ = UntagResource$;
|
|
4010
1226
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4011
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4012
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4013
|
-
exports.UpdateImageStorageClass$ = UpdateImageStorageClass$;
|
|
4014
1227
|
exports.UpdateImageStorageClassCommand = UpdateImageStorageClassCommand;
|
|
4015
|
-
exports.UpdateImageStorageClassRequest$ = UpdateImageStorageClassRequest$;
|
|
4016
|
-
exports.UpdateImageStorageClassResponse$ = UpdateImageStorageClassResponse$;
|
|
4017
|
-
exports.UpdatePullThroughCacheRule$ = UpdatePullThroughCacheRule$;
|
|
4018
1228
|
exports.UpdatePullThroughCacheRuleCommand = UpdatePullThroughCacheRuleCommand;
|
|
4019
|
-
exports.UpdatePullThroughCacheRuleRequest$ = UpdatePullThroughCacheRuleRequest$;
|
|
4020
|
-
exports.UpdatePullThroughCacheRuleResponse$ = UpdatePullThroughCacheRuleResponse$;
|
|
4021
|
-
exports.UpdateRepositoryCreationTemplate$ = UpdateRepositoryCreationTemplate$;
|
|
4022
1229
|
exports.UpdateRepositoryCreationTemplateCommand = UpdateRepositoryCreationTemplateCommand;
|
|
4023
|
-
exports.UpdateRepositoryCreationTemplateRequest$ = UpdateRepositoryCreationTemplateRequest$;
|
|
4024
|
-
exports.UpdateRepositoryCreationTemplateResponse$ = UpdateRepositoryCreationTemplateResponse$;
|
|
4025
|
-
exports.UploadLayerPart$ = UploadLayerPart$;
|
|
4026
1230
|
exports.UploadLayerPartCommand = UploadLayerPartCommand;
|
|
4027
|
-
exports.UploadLayerPartRequest$ = UploadLayerPartRequest$;
|
|
4028
|
-
exports.UploadLayerPartResponse$ = UploadLayerPartResponse$;
|
|
4029
|
-
exports.UploadNotFoundException = UploadNotFoundException;
|
|
4030
|
-
exports.UploadNotFoundException$ = UploadNotFoundException$;
|
|
4031
1231
|
exports.UpstreamRegistry = UpstreamRegistry;
|
|
4032
|
-
exports.ValidatePullThroughCacheRule$ = ValidatePullThroughCacheRule$;
|
|
4033
1232
|
exports.ValidatePullThroughCacheRuleCommand = ValidatePullThroughCacheRuleCommand;
|
|
4034
|
-
exports.ValidatePullThroughCacheRuleRequest$ = ValidatePullThroughCacheRuleRequest$;
|
|
4035
|
-
exports.ValidatePullThroughCacheRuleResponse$ = ValidatePullThroughCacheRuleResponse$;
|
|
4036
|
-
exports.ValidationException = ValidationException;
|
|
4037
|
-
exports.ValidationException$ = ValidationException$;
|
|
4038
|
-
exports.VulnerablePackage$ = VulnerablePackage$;
|
|
4039
1233
|
exports.paginateDescribeImageScanFindings = paginateDescribeImageScanFindings;
|
|
4040
1234
|
exports.paginateDescribeImages = paginateDescribeImages;
|
|
4041
1235
|
exports.paginateDescribePullThroughCacheRules = paginateDescribePullThroughCacheRules;
|
|
@@ -4047,3 +1241,15 @@ exports.waitForImageScanComplete = waitForImageScanComplete;
|
|
|
4047
1241
|
exports.waitForLifecyclePolicyPreviewComplete = waitForLifecyclePolicyPreviewComplete;
|
|
4048
1242
|
exports.waitUntilImageScanComplete = waitUntilImageScanComplete;
|
|
4049
1243
|
exports.waitUntilLifecyclePolicyPreviewComplete = waitUntilLifecyclePolicyPreviewComplete;
|
|
1244
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1245
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1246
|
+
enumerable: true,
|
|
1247
|
+
get: function () { return schemas_0[k]; }
|
|
1248
|
+
});
|
|
1249
|
+
});
|
|
1250
|
+
Object.keys(errors).forEach(function (k) {
|
|
1251
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1252
|
+
enumerable: true,
|
|
1253
|
+
get: function () { return errors[k]; }
|
|
1254
|
+
});
|
|
1255
|
+
});
|