@aws-sdk/client-ecr 3.720.0 → 3.723.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 +479 -357
- package/dist-es/ECRClient.js +1 -0
- package/dist-es/models/models_0.js +85 -80
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -242,7 +242,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
242
242
|
}, "resolveRuntimeExtensions");
|
|
243
243
|
|
|
244
244
|
// src/ECRClient.ts
|
|
245
|
-
var
|
|
245
|
+
var ECRClient = class extends import_smithy_client.Client {
|
|
246
|
+
static {
|
|
247
|
+
__name(this, "ECRClient");
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* The resolved configuration of ECRClient class. This is resolved and normalized from the {@link ECRClientConfig | constructor configuration interface}.
|
|
251
|
+
*/
|
|
252
|
+
config;
|
|
246
253
|
constructor(...[configuration]) {
|
|
247
254
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
248
255
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -252,7 +259,7 @@ var _ECRClient = class _ECRClient extends import_smithy_client.Client {
|
|
|
252
259
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
253
260
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
254
261
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
255
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
262
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
256
263
|
super(_config_8);
|
|
257
264
|
this.config = _config_8;
|
|
258
265
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -280,8 +287,6 @@ var _ECRClient = class _ECRClient extends import_smithy_client.Client {
|
|
|
280
287
|
super.destroy();
|
|
281
288
|
}
|
|
282
289
|
};
|
|
283
|
-
__name(_ECRClient, "ECRClient");
|
|
284
|
-
var ECRClient = _ECRClient;
|
|
285
290
|
|
|
286
291
|
// src/ECR.ts
|
|
287
292
|
|
|
@@ -298,7 +303,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
298
303
|
|
|
299
304
|
// src/models/ECRServiceException.ts
|
|
300
305
|
|
|
301
|
-
var
|
|
306
|
+
var ECRServiceException = class _ECRServiceException extends import_smithy_client.ServiceException {
|
|
307
|
+
static {
|
|
308
|
+
__name(this, "ECRServiceException");
|
|
309
|
+
}
|
|
302
310
|
/**
|
|
303
311
|
* @internal
|
|
304
312
|
*/
|
|
@@ -307,8 +315,6 @@ var _ECRServiceException = class _ECRServiceException extends import_smithy_clie
|
|
|
307
315
|
Object.setPrototypeOf(this, _ECRServiceException.prototype);
|
|
308
316
|
}
|
|
309
317
|
};
|
|
310
|
-
__name(_ECRServiceException, "ECRServiceException");
|
|
311
|
-
var ECRServiceException = _ECRServiceException;
|
|
312
318
|
|
|
313
319
|
// src/models/models_0.ts
|
|
314
320
|
var LayerFailureCode = {
|
|
@@ -319,7 +325,12 @@ var LayerAvailability = {
|
|
|
319
325
|
AVAILABLE: "AVAILABLE",
|
|
320
326
|
UNAVAILABLE: "UNAVAILABLE"
|
|
321
327
|
};
|
|
322
|
-
var
|
|
328
|
+
var InvalidParameterException = class _InvalidParameterException extends ECRServiceException {
|
|
329
|
+
static {
|
|
330
|
+
__name(this, "InvalidParameterException");
|
|
331
|
+
}
|
|
332
|
+
name = "InvalidParameterException";
|
|
333
|
+
$fault = "client";
|
|
323
334
|
/**
|
|
324
335
|
* @internal
|
|
325
336
|
*/
|
|
@@ -329,14 +340,15 @@ var _InvalidParameterException = class _InvalidParameterException extends ECRSer
|
|
|
329
340
|
$fault: "client",
|
|
330
341
|
...opts
|
|
331
342
|
});
|
|
332
|
-
this.name = "InvalidParameterException";
|
|
333
|
-
this.$fault = "client";
|
|
334
343
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
335
344
|
}
|
|
336
345
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
346
|
+
var RepositoryNotFoundException = class _RepositoryNotFoundException extends ECRServiceException {
|
|
347
|
+
static {
|
|
348
|
+
__name(this, "RepositoryNotFoundException");
|
|
349
|
+
}
|
|
350
|
+
name = "RepositoryNotFoundException";
|
|
351
|
+
$fault = "client";
|
|
340
352
|
/**
|
|
341
353
|
* @internal
|
|
342
354
|
*/
|
|
@@ -346,14 +358,15 @@ var _RepositoryNotFoundException = class _RepositoryNotFoundException extends EC
|
|
|
346
358
|
$fault: "client",
|
|
347
359
|
...opts
|
|
348
360
|
});
|
|
349
|
-
this.name = "RepositoryNotFoundException";
|
|
350
|
-
this.$fault = "client";
|
|
351
361
|
Object.setPrototypeOf(this, _RepositoryNotFoundException.prototype);
|
|
352
362
|
}
|
|
353
363
|
};
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
364
|
+
var ServerException = class _ServerException extends ECRServiceException {
|
|
365
|
+
static {
|
|
366
|
+
__name(this, "ServerException");
|
|
367
|
+
}
|
|
368
|
+
name = "ServerException";
|
|
369
|
+
$fault = "server";
|
|
357
370
|
/**
|
|
358
371
|
* @internal
|
|
359
372
|
*/
|
|
@@ -363,13 +376,9 @@ var _ServerException = class _ServerException extends ECRServiceException {
|
|
|
363
376
|
$fault: "server",
|
|
364
377
|
...opts
|
|
365
378
|
});
|
|
366
|
-
this.name = "ServerException";
|
|
367
|
-
this.$fault = "server";
|
|
368
379
|
Object.setPrototypeOf(this, _ServerException.prototype);
|
|
369
380
|
}
|
|
370
381
|
};
|
|
371
|
-
__name(_ServerException, "ServerException");
|
|
372
|
-
var ServerException = _ServerException;
|
|
373
382
|
var ImageFailureCode = {
|
|
374
383
|
ImageNotFound: "ImageNotFound",
|
|
375
384
|
ImageReferencedByManifestList: "ImageReferencedByManifestList",
|
|
@@ -382,7 +391,12 @@ var ImageFailureCode = {
|
|
|
382
391
|
UpstreamTooManyRequests: "UpstreamTooManyRequests",
|
|
383
392
|
UpstreamUnavailable: "UpstreamUnavailable"
|
|
384
393
|
};
|
|
385
|
-
var
|
|
394
|
+
var LimitExceededException = class _LimitExceededException extends ECRServiceException {
|
|
395
|
+
static {
|
|
396
|
+
__name(this, "LimitExceededException");
|
|
397
|
+
}
|
|
398
|
+
name = "LimitExceededException";
|
|
399
|
+
$fault = "client";
|
|
386
400
|
/**
|
|
387
401
|
* @internal
|
|
388
402
|
*/
|
|
@@ -392,14 +406,15 @@ var _LimitExceededException = class _LimitExceededException extends ECRServiceEx
|
|
|
392
406
|
$fault: "client",
|
|
393
407
|
...opts
|
|
394
408
|
});
|
|
395
|
-
this.name = "LimitExceededException";
|
|
396
|
-
this.$fault = "client";
|
|
397
409
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
398
410
|
}
|
|
399
411
|
};
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
412
|
+
var UnableToGetUpstreamImageException = class _UnableToGetUpstreamImageException extends ECRServiceException {
|
|
413
|
+
static {
|
|
414
|
+
__name(this, "UnableToGetUpstreamImageException");
|
|
415
|
+
}
|
|
416
|
+
name = "UnableToGetUpstreamImageException";
|
|
417
|
+
$fault = "client";
|
|
403
418
|
/**
|
|
404
419
|
* @internal
|
|
405
420
|
*/
|
|
@@ -409,13 +424,9 @@ var _UnableToGetUpstreamImageException = class _UnableToGetUpstreamImageExceptio
|
|
|
409
424
|
$fault: "client",
|
|
410
425
|
...opts
|
|
411
426
|
});
|
|
412
|
-
this.name = "UnableToGetUpstreamImageException";
|
|
413
|
-
this.$fault = "client";
|
|
414
427
|
Object.setPrototypeOf(this, _UnableToGetUpstreamImageException.prototype);
|
|
415
428
|
}
|
|
416
429
|
};
|
|
417
|
-
__name(_UnableToGetUpstreamImageException, "UnableToGetUpstreamImageException");
|
|
418
|
-
var UnableToGetUpstreamImageException = _UnableToGetUpstreamImageException;
|
|
419
430
|
var ScanningConfigurationFailureCode = {
|
|
420
431
|
REPOSITORY_NOT_FOUND: "REPOSITORY_NOT_FOUND"
|
|
421
432
|
};
|
|
@@ -427,7 +438,12 @@ var ScanFrequency = {
|
|
|
427
438
|
MANUAL: "MANUAL",
|
|
428
439
|
SCAN_ON_PUSH: "SCAN_ON_PUSH"
|
|
429
440
|
};
|
|
430
|
-
var
|
|
441
|
+
var ValidationException = class _ValidationException extends ECRServiceException {
|
|
442
|
+
static {
|
|
443
|
+
__name(this, "ValidationException");
|
|
444
|
+
}
|
|
445
|
+
name = "ValidationException";
|
|
446
|
+
$fault = "client";
|
|
431
447
|
/**
|
|
432
448
|
* @internal
|
|
433
449
|
*/
|
|
@@ -437,14 +453,15 @@ var _ValidationException = class _ValidationException extends ECRServiceExceptio
|
|
|
437
453
|
$fault: "client",
|
|
438
454
|
...opts
|
|
439
455
|
});
|
|
440
|
-
this.name = "ValidationException";
|
|
441
|
-
this.$fault = "client";
|
|
442
456
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
443
457
|
}
|
|
444
458
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
459
|
+
var EmptyUploadException = class _EmptyUploadException extends ECRServiceException {
|
|
460
|
+
static {
|
|
461
|
+
__name(this, "EmptyUploadException");
|
|
462
|
+
}
|
|
463
|
+
name = "EmptyUploadException";
|
|
464
|
+
$fault = "client";
|
|
448
465
|
/**
|
|
449
466
|
* @internal
|
|
450
467
|
*/
|
|
@@ -454,14 +471,15 @@ var _EmptyUploadException = class _EmptyUploadException extends ECRServiceExcept
|
|
|
454
471
|
$fault: "client",
|
|
455
472
|
...opts
|
|
456
473
|
});
|
|
457
|
-
this.name = "EmptyUploadException";
|
|
458
|
-
this.$fault = "client";
|
|
459
474
|
Object.setPrototypeOf(this, _EmptyUploadException.prototype);
|
|
460
475
|
}
|
|
461
476
|
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
477
|
+
var InvalidLayerException = class _InvalidLayerException extends ECRServiceException {
|
|
478
|
+
static {
|
|
479
|
+
__name(this, "InvalidLayerException");
|
|
480
|
+
}
|
|
481
|
+
name = "InvalidLayerException";
|
|
482
|
+
$fault = "client";
|
|
465
483
|
/**
|
|
466
484
|
* @internal
|
|
467
485
|
*/
|
|
@@ -471,14 +489,20 @@ var _InvalidLayerException = class _InvalidLayerException extends ECRServiceExce
|
|
|
471
489
|
$fault: "client",
|
|
472
490
|
...opts
|
|
473
491
|
});
|
|
474
|
-
this.name = "InvalidLayerException";
|
|
475
|
-
this.$fault = "client";
|
|
476
492
|
Object.setPrototypeOf(this, _InvalidLayerException.prototype);
|
|
477
493
|
}
|
|
478
494
|
};
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
495
|
+
var KmsException = class _KmsException extends ECRServiceException {
|
|
496
|
+
static {
|
|
497
|
+
__name(this, "KmsException");
|
|
498
|
+
}
|
|
499
|
+
name = "KmsException";
|
|
500
|
+
$fault = "client";
|
|
501
|
+
/**
|
|
502
|
+
* <p>The error code returned by KMS.</p>
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
kmsError;
|
|
482
506
|
/**
|
|
483
507
|
* @internal
|
|
484
508
|
*/
|
|
@@ -488,15 +512,16 @@ var _KmsException = class _KmsException extends ECRServiceException {
|
|
|
488
512
|
$fault: "client",
|
|
489
513
|
...opts
|
|
490
514
|
});
|
|
491
|
-
this.name = "KmsException";
|
|
492
|
-
this.$fault = "client";
|
|
493
515
|
Object.setPrototypeOf(this, _KmsException.prototype);
|
|
494
516
|
this.kmsError = opts.kmsError;
|
|
495
517
|
}
|
|
496
518
|
};
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
519
|
+
var LayerAlreadyExistsException = class _LayerAlreadyExistsException extends ECRServiceException {
|
|
520
|
+
static {
|
|
521
|
+
__name(this, "LayerAlreadyExistsException");
|
|
522
|
+
}
|
|
523
|
+
name = "LayerAlreadyExistsException";
|
|
524
|
+
$fault = "client";
|
|
500
525
|
/**
|
|
501
526
|
* @internal
|
|
502
527
|
*/
|
|
@@ -506,14 +531,15 @@ var _LayerAlreadyExistsException = class _LayerAlreadyExistsException extends EC
|
|
|
506
531
|
$fault: "client",
|
|
507
532
|
...opts
|
|
508
533
|
});
|
|
509
|
-
this.name = "LayerAlreadyExistsException";
|
|
510
|
-
this.$fault = "client";
|
|
511
534
|
Object.setPrototypeOf(this, _LayerAlreadyExistsException.prototype);
|
|
512
535
|
}
|
|
513
536
|
};
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
537
|
+
var LayerPartTooSmallException = class _LayerPartTooSmallException extends ECRServiceException {
|
|
538
|
+
static {
|
|
539
|
+
__name(this, "LayerPartTooSmallException");
|
|
540
|
+
}
|
|
541
|
+
name = "LayerPartTooSmallException";
|
|
542
|
+
$fault = "client";
|
|
517
543
|
/**
|
|
518
544
|
* @internal
|
|
519
545
|
*/
|
|
@@ -523,14 +549,15 @@ var _LayerPartTooSmallException = class _LayerPartTooSmallException extends ECRS
|
|
|
523
549
|
$fault: "client",
|
|
524
550
|
...opts
|
|
525
551
|
});
|
|
526
|
-
this.name = "LayerPartTooSmallException";
|
|
527
|
-
this.$fault = "client";
|
|
528
552
|
Object.setPrototypeOf(this, _LayerPartTooSmallException.prototype);
|
|
529
553
|
}
|
|
530
554
|
};
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
555
|
+
var UploadNotFoundException = class _UploadNotFoundException extends ECRServiceException {
|
|
556
|
+
static {
|
|
557
|
+
__name(this, "UploadNotFoundException");
|
|
558
|
+
}
|
|
559
|
+
name = "UploadNotFoundException";
|
|
560
|
+
$fault = "client";
|
|
534
561
|
/**
|
|
535
562
|
* @internal
|
|
536
563
|
*/
|
|
@@ -540,13 +567,9 @@ var _UploadNotFoundException = class _UploadNotFoundException extends ECRService
|
|
|
540
567
|
$fault: "client",
|
|
541
568
|
...opts
|
|
542
569
|
});
|
|
543
|
-
this.name = "UploadNotFoundException";
|
|
544
|
-
this.$fault = "client";
|
|
545
570
|
Object.setPrototypeOf(this, _UploadNotFoundException.prototype);
|
|
546
571
|
}
|
|
547
572
|
};
|
|
548
|
-
__name(_UploadNotFoundException, "UploadNotFoundException");
|
|
549
|
-
var UploadNotFoundException = _UploadNotFoundException;
|
|
550
573
|
var UpstreamRegistry = {
|
|
551
574
|
AzureContainerRegistry: "azure-container-registry",
|
|
552
575
|
DockerHub: "docker-hub",
|
|
@@ -556,7 +579,12 @@ var UpstreamRegistry = {
|
|
|
556
579
|
K8s: "k8s",
|
|
557
580
|
Quay: "quay"
|
|
558
581
|
};
|
|
559
|
-
var
|
|
582
|
+
var PullThroughCacheRuleAlreadyExistsException = class _PullThroughCacheRuleAlreadyExistsException extends ECRServiceException {
|
|
583
|
+
static {
|
|
584
|
+
__name(this, "PullThroughCacheRuleAlreadyExistsException");
|
|
585
|
+
}
|
|
586
|
+
name = "PullThroughCacheRuleAlreadyExistsException";
|
|
587
|
+
$fault = "client";
|
|
560
588
|
/**
|
|
561
589
|
* @internal
|
|
562
590
|
*/
|
|
@@ -566,14 +594,15 @@ var _PullThroughCacheRuleAlreadyExistsException = class _PullThroughCacheRuleAlr
|
|
|
566
594
|
$fault: "client",
|
|
567
595
|
...opts
|
|
568
596
|
});
|
|
569
|
-
this.name = "PullThroughCacheRuleAlreadyExistsException";
|
|
570
|
-
this.$fault = "client";
|
|
571
597
|
Object.setPrototypeOf(this, _PullThroughCacheRuleAlreadyExistsException.prototype);
|
|
572
598
|
}
|
|
573
599
|
};
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
600
|
+
var SecretNotFoundException = class _SecretNotFoundException extends ECRServiceException {
|
|
601
|
+
static {
|
|
602
|
+
__name(this, "SecretNotFoundException");
|
|
603
|
+
}
|
|
604
|
+
name = "SecretNotFoundException";
|
|
605
|
+
$fault = "client";
|
|
577
606
|
/**
|
|
578
607
|
* @internal
|
|
579
608
|
*/
|
|
@@ -583,14 +612,15 @@ var _SecretNotFoundException = class _SecretNotFoundException extends ECRService
|
|
|
583
612
|
$fault: "client",
|
|
584
613
|
...opts
|
|
585
614
|
});
|
|
586
|
-
this.name = "SecretNotFoundException";
|
|
587
|
-
this.$fault = "client";
|
|
588
615
|
Object.setPrototypeOf(this, _SecretNotFoundException.prototype);
|
|
589
616
|
}
|
|
590
617
|
};
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
618
|
+
var UnableToAccessSecretException = class _UnableToAccessSecretException extends ECRServiceException {
|
|
619
|
+
static {
|
|
620
|
+
__name(this, "UnableToAccessSecretException");
|
|
621
|
+
}
|
|
622
|
+
name = "UnableToAccessSecretException";
|
|
623
|
+
$fault = "client";
|
|
594
624
|
/**
|
|
595
625
|
* @internal
|
|
596
626
|
*/
|
|
@@ -600,14 +630,15 @@ var _UnableToAccessSecretException = class _UnableToAccessSecretException extend
|
|
|
600
630
|
$fault: "client",
|
|
601
631
|
...opts
|
|
602
632
|
});
|
|
603
|
-
this.name = "UnableToAccessSecretException";
|
|
604
|
-
this.$fault = "client";
|
|
605
633
|
Object.setPrototypeOf(this, _UnableToAccessSecretException.prototype);
|
|
606
634
|
}
|
|
607
635
|
};
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
636
|
+
var UnableToDecryptSecretValueException = class _UnableToDecryptSecretValueException extends ECRServiceException {
|
|
637
|
+
static {
|
|
638
|
+
__name(this, "UnableToDecryptSecretValueException");
|
|
639
|
+
}
|
|
640
|
+
name = "UnableToDecryptSecretValueException";
|
|
641
|
+
$fault = "client";
|
|
611
642
|
/**
|
|
612
643
|
* @internal
|
|
613
644
|
*/
|
|
@@ -617,14 +648,15 @@ var _UnableToDecryptSecretValueException = class _UnableToDecryptSecretValueExce
|
|
|
617
648
|
$fault: "client",
|
|
618
649
|
...opts
|
|
619
650
|
});
|
|
620
|
-
this.name = "UnableToDecryptSecretValueException";
|
|
621
|
-
this.$fault = "client";
|
|
622
651
|
Object.setPrototypeOf(this, _UnableToDecryptSecretValueException.prototype);
|
|
623
652
|
}
|
|
624
653
|
};
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
654
|
+
var UnsupportedUpstreamRegistryException = class _UnsupportedUpstreamRegistryException extends ECRServiceException {
|
|
655
|
+
static {
|
|
656
|
+
__name(this, "UnsupportedUpstreamRegistryException");
|
|
657
|
+
}
|
|
658
|
+
name = "UnsupportedUpstreamRegistryException";
|
|
659
|
+
$fault = "client";
|
|
628
660
|
/**
|
|
629
661
|
* @internal
|
|
630
662
|
*/
|
|
@@ -634,13 +666,9 @@ var _UnsupportedUpstreamRegistryException = class _UnsupportedUpstreamRegistryEx
|
|
|
634
666
|
$fault: "client",
|
|
635
667
|
...opts
|
|
636
668
|
});
|
|
637
|
-
this.name = "UnsupportedUpstreamRegistryException";
|
|
638
|
-
this.$fault = "client";
|
|
639
669
|
Object.setPrototypeOf(this, _UnsupportedUpstreamRegistryException.prototype);
|
|
640
670
|
}
|
|
641
671
|
};
|
|
642
|
-
__name(_UnsupportedUpstreamRegistryException, "UnsupportedUpstreamRegistryException");
|
|
643
|
-
var UnsupportedUpstreamRegistryException = _UnsupportedUpstreamRegistryException;
|
|
644
672
|
var EncryptionType = {
|
|
645
673
|
AES256: "AES256",
|
|
646
674
|
KMS: "KMS",
|
|
@@ -650,7 +678,12 @@ var ImageTagMutability = {
|
|
|
650
678
|
IMMUTABLE: "IMMUTABLE",
|
|
651
679
|
MUTABLE: "MUTABLE"
|
|
652
680
|
};
|
|
653
|
-
var
|
|
681
|
+
var InvalidTagParameterException = class _InvalidTagParameterException extends ECRServiceException {
|
|
682
|
+
static {
|
|
683
|
+
__name(this, "InvalidTagParameterException");
|
|
684
|
+
}
|
|
685
|
+
name = "InvalidTagParameterException";
|
|
686
|
+
$fault = "client";
|
|
654
687
|
/**
|
|
655
688
|
* @internal
|
|
656
689
|
*/
|
|
@@ -660,14 +693,15 @@ var _InvalidTagParameterException = class _InvalidTagParameterException extends
|
|
|
660
693
|
$fault: "client",
|
|
661
694
|
...opts
|
|
662
695
|
});
|
|
663
|
-
this.name = "InvalidTagParameterException";
|
|
664
|
-
this.$fault = "client";
|
|
665
696
|
Object.setPrototypeOf(this, _InvalidTagParameterException.prototype);
|
|
666
697
|
}
|
|
667
698
|
};
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
699
|
+
var RepositoryAlreadyExistsException = class _RepositoryAlreadyExistsException extends ECRServiceException {
|
|
700
|
+
static {
|
|
701
|
+
__name(this, "RepositoryAlreadyExistsException");
|
|
702
|
+
}
|
|
703
|
+
name = "RepositoryAlreadyExistsException";
|
|
704
|
+
$fault = "client";
|
|
671
705
|
/**
|
|
672
706
|
* @internal
|
|
673
707
|
*/
|
|
@@ -677,14 +711,15 @@ var _RepositoryAlreadyExistsException = class _RepositoryAlreadyExistsException
|
|
|
677
711
|
$fault: "client",
|
|
678
712
|
...opts
|
|
679
713
|
});
|
|
680
|
-
this.name = "RepositoryAlreadyExistsException";
|
|
681
|
-
this.$fault = "client";
|
|
682
714
|
Object.setPrototypeOf(this, _RepositoryAlreadyExistsException.prototype);
|
|
683
715
|
}
|
|
684
716
|
};
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
717
|
+
var TooManyTagsException = class _TooManyTagsException extends ECRServiceException {
|
|
718
|
+
static {
|
|
719
|
+
__name(this, "TooManyTagsException");
|
|
720
|
+
}
|
|
721
|
+
name = "TooManyTagsException";
|
|
722
|
+
$fault = "client";
|
|
688
723
|
/**
|
|
689
724
|
* @internal
|
|
690
725
|
*/
|
|
@@ -694,18 +729,19 @@ var _TooManyTagsException = class _TooManyTagsException extends ECRServiceExcept
|
|
|
694
729
|
$fault: "client",
|
|
695
730
|
...opts
|
|
696
731
|
});
|
|
697
|
-
this.name = "TooManyTagsException";
|
|
698
|
-
this.$fault = "client";
|
|
699
732
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
700
733
|
}
|
|
701
734
|
};
|
|
702
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
703
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
704
735
|
var RCTAppliedFor = {
|
|
705
736
|
PULL_THROUGH_CACHE: "PULL_THROUGH_CACHE",
|
|
706
737
|
REPLICATION: "REPLICATION"
|
|
707
738
|
};
|
|
708
|
-
var
|
|
739
|
+
var TemplateAlreadyExistsException = class _TemplateAlreadyExistsException extends ECRServiceException {
|
|
740
|
+
static {
|
|
741
|
+
__name(this, "TemplateAlreadyExistsException");
|
|
742
|
+
}
|
|
743
|
+
name = "TemplateAlreadyExistsException";
|
|
744
|
+
$fault = "client";
|
|
709
745
|
/**
|
|
710
746
|
* @internal
|
|
711
747
|
*/
|
|
@@ -715,14 +751,15 @@ var _TemplateAlreadyExistsException = class _TemplateAlreadyExistsException exte
|
|
|
715
751
|
$fault: "client",
|
|
716
752
|
...opts
|
|
717
753
|
});
|
|
718
|
-
this.name = "TemplateAlreadyExistsException";
|
|
719
|
-
this.$fault = "client";
|
|
720
754
|
Object.setPrototypeOf(this, _TemplateAlreadyExistsException.prototype);
|
|
721
755
|
}
|
|
722
756
|
};
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
757
|
+
var LifecyclePolicyNotFoundException = class _LifecyclePolicyNotFoundException extends ECRServiceException {
|
|
758
|
+
static {
|
|
759
|
+
__name(this, "LifecyclePolicyNotFoundException");
|
|
760
|
+
}
|
|
761
|
+
name = "LifecyclePolicyNotFoundException";
|
|
762
|
+
$fault = "client";
|
|
726
763
|
/**
|
|
727
764
|
* @internal
|
|
728
765
|
*/
|
|
@@ -732,14 +769,15 @@ var _LifecyclePolicyNotFoundException = class _LifecyclePolicyNotFoundException
|
|
|
732
769
|
$fault: "client",
|
|
733
770
|
...opts
|
|
734
771
|
});
|
|
735
|
-
this.name = "LifecyclePolicyNotFoundException";
|
|
736
|
-
this.$fault = "client";
|
|
737
772
|
Object.setPrototypeOf(this, _LifecyclePolicyNotFoundException.prototype);
|
|
738
773
|
}
|
|
739
774
|
};
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
775
|
+
var PullThroughCacheRuleNotFoundException = class _PullThroughCacheRuleNotFoundException extends ECRServiceException {
|
|
776
|
+
static {
|
|
777
|
+
__name(this, "PullThroughCacheRuleNotFoundException");
|
|
778
|
+
}
|
|
779
|
+
name = "PullThroughCacheRuleNotFoundException";
|
|
780
|
+
$fault = "client";
|
|
743
781
|
/**
|
|
744
782
|
* @internal
|
|
745
783
|
*/
|
|
@@ -749,14 +787,15 @@ var _PullThroughCacheRuleNotFoundException = class _PullThroughCacheRuleNotFound
|
|
|
749
787
|
$fault: "client",
|
|
750
788
|
...opts
|
|
751
789
|
});
|
|
752
|
-
this.name = "PullThroughCacheRuleNotFoundException";
|
|
753
|
-
this.$fault = "client";
|
|
754
790
|
Object.setPrototypeOf(this, _PullThroughCacheRuleNotFoundException.prototype);
|
|
755
791
|
}
|
|
756
792
|
};
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
793
|
+
var RegistryPolicyNotFoundException = class _RegistryPolicyNotFoundException extends ECRServiceException {
|
|
794
|
+
static {
|
|
795
|
+
__name(this, "RegistryPolicyNotFoundException");
|
|
796
|
+
}
|
|
797
|
+
name = "RegistryPolicyNotFoundException";
|
|
798
|
+
$fault = "client";
|
|
760
799
|
/**
|
|
761
800
|
* @internal
|
|
762
801
|
*/
|
|
@@ -766,14 +805,15 @@ var _RegistryPolicyNotFoundException = class _RegistryPolicyNotFoundException ex
|
|
|
766
805
|
$fault: "client",
|
|
767
806
|
...opts
|
|
768
807
|
});
|
|
769
|
-
this.name = "RegistryPolicyNotFoundException";
|
|
770
|
-
this.$fault = "client";
|
|
771
808
|
Object.setPrototypeOf(this, _RegistryPolicyNotFoundException.prototype);
|
|
772
809
|
}
|
|
773
810
|
};
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
811
|
+
var RepositoryNotEmptyException = class _RepositoryNotEmptyException extends ECRServiceException {
|
|
812
|
+
static {
|
|
813
|
+
__name(this, "RepositoryNotEmptyException");
|
|
814
|
+
}
|
|
815
|
+
name = "RepositoryNotEmptyException";
|
|
816
|
+
$fault = "client";
|
|
777
817
|
/**
|
|
778
818
|
* @internal
|
|
779
819
|
*/
|
|
@@ -783,14 +823,15 @@ var _RepositoryNotEmptyException = class _RepositoryNotEmptyException extends EC
|
|
|
783
823
|
$fault: "client",
|
|
784
824
|
...opts
|
|
785
825
|
});
|
|
786
|
-
this.name = "RepositoryNotEmptyException";
|
|
787
|
-
this.$fault = "client";
|
|
788
826
|
Object.setPrototypeOf(this, _RepositoryNotEmptyException.prototype);
|
|
789
827
|
}
|
|
790
828
|
};
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
829
|
+
var TemplateNotFoundException = class _TemplateNotFoundException extends ECRServiceException {
|
|
830
|
+
static {
|
|
831
|
+
__name(this, "TemplateNotFoundException");
|
|
832
|
+
}
|
|
833
|
+
name = "TemplateNotFoundException";
|
|
834
|
+
$fault = "client";
|
|
794
835
|
/**
|
|
795
836
|
* @internal
|
|
796
837
|
*/
|
|
@@ -800,14 +841,15 @@ var _TemplateNotFoundException = class _TemplateNotFoundException extends ECRSer
|
|
|
800
841
|
$fault: "client",
|
|
801
842
|
...opts
|
|
802
843
|
});
|
|
803
|
-
this.name = "TemplateNotFoundException";
|
|
804
|
-
this.$fault = "client";
|
|
805
844
|
Object.setPrototypeOf(this, _TemplateNotFoundException.prototype);
|
|
806
845
|
}
|
|
807
846
|
};
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
847
|
+
var RepositoryPolicyNotFoundException = class _RepositoryPolicyNotFoundException extends ECRServiceException {
|
|
848
|
+
static {
|
|
849
|
+
__name(this, "RepositoryPolicyNotFoundException");
|
|
850
|
+
}
|
|
851
|
+
name = "RepositoryPolicyNotFoundException";
|
|
852
|
+
$fault = "client";
|
|
811
853
|
/**
|
|
812
854
|
* @internal
|
|
813
855
|
*/
|
|
@@ -817,19 +859,20 @@ var _RepositoryPolicyNotFoundException = class _RepositoryPolicyNotFoundExceptio
|
|
|
817
859
|
$fault: "client",
|
|
818
860
|
...opts
|
|
819
861
|
});
|
|
820
|
-
this.name = "RepositoryPolicyNotFoundException";
|
|
821
|
-
this.$fault = "client";
|
|
822
862
|
Object.setPrototypeOf(this, _RepositoryPolicyNotFoundException.prototype);
|
|
823
863
|
}
|
|
824
864
|
};
|
|
825
|
-
__name(_RepositoryPolicyNotFoundException, "RepositoryPolicyNotFoundException");
|
|
826
|
-
var RepositoryPolicyNotFoundException = _RepositoryPolicyNotFoundException;
|
|
827
865
|
var ReplicationStatus = {
|
|
828
866
|
COMPLETE: "COMPLETE",
|
|
829
867
|
FAILED: "FAILED",
|
|
830
868
|
IN_PROGRESS: "IN_PROGRESS"
|
|
831
869
|
};
|
|
832
|
-
var
|
|
870
|
+
var ImageNotFoundException = class _ImageNotFoundException extends ECRServiceException {
|
|
871
|
+
static {
|
|
872
|
+
__name(this, "ImageNotFoundException");
|
|
873
|
+
}
|
|
874
|
+
name = "ImageNotFoundException";
|
|
875
|
+
$fault = "client";
|
|
833
876
|
/**
|
|
834
877
|
* @internal
|
|
835
878
|
*/
|
|
@@ -839,13 +882,9 @@ var _ImageNotFoundException = class _ImageNotFoundException extends ECRServiceEx
|
|
|
839
882
|
$fault: "client",
|
|
840
883
|
...opts
|
|
841
884
|
});
|
|
842
|
-
this.name = "ImageNotFoundException";
|
|
843
|
-
this.$fault = "client";
|
|
844
885
|
Object.setPrototypeOf(this, _ImageNotFoundException.prototype);
|
|
845
886
|
}
|
|
846
887
|
};
|
|
847
|
-
__name(_ImageNotFoundException, "ImageNotFoundException");
|
|
848
|
-
var ImageNotFoundException = _ImageNotFoundException;
|
|
849
888
|
var TagStatus = {
|
|
850
889
|
ANY: "ANY",
|
|
851
890
|
TAGGED: "TAGGED",
|
|
@@ -869,7 +908,12 @@ var ScanStatus = {
|
|
|
869
908
|
SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",
|
|
870
909
|
UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE"
|
|
871
910
|
};
|
|
872
|
-
var
|
|
911
|
+
var ScanNotFoundException = class _ScanNotFoundException extends ECRServiceException {
|
|
912
|
+
static {
|
|
913
|
+
__name(this, "ScanNotFoundException");
|
|
914
|
+
}
|
|
915
|
+
name = "ScanNotFoundException";
|
|
916
|
+
$fault = "client";
|
|
873
917
|
/**
|
|
874
918
|
* @internal
|
|
875
919
|
*/
|
|
@@ -879,17 +923,18 @@ var _ScanNotFoundException = class _ScanNotFoundException extends ECRServiceExce
|
|
|
879
923
|
$fault: "client",
|
|
880
924
|
...opts
|
|
881
925
|
});
|
|
882
|
-
this.name = "ScanNotFoundException";
|
|
883
|
-
this.$fault = "client";
|
|
884
926
|
Object.setPrototypeOf(this, _ScanNotFoundException.prototype);
|
|
885
927
|
}
|
|
886
928
|
};
|
|
887
|
-
__name(_ScanNotFoundException, "ScanNotFoundException");
|
|
888
|
-
var ScanNotFoundException = _ScanNotFoundException;
|
|
889
929
|
var RepositoryFilterType = {
|
|
890
930
|
PREFIX_MATCH: "PREFIX_MATCH"
|
|
891
931
|
};
|
|
892
|
-
var
|
|
932
|
+
var LayerInaccessibleException = class _LayerInaccessibleException extends ECRServiceException {
|
|
933
|
+
static {
|
|
934
|
+
__name(this, "LayerInaccessibleException");
|
|
935
|
+
}
|
|
936
|
+
name = "LayerInaccessibleException";
|
|
937
|
+
$fault = "client";
|
|
893
938
|
/**
|
|
894
939
|
* @internal
|
|
895
940
|
*/
|
|
@@ -899,14 +944,15 @@ var _LayerInaccessibleException = class _LayerInaccessibleException extends ECRS
|
|
|
899
944
|
$fault: "client",
|
|
900
945
|
...opts
|
|
901
946
|
});
|
|
902
|
-
this.name = "LayerInaccessibleException";
|
|
903
|
-
this.$fault = "client";
|
|
904
947
|
Object.setPrototypeOf(this, _LayerInaccessibleException.prototype);
|
|
905
948
|
}
|
|
906
949
|
};
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
950
|
+
var LayersNotFoundException = class _LayersNotFoundException extends ECRServiceException {
|
|
951
|
+
static {
|
|
952
|
+
__name(this, "LayersNotFoundException");
|
|
953
|
+
}
|
|
954
|
+
name = "LayersNotFoundException";
|
|
955
|
+
$fault = "client";
|
|
910
956
|
/**
|
|
911
957
|
* @internal
|
|
912
958
|
*/
|
|
@@ -916,14 +962,15 @@ var _LayersNotFoundException = class _LayersNotFoundException extends ECRService
|
|
|
916
962
|
$fault: "client",
|
|
917
963
|
...opts
|
|
918
964
|
});
|
|
919
|
-
this.name = "LayersNotFoundException";
|
|
920
|
-
this.$fault = "client";
|
|
921
965
|
Object.setPrototypeOf(this, _LayersNotFoundException.prototype);
|
|
922
966
|
}
|
|
923
967
|
};
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
968
|
+
var UnableToGetUpstreamLayerException = class _UnableToGetUpstreamLayerException extends ECRServiceException {
|
|
969
|
+
static {
|
|
970
|
+
__name(this, "UnableToGetUpstreamLayerException");
|
|
971
|
+
}
|
|
972
|
+
name = "UnableToGetUpstreamLayerException";
|
|
973
|
+
$fault = "client";
|
|
927
974
|
/**
|
|
928
975
|
* @internal
|
|
929
976
|
*/
|
|
@@ -933,13 +980,9 @@ var _UnableToGetUpstreamLayerException = class _UnableToGetUpstreamLayerExceptio
|
|
|
933
980
|
$fault: "client",
|
|
934
981
|
...opts
|
|
935
982
|
});
|
|
936
|
-
this.name = "UnableToGetUpstreamLayerException";
|
|
937
|
-
this.$fault = "client";
|
|
938
983
|
Object.setPrototypeOf(this, _UnableToGetUpstreamLayerException.prototype);
|
|
939
984
|
}
|
|
940
985
|
};
|
|
941
|
-
__name(_UnableToGetUpstreamLayerException, "UnableToGetUpstreamLayerException");
|
|
942
|
-
var UnableToGetUpstreamLayerException = _UnableToGetUpstreamLayerException;
|
|
943
986
|
var ImageActionType = {
|
|
944
987
|
EXPIRE: "EXPIRE"
|
|
945
988
|
};
|
|
@@ -949,7 +992,12 @@ var LifecyclePolicyPreviewStatus = {
|
|
|
949
992
|
FAILED: "FAILED",
|
|
950
993
|
IN_PROGRESS: "IN_PROGRESS"
|
|
951
994
|
};
|
|
952
|
-
var
|
|
995
|
+
var LifecyclePolicyPreviewNotFoundException = class _LifecyclePolicyPreviewNotFoundException extends ECRServiceException {
|
|
996
|
+
static {
|
|
997
|
+
__name(this, "LifecyclePolicyPreviewNotFoundException");
|
|
998
|
+
}
|
|
999
|
+
name = "LifecyclePolicyPreviewNotFoundException";
|
|
1000
|
+
$fault = "client";
|
|
953
1001
|
/**
|
|
954
1002
|
* @internal
|
|
955
1003
|
*/
|
|
@@ -959,18 +1007,19 @@ var _LifecyclePolicyPreviewNotFoundException = class _LifecyclePolicyPreviewNotF
|
|
|
959
1007
|
$fault: "client",
|
|
960
1008
|
...opts
|
|
961
1009
|
});
|
|
962
|
-
this.name = "LifecyclePolicyPreviewNotFoundException";
|
|
963
|
-
this.$fault = "client";
|
|
964
1010
|
Object.setPrototypeOf(this, _LifecyclePolicyPreviewNotFoundException.prototype);
|
|
965
1011
|
}
|
|
966
1012
|
};
|
|
967
|
-
__name(_LifecyclePolicyPreviewNotFoundException, "LifecyclePolicyPreviewNotFoundException");
|
|
968
|
-
var LifecyclePolicyPreviewNotFoundException = _LifecyclePolicyPreviewNotFoundException;
|
|
969
1013
|
var ScanType = {
|
|
970
1014
|
BASIC: "BASIC",
|
|
971
1015
|
ENHANCED: "ENHANCED"
|
|
972
1016
|
};
|
|
973
|
-
var
|
|
1017
|
+
var ImageAlreadyExistsException = class _ImageAlreadyExistsException extends ECRServiceException {
|
|
1018
|
+
static {
|
|
1019
|
+
__name(this, "ImageAlreadyExistsException");
|
|
1020
|
+
}
|
|
1021
|
+
name = "ImageAlreadyExistsException";
|
|
1022
|
+
$fault = "client";
|
|
974
1023
|
/**
|
|
975
1024
|
* @internal
|
|
976
1025
|
*/
|
|
@@ -980,14 +1029,15 @@ var _ImageAlreadyExistsException = class _ImageAlreadyExistsException extends EC
|
|
|
980
1029
|
$fault: "client",
|
|
981
1030
|
...opts
|
|
982
1031
|
});
|
|
983
|
-
this.name = "ImageAlreadyExistsException";
|
|
984
|
-
this.$fault = "client";
|
|
985
1032
|
Object.setPrototypeOf(this, _ImageAlreadyExistsException.prototype);
|
|
986
1033
|
}
|
|
987
1034
|
};
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
1035
|
+
var ImageDigestDoesNotMatchException = class _ImageDigestDoesNotMatchException extends ECRServiceException {
|
|
1036
|
+
static {
|
|
1037
|
+
__name(this, "ImageDigestDoesNotMatchException");
|
|
1038
|
+
}
|
|
1039
|
+
name = "ImageDigestDoesNotMatchException";
|
|
1040
|
+
$fault = "client";
|
|
991
1041
|
/**
|
|
992
1042
|
* @internal
|
|
993
1043
|
*/
|
|
@@ -997,14 +1047,15 @@ var _ImageDigestDoesNotMatchException = class _ImageDigestDoesNotMatchException
|
|
|
997
1047
|
$fault: "client",
|
|
998
1048
|
...opts
|
|
999
1049
|
});
|
|
1000
|
-
this.name = "ImageDigestDoesNotMatchException";
|
|
1001
|
-
this.$fault = "client";
|
|
1002
1050
|
Object.setPrototypeOf(this, _ImageDigestDoesNotMatchException.prototype);
|
|
1003
1051
|
}
|
|
1004
1052
|
};
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1053
|
+
var ImageTagAlreadyExistsException = class _ImageTagAlreadyExistsException extends ECRServiceException {
|
|
1054
|
+
static {
|
|
1055
|
+
__name(this, "ImageTagAlreadyExistsException");
|
|
1056
|
+
}
|
|
1057
|
+
name = "ImageTagAlreadyExistsException";
|
|
1058
|
+
$fault = "client";
|
|
1008
1059
|
/**
|
|
1009
1060
|
* @internal
|
|
1010
1061
|
*/
|
|
@@ -1014,14 +1065,15 @@ var _ImageTagAlreadyExistsException = class _ImageTagAlreadyExistsException exte
|
|
|
1014
1065
|
$fault: "client",
|
|
1015
1066
|
...opts
|
|
1016
1067
|
});
|
|
1017
|
-
this.name = "ImageTagAlreadyExistsException";
|
|
1018
|
-
this.$fault = "client";
|
|
1019
1068
|
Object.setPrototypeOf(this, _ImageTagAlreadyExistsException.prototype);
|
|
1020
1069
|
}
|
|
1021
1070
|
};
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1071
|
+
var ReferencedImagesNotFoundException = class _ReferencedImagesNotFoundException extends ECRServiceException {
|
|
1072
|
+
static {
|
|
1073
|
+
__name(this, "ReferencedImagesNotFoundException");
|
|
1074
|
+
}
|
|
1075
|
+
name = "ReferencedImagesNotFoundException";
|
|
1076
|
+
$fault = "client";
|
|
1025
1077
|
/**
|
|
1026
1078
|
* @internal
|
|
1027
1079
|
*/
|
|
@@ -1031,14 +1083,15 @@ var _ReferencedImagesNotFoundException = class _ReferencedImagesNotFoundExceptio
|
|
|
1031
1083
|
$fault: "client",
|
|
1032
1084
|
...opts
|
|
1033
1085
|
});
|
|
1034
|
-
this.name = "ReferencedImagesNotFoundException";
|
|
1035
|
-
this.$fault = "client";
|
|
1036
1086
|
Object.setPrototypeOf(this, _ReferencedImagesNotFoundException.prototype);
|
|
1037
1087
|
}
|
|
1038
1088
|
};
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1089
|
+
var UnsupportedImageTypeException = class _UnsupportedImageTypeException extends ECRServiceException {
|
|
1090
|
+
static {
|
|
1091
|
+
__name(this, "UnsupportedImageTypeException");
|
|
1092
|
+
}
|
|
1093
|
+
name = "UnsupportedImageTypeException";
|
|
1094
|
+
$fault = "client";
|
|
1042
1095
|
/**
|
|
1043
1096
|
* @internal
|
|
1044
1097
|
*/
|
|
@@ -1048,14 +1101,15 @@ var _UnsupportedImageTypeException = class _UnsupportedImageTypeException extend
|
|
|
1048
1101
|
$fault: "client",
|
|
1049
1102
|
...opts
|
|
1050
1103
|
});
|
|
1051
|
-
this.name = "UnsupportedImageTypeException";
|
|
1052
|
-
this.$fault = "client";
|
|
1053
1104
|
Object.setPrototypeOf(this, _UnsupportedImageTypeException.prototype);
|
|
1054
1105
|
}
|
|
1055
1106
|
};
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1107
|
+
var LifecyclePolicyPreviewInProgressException = class _LifecyclePolicyPreviewInProgressException extends ECRServiceException {
|
|
1108
|
+
static {
|
|
1109
|
+
__name(this, "LifecyclePolicyPreviewInProgressException");
|
|
1110
|
+
}
|
|
1111
|
+
name = "LifecyclePolicyPreviewInProgressException";
|
|
1112
|
+
$fault = "client";
|
|
1059
1113
|
/**
|
|
1060
1114
|
* @internal
|
|
1061
1115
|
*/
|
|
@@ -1065,14 +1119,36 @@ var _LifecyclePolicyPreviewInProgressException = class _LifecyclePolicyPreviewIn
|
|
|
1065
1119
|
$fault: "client",
|
|
1066
1120
|
...opts
|
|
1067
1121
|
});
|
|
1068
|
-
this.name = "LifecyclePolicyPreviewInProgressException";
|
|
1069
|
-
this.$fault = "client";
|
|
1070
1122
|
Object.setPrototypeOf(this, _LifecyclePolicyPreviewInProgressException.prototype);
|
|
1071
1123
|
}
|
|
1072
1124
|
};
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1125
|
+
var InvalidLayerPartException = class _InvalidLayerPartException extends ECRServiceException {
|
|
1126
|
+
static {
|
|
1127
|
+
__name(this, "InvalidLayerPartException");
|
|
1128
|
+
}
|
|
1129
|
+
name = "InvalidLayerPartException";
|
|
1130
|
+
$fault = "client";
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>The registry ID associated with the exception.</p>
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1135
|
+
registryId;
|
|
1136
|
+
/**
|
|
1137
|
+
* <p>The repository name associated with the exception.</p>
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1140
|
+
repositoryName;
|
|
1141
|
+
/**
|
|
1142
|
+
* <p>The upload ID associated with the exception.</p>
|
|
1143
|
+
* @public
|
|
1144
|
+
*/
|
|
1145
|
+
uploadId;
|
|
1146
|
+
/**
|
|
1147
|
+
* <p>The last valid byte received from the layer part upload that is associated with the
|
|
1148
|
+
* exception.</p>
|
|
1149
|
+
* @public
|
|
1150
|
+
*/
|
|
1151
|
+
lastValidByteReceived;
|
|
1076
1152
|
/**
|
|
1077
1153
|
* @internal
|
|
1078
1154
|
*/
|
|
@@ -1082,8 +1158,6 @@ var _InvalidLayerPartException = class _InvalidLayerPartException extends ECRSer
|
|
|
1082
1158
|
$fault: "client",
|
|
1083
1159
|
...opts
|
|
1084
1160
|
});
|
|
1085
|
-
this.name = "InvalidLayerPartException";
|
|
1086
|
-
this.$fault = "client";
|
|
1087
1161
|
Object.setPrototypeOf(this, _InvalidLayerPartException.prototype);
|
|
1088
1162
|
this.registryId = opts.registryId;
|
|
1089
1163
|
this.repositoryName = opts.repositoryName;
|
|
@@ -1091,8 +1165,6 @@ var _InvalidLayerPartException = class _InvalidLayerPartException extends ECRSer
|
|
|
1091
1165
|
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
1092
1166
|
}
|
|
1093
1167
|
};
|
|
1094
|
-
__name(_InvalidLayerPartException, "InvalidLayerPartException");
|
|
1095
|
-
var InvalidLayerPartException = _InvalidLayerPartException;
|
|
1096
1168
|
|
|
1097
1169
|
// src/protocols/Aws_json1_1.ts
|
|
1098
1170
|
var se_BatchCheckLayerAvailabilityCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2909,687 +2981,736 @@ function sharedHeaders(operation) {
|
|
|
2909
2981
|
__name(sharedHeaders, "sharedHeaders");
|
|
2910
2982
|
|
|
2911
2983
|
// src/commands/BatchCheckLayerAvailabilityCommand.ts
|
|
2912
|
-
var
|
|
2984
|
+
var BatchCheckLayerAvailabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2913
2985
|
return [
|
|
2914
2986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2915
2987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2916
2988
|
];
|
|
2917
2989
|
}).s("AmazonEC2ContainerRegistry_V20150921", "BatchCheckLayerAvailability", {}).n("ECRClient", "BatchCheckLayerAvailabilityCommand").f(void 0, void 0).ser(se_BatchCheckLayerAvailabilityCommand).de(de_BatchCheckLayerAvailabilityCommand).build() {
|
|
2990
|
+
static {
|
|
2991
|
+
__name(this, "BatchCheckLayerAvailabilityCommand");
|
|
2992
|
+
}
|
|
2918
2993
|
};
|
|
2919
|
-
__name(_BatchCheckLayerAvailabilityCommand, "BatchCheckLayerAvailabilityCommand");
|
|
2920
|
-
var BatchCheckLayerAvailabilityCommand = _BatchCheckLayerAvailabilityCommand;
|
|
2921
2994
|
|
|
2922
2995
|
// src/commands/BatchDeleteImageCommand.ts
|
|
2923
2996
|
|
|
2924
2997
|
|
|
2925
2998
|
|
|
2926
|
-
var
|
|
2999
|
+
var BatchDeleteImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2927
3000
|
return [
|
|
2928
3001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2929
3002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2930
3003
|
];
|
|
2931
3004
|
}).s("AmazonEC2ContainerRegistry_V20150921", "BatchDeleteImage", {}).n("ECRClient", "BatchDeleteImageCommand").f(void 0, void 0).ser(se_BatchDeleteImageCommand).de(de_BatchDeleteImageCommand).build() {
|
|
3005
|
+
static {
|
|
3006
|
+
__name(this, "BatchDeleteImageCommand");
|
|
3007
|
+
}
|
|
2932
3008
|
};
|
|
2933
|
-
__name(_BatchDeleteImageCommand, "BatchDeleteImageCommand");
|
|
2934
|
-
var BatchDeleteImageCommand = _BatchDeleteImageCommand;
|
|
2935
3009
|
|
|
2936
3010
|
// src/commands/BatchGetImageCommand.ts
|
|
2937
3011
|
|
|
2938
3012
|
|
|
2939
3013
|
|
|
2940
|
-
var
|
|
3014
|
+
var BatchGetImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2941
3015
|
return [
|
|
2942
3016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2943
3017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2944
3018
|
];
|
|
2945
3019
|
}).s("AmazonEC2ContainerRegistry_V20150921", "BatchGetImage", {}).n("ECRClient", "BatchGetImageCommand").f(void 0, void 0).ser(se_BatchGetImageCommand).de(de_BatchGetImageCommand).build() {
|
|
3020
|
+
static {
|
|
3021
|
+
__name(this, "BatchGetImageCommand");
|
|
3022
|
+
}
|
|
2946
3023
|
};
|
|
2947
|
-
__name(_BatchGetImageCommand, "BatchGetImageCommand");
|
|
2948
|
-
var BatchGetImageCommand = _BatchGetImageCommand;
|
|
2949
3024
|
|
|
2950
3025
|
// src/commands/BatchGetRepositoryScanningConfigurationCommand.ts
|
|
2951
3026
|
|
|
2952
3027
|
|
|
2953
3028
|
|
|
2954
|
-
var
|
|
3029
|
+
var BatchGetRepositoryScanningConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2955
3030
|
return [
|
|
2956
3031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2957
3032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2958
3033
|
];
|
|
2959
3034
|
}).s("AmazonEC2ContainerRegistry_V20150921", "BatchGetRepositoryScanningConfiguration", {}).n("ECRClient", "BatchGetRepositoryScanningConfigurationCommand").f(void 0, void 0).ser(se_BatchGetRepositoryScanningConfigurationCommand).de(de_BatchGetRepositoryScanningConfigurationCommand).build() {
|
|
3035
|
+
static {
|
|
3036
|
+
__name(this, "BatchGetRepositoryScanningConfigurationCommand");
|
|
3037
|
+
}
|
|
2960
3038
|
};
|
|
2961
|
-
__name(_BatchGetRepositoryScanningConfigurationCommand, "BatchGetRepositoryScanningConfigurationCommand");
|
|
2962
|
-
var BatchGetRepositoryScanningConfigurationCommand = _BatchGetRepositoryScanningConfigurationCommand;
|
|
2963
3039
|
|
|
2964
3040
|
// src/commands/CompleteLayerUploadCommand.ts
|
|
2965
3041
|
|
|
2966
3042
|
|
|
2967
3043
|
|
|
2968
|
-
var
|
|
3044
|
+
var CompleteLayerUploadCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2969
3045
|
return [
|
|
2970
3046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2971
3047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2972
3048
|
];
|
|
2973
3049
|
}).s("AmazonEC2ContainerRegistry_V20150921", "CompleteLayerUpload", {}).n("ECRClient", "CompleteLayerUploadCommand").f(void 0, void 0).ser(se_CompleteLayerUploadCommand).de(de_CompleteLayerUploadCommand).build() {
|
|
3050
|
+
static {
|
|
3051
|
+
__name(this, "CompleteLayerUploadCommand");
|
|
3052
|
+
}
|
|
2974
3053
|
};
|
|
2975
|
-
__name(_CompleteLayerUploadCommand, "CompleteLayerUploadCommand");
|
|
2976
|
-
var CompleteLayerUploadCommand = _CompleteLayerUploadCommand;
|
|
2977
3054
|
|
|
2978
3055
|
// src/commands/CreatePullThroughCacheRuleCommand.ts
|
|
2979
3056
|
|
|
2980
3057
|
|
|
2981
3058
|
|
|
2982
|
-
var
|
|
3059
|
+
var CreatePullThroughCacheRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2983
3060
|
return [
|
|
2984
3061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2985
3062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2986
3063
|
];
|
|
2987
3064
|
}).s("AmazonEC2ContainerRegistry_V20150921", "CreatePullThroughCacheRule", {}).n("ECRClient", "CreatePullThroughCacheRuleCommand").f(void 0, void 0).ser(se_CreatePullThroughCacheRuleCommand).de(de_CreatePullThroughCacheRuleCommand).build() {
|
|
3065
|
+
static {
|
|
3066
|
+
__name(this, "CreatePullThroughCacheRuleCommand");
|
|
3067
|
+
}
|
|
2988
3068
|
};
|
|
2989
|
-
__name(_CreatePullThroughCacheRuleCommand, "CreatePullThroughCacheRuleCommand");
|
|
2990
|
-
var CreatePullThroughCacheRuleCommand = _CreatePullThroughCacheRuleCommand;
|
|
2991
3069
|
|
|
2992
3070
|
// src/commands/CreateRepositoryCommand.ts
|
|
2993
3071
|
|
|
2994
3072
|
|
|
2995
3073
|
|
|
2996
|
-
var
|
|
3074
|
+
var CreateRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2997
3075
|
return [
|
|
2998
3076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2999
3077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3000
3078
|
];
|
|
3001
3079
|
}).s("AmazonEC2ContainerRegistry_V20150921", "CreateRepository", {}).n("ECRClient", "CreateRepositoryCommand").f(void 0, void 0).ser(se_CreateRepositoryCommand).de(de_CreateRepositoryCommand).build() {
|
|
3080
|
+
static {
|
|
3081
|
+
__name(this, "CreateRepositoryCommand");
|
|
3082
|
+
}
|
|
3002
3083
|
};
|
|
3003
|
-
__name(_CreateRepositoryCommand, "CreateRepositoryCommand");
|
|
3004
|
-
var CreateRepositoryCommand = _CreateRepositoryCommand;
|
|
3005
3084
|
|
|
3006
3085
|
// src/commands/CreateRepositoryCreationTemplateCommand.ts
|
|
3007
3086
|
|
|
3008
3087
|
|
|
3009
3088
|
|
|
3010
|
-
var
|
|
3089
|
+
var CreateRepositoryCreationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3011
3090
|
return [
|
|
3012
3091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3013
3092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3014
3093
|
];
|
|
3015
3094
|
}).s("AmazonEC2ContainerRegistry_V20150921", "CreateRepositoryCreationTemplate", {}).n("ECRClient", "CreateRepositoryCreationTemplateCommand").f(void 0, void 0).ser(se_CreateRepositoryCreationTemplateCommand).de(de_CreateRepositoryCreationTemplateCommand).build() {
|
|
3095
|
+
static {
|
|
3096
|
+
__name(this, "CreateRepositoryCreationTemplateCommand");
|
|
3097
|
+
}
|
|
3016
3098
|
};
|
|
3017
|
-
__name(_CreateRepositoryCreationTemplateCommand, "CreateRepositoryCreationTemplateCommand");
|
|
3018
|
-
var CreateRepositoryCreationTemplateCommand = _CreateRepositoryCreationTemplateCommand;
|
|
3019
3099
|
|
|
3020
3100
|
// src/commands/DeleteLifecyclePolicyCommand.ts
|
|
3021
3101
|
|
|
3022
3102
|
|
|
3023
3103
|
|
|
3024
|
-
var
|
|
3104
|
+
var DeleteLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3025
3105
|
return [
|
|
3026
3106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3027
3107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3028
3108
|
];
|
|
3029
3109
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeleteLifecyclePolicy", {}).n("ECRClient", "DeleteLifecyclePolicyCommand").f(void 0, void 0).ser(se_DeleteLifecyclePolicyCommand).de(de_DeleteLifecyclePolicyCommand).build() {
|
|
3110
|
+
static {
|
|
3111
|
+
__name(this, "DeleteLifecyclePolicyCommand");
|
|
3112
|
+
}
|
|
3030
3113
|
};
|
|
3031
|
-
__name(_DeleteLifecyclePolicyCommand, "DeleteLifecyclePolicyCommand");
|
|
3032
|
-
var DeleteLifecyclePolicyCommand = _DeleteLifecyclePolicyCommand;
|
|
3033
3114
|
|
|
3034
3115
|
// src/commands/DeletePullThroughCacheRuleCommand.ts
|
|
3035
3116
|
|
|
3036
3117
|
|
|
3037
3118
|
|
|
3038
|
-
var
|
|
3119
|
+
var DeletePullThroughCacheRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3039
3120
|
return [
|
|
3040
3121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3041
3122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3042
3123
|
];
|
|
3043
3124
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeletePullThroughCacheRule", {}).n("ECRClient", "DeletePullThroughCacheRuleCommand").f(void 0, void 0).ser(se_DeletePullThroughCacheRuleCommand).de(de_DeletePullThroughCacheRuleCommand).build() {
|
|
3125
|
+
static {
|
|
3126
|
+
__name(this, "DeletePullThroughCacheRuleCommand");
|
|
3127
|
+
}
|
|
3044
3128
|
};
|
|
3045
|
-
__name(_DeletePullThroughCacheRuleCommand, "DeletePullThroughCacheRuleCommand");
|
|
3046
|
-
var DeletePullThroughCacheRuleCommand = _DeletePullThroughCacheRuleCommand;
|
|
3047
3129
|
|
|
3048
3130
|
// src/commands/DeleteRegistryPolicyCommand.ts
|
|
3049
3131
|
|
|
3050
3132
|
|
|
3051
3133
|
|
|
3052
|
-
var
|
|
3134
|
+
var DeleteRegistryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3053
3135
|
return [
|
|
3054
3136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3055
3137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3056
3138
|
];
|
|
3057
3139
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeleteRegistryPolicy", {}).n("ECRClient", "DeleteRegistryPolicyCommand").f(void 0, void 0).ser(se_DeleteRegistryPolicyCommand).de(de_DeleteRegistryPolicyCommand).build() {
|
|
3140
|
+
static {
|
|
3141
|
+
__name(this, "DeleteRegistryPolicyCommand");
|
|
3142
|
+
}
|
|
3058
3143
|
};
|
|
3059
|
-
__name(_DeleteRegistryPolicyCommand, "DeleteRegistryPolicyCommand");
|
|
3060
|
-
var DeleteRegistryPolicyCommand = _DeleteRegistryPolicyCommand;
|
|
3061
3144
|
|
|
3062
3145
|
// src/commands/DeleteRepositoryCommand.ts
|
|
3063
3146
|
|
|
3064
3147
|
|
|
3065
3148
|
|
|
3066
|
-
var
|
|
3149
|
+
var DeleteRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3067
3150
|
return [
|
|
3068
3151
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3069
3152
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3070
3153
|
];
|
|
3071
3154
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepository", {}).n("ECRClient", "DeleteRepositoryCommand").f(void 0, void 0).ser(se_DeleteRepositoryCommand).de(de_DeleteRepositoryCommand).build() {
|
|
3155
|
+
static {
|
|
3156
|
+
__name(this, "DeleteRepositoryCommand");
|
|
3157
|
+
}
|
|
3072
3158
|
};
|
|
3073
|
-
__name(_DeleteRepositoryCommand, "DeleteRepositoryCommand");
|
|
3074
|
-
var DeleteRepositoryCommand = _DeleteRepositoryCommand;
|
|
3075
3159
|
|
|
3076
3160
|
// src/commands/DeleteRepositoryCreationTemplateCommand.ts
|
|
3077
3161
|
|
|
3078
3162
|
|
|
3079
3163
|
|
|
3080
|
-
var
|
|
3164
|
+
var DeleteRepositoryCreationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3081
3165
|
return [
|
|
3082
3166
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3083
3167
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3084
3168
|
];
|
|
3085
3169
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryCreationTemplate", {}).n("ECRClient", "DeleteRepositoryCreationTemplateCommand").f(void 0, void 0).ser(se_DeleteRepositoryCreationTemplateCommand).de(de_DeleteRepositoryCreationTemplateCommand).build() {
|
|
3170
|
+
static {
|
|
3171
|
+
__name(this, "DeleteRepositoryCreationTemplateCommand");
|
|
3172
|
+
}
|
|
3086
3173
|
};
|
|
3087
|
-
__name(_DeleteRepositoryCreationTemplateCommand, "DeleteRepositoryCreationTemplateCommand");
|
|
3088
|
-
var DeleteRepositoryCreationTemplateCommand = _DeleteRepositoryCreationTemplateCommand;
|
|
3089
3174
|
|
|
3090
3175
|
// src/commands/DeleteRepositoryPolicyCommand.ts
|
|
3091
3176
|
|
|
3092
3177
|
|
|
3093
3178
|
|
|
3094
|
-
var
|
|
3179
|
+
var DeleteRepositoryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3095
3180
|
return [
|
|
3096
3181
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3097
3182
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3098
3183
|
];
|
|
3099
3184
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryPolicy", {}).n("ECRClient", "DeleteRepositoryPolicyCommand").f(void 0, void 0).ser(se_DeleteRepositoryPolicyCommand).de(de_DeleteRepositoryPolicyCommand).build() {
|
|
3185
|
+
static {
|
|
3186
|
+
__name(this, "DeleteRepositoryPolicyCommand");
|
|
3187
|
+
}
|
|
3100
3188
|
};
|
|
3101
|
-
__name(_DeleteRepositoryPolicyCommand, "DeleteRepositoryPolicyCommand");
|
|
3102
|
-
var DeleteRepositoryPolicyCommand = _DeleteRepositoryPolicyCommand;
|
|
3103
3189
|
|
|
3104
3190
|
// src/commands/DescribeImageReplicationStatusCommand.ts
|
|
3105
3191
|
|
|
3106
3192
|
|
|
3107
3193
|
|
|
3108
|
-
var
|
|
3194
|
+
var DescribeImageReplicationStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3109
3195
|
return [
|
|
3110
3196
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3111
3197
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3112
3198
|
];
|
|
3113
3199
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageReplicationStatus", {}).n("ECRClient", "DescribeImageReplicationStatusCommand").f(void 0, void 0).ser(se_DescribeImageReplicationStatusCommand).de(de_DescribeImageReplicationStatusCommand).build() {
|
|
3200
|
+
static {
|
|
3201
|
+
__name(this, "DescribeImageReplicationStatusCommand");
|
|
3202
|
+
}
|
|
3114
3203
|
};
|
|
3115
|
-
__name(_DescribeImageReplicationStatusCommand, "DescribeImageReplicationStatusCommand");
|
|
3116
|
-
var DescribeImageReplicationStatusCommand = _DescribeImageReplicationStatusCommand;
|
|
3117
3204
|
|
|
3118
3205
|
// src/commands/DescribeImageScanFindingsCommand.ts
|
|
3119
3206
|
|
|
3120
3207
|
|
|
3121
3208
|
|
|
3122
|
-
var
|
|
3209
|
+
var DescribeImageScanFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3123
3210
|
return [
|
|
3124
3211
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3125
3212
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3126
3213
|
];
|
|
3127
3214
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageScanFindings", {}).n("ECRClient", "DescribeImageScanFindingsCommand").f(void 0, void 0).ser(se_DescribeImageScanFindingsCommand).de(de_DescribeImageScanFindingsCommand).build() {
|
|
3215
|
+
static {
|
|
3216
|
+
__name(this, "DescribeImageScanFindingsCommand");
|
|
3217
|
+
}
|
|
3128
3218
|
};
|
|
3129
|
-
__name(_DescribeImageScanFindingsCommand, "DescribeImageScanFindingsCommand");
|
|
3130
|
-
var DescribeImageScanFindingsCommand = _DescribeImageScanFindingsCommand;
|
|
3131
3219
|
|
|
3132
3220
|
// src/commands/DescribeImagesCommand.ts
|
|
3133
3221
|
|
|
3134
3222
|
|
|
3135
3223
|
|
|
3136
|
-
var
|
|
3224
|
+
var DescribeImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3137
3225
|
return [
|
|
3138
3226
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3139
3227
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3140
3228
|
];
|
|
3141
3229
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeImages", {}).n("ECRClient", "DescribeImagesCommand").f(void 0, void 0).ser(se_DescribeImagesCommand).de(de_DescribeImagesCommand).build() {
|
|
3230
|
+
static {
|
|
3231
|
+
__name(this, "DescribeImagesCommand");
|
|
3232
|
+
}
|
|
3142
3233
|
};
|
|
3143
|
-
__name(_DescribeImagesCommand, "DescribeImagesCommand");
|
|
3144
|
-
var DescribeImagesCommand = _DescribeImagesCommand;
|
|
3145
3234
|
|
|
3146
3235
|
// src/commands/DescribePullThroughCacheRulesCommand.ts
|
|
3147
3236
|
|
|
3148
3237
|
|
|
3149
3238
|
|
|
3150
|
-
var
|
|
3239
|
+
var DescribePullThroughCacheRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3151
3240
|
return [
|
|
3152
3241
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3153
3242
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3154
3243
|
];
|
|
3155
3244
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribePullThroughCacheRules", {}).n("ECRClient", "DescribePullThroughCacheRulesCommand").f(void 0, void 0).ser(se_DescribePullThroughCacheRulesCommand).de(de_DescribePullThroughCacheRulesCommand).build() {
|
|
3245
|
+
static {
|
|
3246
|
+
__name(this, "DescribePullThroughCacheRulesCommand");
|
|
3247
|
+
}
|
|
3156
3248
|
};
|
|
3157
|
-
__name(_DescribePullThroughCacheRulesCommand, "DescribePullThroughCacheRulesCommand");
|
|
3158
|
-
var DescribePullThroughCacheRulesCommand = _DescribePullThroughCacheRulesCommand;
|
|
3159
3249
|
|
|
3160
3250
|
// src/commands/DescribeRegistryCommand.ts
|
|
3161
3251
|
|
|
3162
3252
|
|
|
3163
3253
|
|
|
3164
|
-
var
|
|
3254
|
+
var DescribeRegistryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3165
3255
|
return [
|
|
3166
3256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3167
3257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3168
3258
|
];
|
|
3169
3259
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeRegistry", {}).n("ECRClient", "DescribeRegistryCommand").f(void 0, void 0).ser(se_DescribeRegistryCommand).de(de_DescribeRegistryCommand).build() {
|
|
3260
|
+
static {
|
|
3261
|
+
__name(this, "DescribeRegistryCommand");
|
|
3262
|
+
}
|
|
3170
3263
|
};
|
|
3171
|
-
__name(_DescribeRegistryCommand, "DescribeRegistryCommand");
|
|
3172
|
-
var DescribeRegistryCommand = _DescribeRegistryCommand;
|
|
3173
3264
|
|
|
3174
3265
|
// src/commands/DescribeRepositoriesCommand.ts
|
|
3175
3266
|
|
|
3176
3267
|
|
|
3177
3268
|
|
|
3178
|
-
var
|
|
3269
|
+
var DescribeRepositoriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3179
3270
|
return [
|
|
3180
3271
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3181
3272
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3182
3273
|
];
|
|
3183
3274
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositories", {}).n("ECRClient", "DescribeRepositoriesCommand").f(void 0, void 0).ser(se_DescribeRepositoriesCommand).de(de_DescribeRepositoriesCommand).build() {
|
|
3275
|
+
static {
|
|
3276
|
+
__name(this, "DescribeRepositoriesCommand");
|
|
3277
|
+
}
|
|
3184
3278
|
};
|
|
3185
|
-
__name(_DescribeRepositoriesCommand, "DescribeRepositoriesCommand");
|
|
3186
|
-
var DescribeRepositoriesCommand = _DescribeRepositoriesCommand;
|
|
3187
3279
|
|
|
3188
3280
|
// src/commands/DescribeRepositoryCreationTemplatesCommand.ts
|
|
3189
3281
|
|
|
3190
3282
|
|
|
3191
3283
|
|
|
3192
|
-
var
|
|
3284
|
+
var DescribeRepositoryCreationTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3193
3285
|
return [
|
|
3194
3286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3195
3287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3196
3288
|
];
|
|
3197
3289
|
}).s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositoryCreationTemplates", {}).n("ECRClient", "DescribeRepositoryCreationTemplatesCommand").f(void 0, void 0).ser(se_DescribeRepositoryCreationTemplatesCommand).de(de_DescribeRepositoryCreationTemplatesCommand).build() {
|
|
3290
|
+
static {
|
|
3291
|
+
__name(this, "DescribeRepositoryCreationTemplatesCommand");
|
|
3292
|
+
}
|
|
3198
3293
|
};
|
|
3199
|
-
__name(_DescribeRepositoryCreationTemplatesCommand, "DescribeRepositoryCreationTemplatesCommand");
|
|
3200
|
-
var DescribeRepositoryCreationTemplatesCommand = _DescribeRepositoryCreationTemplatesCommand;
|
|
3201
3294
|
|
|
3202
3295
|
// src/commands/GetAccountSettingCommand.ts
|
|
3203
3296
|
|
|
3204
3297
|
|
|
3205
3298
|
|
|
3206
|
-
var
|
|
3299
|
+
var GetAccountSettingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3207
3300
|
return [
|
|
3208
3301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3209
3302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3210
3303
|
];
|
|
3211
3304
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetAccountSetting", {}).n("ECRClient", "GetAccountSettingCommand").f(void 0, void 0).ser(se_GetAccountSettingCommand).de(de_GetAccountSettingCommand).build() {
|
|
3305
|
+
static {
|
|
3306
|
+
__name(this, "GetAccountSettingCommand");
|
|
3307
|
+
}
|
|
3212
3308
|
};
|
|
3213
|
-
__name(_GetAccountSettingCommand, "GetAccountSettingCommand");
|
|
3214
|
-
var GetAccountSettingCommand = _GetAccountSettingCommand;
|
|
3215
3309
|
|
|
3216
3310
|
// src/commands/GetAuthorizationTokenCommand.ts
|
|
3217
3311
|
|
|
3218
3312
|
|
|
3219
3313
|
|
|
3220
|
-
var
|
|
3314
|
+
var GetAuthorizationTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3221
3315
|
return [
|
|
3222
3316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3223
3317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3224
3318
|
];
|
|
3225
3319
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetAuthorizationToken", {}).n("ECRClient", "GetAuthorizationTokenCommand").f(void 0, void 0).ser(se_GetAuthorizationTokenCommand).de(de_GetAuthorizationTokenCommand).build() {
|
|
3320
|
+
static {
|
|
3321
|
+
__name(this, "GetAuthorizationTokenCommand");
|
|
3322
|
+
}
|
|
3226
3323
|
};
|
|
3227
|
-
__name(_GetAuthorizationTokenCommand, "GetAuthorizationTokenCommand");
|
|
3228
|
-
var GetAuthorizationTokenCommand = _GetAuthorizationTokenCommand;
|
|
3229
3324
|
|
|
3230
3325
|
// src/commands/GetDownloadUrlForLayerCommand.ts
|
|
3231
3326
|
|
|
3232
3327
|
|
|
3233
3328
|
|
|
3234
|
-
var
|
|
3329
|
+
var GetDownloadUrlForLayerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3235
3330
|
return [
|
|
3236
3331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3237
3332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3238
3333
|
];
|
|
3239
3334
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetDownloadUrlForLayer", {}).n("ECRClient", "GetDownloadUrlForLayerCommand").f(void 0, void 0).ser(se_GetDownloadUrlForLayerCommand).de(de_GetDownloadUrlForLayerCommand).build() {
|
|
3335
|
+
static {
|
|
3336
|
+
__name(this, "GetDownloadUrlForLayerCommand");
|
|
3337
|
+
}
|
|
3240
3338
|
};
|
|
3241
|
-
__name(_GetDownloadUrlForLayerCommand, "GetDownloadUrlForLayerCommand");
|
|
3242
|
-
var GetDownloadUrlForLayerCommand = _GetDownloadUrlForLayerCommand;
|
|
3243
3339
|
|
|
3244
3340
|
// src/commands/GetLifecyclePolicyCommand.ts
|
|
3245
3341
|
|
|
3246
3342
|
|
|
3247
3343
|
|
|
3248
|
-
var
|
|
3344
|
+
var GetLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3249
3345
|
return [
|
|
3250
3346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3251
3347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3252
3348
|
];
|
|
3253
3349
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicy", {}).n("ECRClient", "GetLifecyclePolicyCommand").f(void 0, void 0).ser(se_GetLifecyclePolicyCommand).de(de_GetLifecyclePolicyCommand).build() {
|
|
3350
|
+
static {
|
|
3351
|
+
__name(this, "GetLifecyclePolicyCommand");
|
|
3352
|
+
}
|
|
3254
3353
|
};
|
|
3255
|
-
__name(_GetLifecyclePolicyCommand, "GetLifecyclePolicyCommand");
|
|
3256
|
-
var GetLifecyclePolicyCommand = _GetLifecyclePolicyCommand;
|
|
3257
3354
|
|
|
3258
3355
|
// src/commands/GetLifecyclePolicyPreviewCommand.ts
|
|
3259
3356
|
|
|
3260
3357
|
|
|
3261
3358
|
|
|
3262
|
-
var
|
|
3359
|
+
var GetLifecyclePolicyPreviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3263
3360
|
return [
|
|
3264
3361
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3265
3362
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3266
3363
|
];
|
|
3267
3364
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicyPreview", {}).n("ECRClient", "GetLifecyclePolicyPreviewCommand").f(void 0, void 0).ser(se_GetLifecyclePolicyPreviewCommand).de(de_GetLifecyclePolicyPreviewCommand).build() {
|
|
3365
|
+
static {
|
|
3366
|
+
__name(this, "GetLifecyclePolicyPreviewCommand");
|
|
3367
|
+
}
|
|
3268
3368
|
};
|
|
3269
|
-
__name(_GetLifecyclePolicyPreviewCommand, "GetLifecyclePolicyPreviewCommand");
|
|
3270
|
-
var GetLifecyclePolicyPreviewCommand = _GetLifecyclePolicyPreviewCommand;
|
|
3271
3369
|
|
|
3272
3370
|
// src/commands/GetRegistryPolicyCommand.ts
|
|
3273
3371
|
|
|
3274
3372
|
|
|
3275
3373
|
|
|
3276
|
-
var
|
|
3374
|
+
var GetRegistryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3277
3375
|
return [
|
|
3278
3376
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3279
3377
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3280
3378
|
];
|
|
3281
3379
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryPolicy", {}).n("ECRClient", "GetRegistryPolicyCommand").f(void 0, void 0).ser(se_GetRegistryPolicyCommand).de(de_GetRegistryPolicyCommand).build() {
|
|
3380
|
+
static {
|
|
3381
|
+
__name(this, "GetRegistryPolicyCommand");
|
|
3382
|
+
}
|
|
3282
3383
|
};
|
|
3283
|
-
__name(_GetRegistryPolicyCommand, "GetRegistryPolicyCommand");
|
|
3284
|
-
var GetRegistryPolicyCommand = _GetRegistryPolicyCommand;
|
|
3285
3384
|
|
|
3286
3385
|
// src/commands/GetRegistryScanningConfigurationCommand.ts
|
|
3287
3386
|
|
|
3288
3387
|
|
|
3289
3388
|
|
|
3290
|
-
var
|
|
3389
|
+
var GetRegistryScanningConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3291
3390
|
return [
|
|
3292
3391
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3293
3392
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3294
3393
|
];
|
|
3295
3394
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryScanningConfiguration", {}).n("ECRClient", "GetRegistryScanningConfigurationCommand").f(void 0, void 0).ser(se_GetRegistryScanningConfigurationCommand).de(de_GetRegistryScanningConfigurationCommand).build() {
|
|
3395
|
+
static {
|
|
3396
|
+
__name(this, "GetRegistryScanningConfigurationCommand");
|
|
3397
|
+
}
|
|
3296
3398
|
};
|
|
3297
|
-
__name(_GetRegistryScanningConfigurationCommand, "GetRegistryScanningConfigurationCommand");
|
|
3298
|
-
var GetRegistryScanningConfigurationCommand = _GetRegistryScanningConfigurationCommand;
|
|
3299
3399
|
|
|
3300
3400
|
// src/commands/GetRepositoryPolicyCommand.ts
|
|
3301
3401
|
|
|
3302
3402
|
|
|
3303
3403
|
|
|
3304
|
-
var
|
|
3404
|
+
var GetRepositoryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3305
3405
|
return [
|
|
3306
3406
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3307
3407
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3308
3408
|
];
|
|
3309
3409
|
}).s("AmazonEC2ContainerRegistry_V20150921", "GetRepositoryPolicy", {}).n("ECRClient", "GetRepositoryPolicyCommand").f(void 0, void 0).ser(se_GetRepositoryPolicyCommand).de(de_GetRepositoryPolicyCommand).build() {
|
|
3410
|
+
static {
|
|
3411
|
+
__name(this, "GetRepositoryPolicyCommand");
|
|
3412
|
+
}
|
|
3310
3413
|
};
|
|
3311
|
-
__name(_GetRepositoryPolicyCommand, "GetRepositoryPolicyCommand");
|
|
3312
|
-
var GetRepositoryPolicyCommand = _GetRepositoryPolicyCommand;
|
|
3313
3414
|
|
|
3314
3415
|
// src/commands/InitiateLayerUploadCommand.ts
|
|
3315
3416
|
|
|
3316
3417
|
|
|
3317
3418
|
|
|
3318
|
-
var
|
|
3419
|
+
var InitiateLayerUploadCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3319
3420
|
return [
|
|
3320
3421
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3321
3422
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3322
3423
|
];
|
|
3323
3424
|
}).s("AmazonEC2ContainerRegistry_V20150921", "InitiateLayerUpload", {}).n("ECRClient", "InitiateLayerUploadCommand").f(void 0, void 0).ser(se_InitiateLayerUploadCommand).de(de_InitiateLayerUploadCommand).build() {
|
|
3425
|
+
static {
|
|
3426
|
+
__name(this, "InitiateLayerUploadCommand");
|
|
3427
|
+
}
|
|
3324
3428
|
};
|
|
3325
|
-
__name(_InitiateLayerUploadCommand, "InitiateLayerUploadCommand");
|
|
3326
|
-
var InitiateLayerUploadCommand = _InitiateLayerUploadCommand;
|
|
3327
3429
|
|
|
3328
3430
|
// src/commands/ListImagesCommand.ts
|
|
3329
3431
|
|
|
3330
3432
|
|
|
3331
3433
|
|
|
3332
|
-
var
|
|
3434
|
+
var ListImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3333
3435
|
return [
|
|
3334
3436
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3335
3437
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3336
3438
|
];
|
|
3337
3439
|
}).s("AmazonEC2ContainerRegistry_V20150921", "ListImages", {}).n("ECRClient", "ListImagesCommand").f(void 0, void 0).ser(se_ListImagesCommand).de(de_ListImagesCommand).build() {
|
|
3440
|
+
static {
|
|
3441
|
+
__name(this, "ListImagesCommand");
|
|
3442
|
+
}
|
|
3338
3443
|
};
|
|
3339
|
-
__name(_ListImagesCommand, "ListImagesCommand");
|
|
3340
|
-
var ListImagesCommand = _ListImagesCommand;
|
|
3341
3444
|
|
|
3342
3445
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3343
3446
|
|
|
3344
3447
|
|
|
3345
3448
|
|
|
3346
|
-
var
|
|
3449
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3347
3450
|
return [
|
|
3348
3451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3349
3452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3350
3453
|
];
|
|
3351
3454
|
}).s("AmazonEC2ContainerRegistry_V20150921", "ListTagsForResource", {}).n("ECRClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3455
|
+
static {
|
|
3456
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3457
|
+
}
|
|
3352
3458
|
};
|
|
3353
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3354
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3355
3459
|
|
|
3356
3460
|
// src/commands/PutAccountSettingCommand.ts
|
|
3357
3461
|
|
|
3358
3462
|
|
|
3359
3463
|
|
|
3360
|
-
var
|
|
3464
|
+
var PutAccountSettingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3361
3465
|
return [
|
|
3362
3466
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3363
3467
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3364
3468
|
];
|
|
3365
3469
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutAccountSetting", {}).n("ECRClient", "PutAccountSettingCommand").f(void 0, void 0).ser(se_PutAccountSettingCommand).de(de_PutAccountSettingCommand).build() {
|
|
3470
|
+
static {
|
|
3471
|
+
__name(this, "PutAccountSettingCommand");
|
|
3472
|
+
}
|
|
3366
3473
|
};
|
|
3367
|
-
__name(_PutAccountSettingCommand, "PutAccountSettingCommand");
|
|
3368
|
-
var PutAccountSettingCommand = _PutAccountSettingCommand;
|
|
3369
3474
|
|
|
3370
3475
|
// src/commands/PutImageCommand.ts
|
|
3371
3476
|
|
|
3372
3477
|
|
|
3373
3478
|
|
|
3374
|
-
var
|
|
3479
|
+
var PutImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3375
3480
|
return [
|
|
3376
3481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3377
3482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3378
3483
|
];
|
|
3379
3484
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutImage", {}).n("ECRClient", "PutImageCommand").f(void 0, void 0).ser(se_PutImageCommand).de(de_PutImageCommand).build() {
|
|
3485
|
+
static {
|
|
3486
|
+
__name(this, "PutImageCommand");
|
|
3487
|
+
}
|
|
3380
3488
|
};
|
|
3381
|
-
__name(_PutImageCommand, "PutImageCommand");
|
|
3382
|
-
var PutImageCommand = _PutImageCommand;
|
|
3383
3489
|
|
|
3384
3490
|
// src/commands/PutImageScanningConfigurationCommand.ts
|
|
3385
3491
|
|
|
3386
3492
|
|
|
3387
3493
|
|
|
3388
|
-
var
|
|
3494
|
+
var PutImageScanningConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3389
3495
|
return [
|
|
3390
3496
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3391
3497
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3392
3498
|
];
|
|
3393
3499
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutImageScanningConfiguration", {}).n("ECRClient", "PutImageScanningConfigurationCommand").f(void 0, void 0).ser(se_PutImageScanningConfigurationCommand).de(de_PutImageScanningConfigurationCommand).build() {
|
|
3500
|
+
static {
|
|
3501
|
+
__name(this, "PutImageScanningConfigurationCommand");
|
|
3502
|
+
}
|
|
3394
3503
|
};
|
|
3395
|
-
__name(_PutImageScanningConfigurationCommand, "PutImageScanningConfigurationCommand");
|
|
3396
|
-
var PutImageScanningConfigurationCommand = _PutImageScanningConfigurationCommand;
|
|
3397
3504
|
|
|
3398
3505
|
// src/commands/PutImageTagMutabilityCommand.ts
|
|
3399
3506
|
|
|
3400
3507
|
|
|
3401
3508
|
|
|
3402
|
-
var
|
|
3509
|
+
var PutImageTagMutabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3403
3510
|
return [
|
|
3404
3511
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3405
3512
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3406
3513
|
];
|
|
3407
3514
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutImageTagMutability", {}).n("ECRClient", "PutImageTagMutabilityCommand").f(void 0, void 0).ser(se_PutImageTagMutabilityCommand).de(de_PutImageTagMutabilityCommand).build() {
|
|
3515
|
+
static {
|
|
3516
|
+
__name(this, "PutImageTagMutabilityCommand");
|
|
3517
|
+
}
|
|
3408
3518
|
};
|
|
3409
|
-
__name(_PutImageTagMutabilityCommand, "PutImageTagMutabilityCommand");
|
|
3410
|
-
var PutImageTagMutabilityCommand = _PutImageTagMutabilityCommand;
|
|
3411
3519
|
|
|
3412
3520
|
// src/commands/PutLifecyclePolicyCommand.ts
|
|
3413
3521
|
|
|
3414
3522
|
|
|
3415
3523
|
|
|
3416
|
-
var
|
|
3524
|
+
var PutLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3417
3525
|
return [
|
|
3418
3526
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3419
3527
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3420
3528
|
];
|
|
3421
3529
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutLifecyclePolicy", {}).n("ECRClient", "PutLifecyclePolicyCommand").f(void 0, void 0).ser(se_PutLifecyclePolicyCommand).de(de_PutLifecyclePolicyCommand).build() {
|
|
3530
|
+
static {
|
|
3531
|
+
__name(this, "PutLifecyclePolicyCommand");
|
|
3532
|
+
}
|
|
3422
3533
|
};
|
|
3423
|
-
__name(_PutLifecyclePolicyCommand, "PutLifecyclePolicyCommand");
|
|
3424
|
-
var PutLifecyclePolicyCommand = _PutLifecyclePolicyCommand;
|
|
3425
3534
|
|
|
3426
3535
|
// src/commands/PutRegistryPolicyCommand.ts
|
|
3427
3536
|
|
|
3428
3537
|
|
|
3429
3538
|
|
|
3430
|
-
var
|
|
3539
|
+
var PutRegistryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3431
3540
|
return [
|
|
3432
3541
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3433
3542
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3434
3543
|
];
|
|
3435
3544
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutRegistryPolicy", {}).n("ECRClient", "PutRegistryPolicyCommand").f(void 0, void 0).ser(se_PutRegistryPolicyCommand).de(de_PutRegistryPolicyCommand).build() {
|
|
3545
|
+
static {
|
|
3546
|
+
__name(this, "PutRegistryPolicyCommand");
|
|
3547
|
+
}
|
|
3436
3548
|
};
|
|
3437
|
-
__name(_PutRegistryPolicyCommand, "PutRegistryPolicyCommand");
|
|
3438
|
-
var PutRegistryPolicyCommand = _PutRegistryPolicyCommand;
|
|
3439
3549
|
|
|
3440
3550
|
// src/commands/PutRegistryScanningConfigurationCommand.ts
|
|
3441
3551
|
|
|
3442
3552
|
|
|
3443
3553
|
|
|
3444
|
-
var
|
|
3554
|
+
var PutRegistryScanningConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3445
3555
|
return [
|
|
3446
3556
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3447
3557
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3448
3558
|
];
|
|
3449
3559
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutRegistryScanningConfiguration", {}).n("ECRClient", "PutRegistryScanningConfigurationCommand").f(void 0, void 0).ser(se_PutRegistryScanningConfigurationCommand).de(de_PutRegistryScanningConfigurationCommand).build() {
|
|
3560
|
+
static {
|
|
3561
|
+
__name(this, "PutRegistryScanningConfigurationCommand");
|
|
3562
|
+
}
|
|
3450
3563
|
};
|
|
3451
|
-
__name(_PutRegistryScanningConfigurationCommand, "PutRegistryScanningConfigurationCommand");
|
|
3452
|
-
var PutRegistryScanningConfigurationCommand = _PutRegistryScanningConfigurationCommand;
|
|
3453
3564
|
|
|
3454
3565
|
// src/commands/PutReplicationConfigurationCommand.ts
|
|
3455
3566
|
|
|
3456
3567
|
|
|
3457
3568
|
|
|
3458
|
-
var
|
|
3569
|
+
var PutReplicationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3459
3570
|
return [
|
|
3460
3571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3461
3572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3462
3573
|
];
|
|
3463
3574
|
}).s("AmazonEC2ContainerRegistry_V20150921", "PutReplicationConfiguration", {}).n("ECRClient", "PutReplicationConfigurationCommand").f(void 0, void 0).ser(se_PutReplicationConfigurationCommand).de(de_PutReplicationConfigurationCommand).build() {
|
|
3575
|
+
static {
|
|
3576
|
+
__name(this, "PutReplicationConfigurationCommand");
|
|
3577
|
+
}
|
|
3464
3578
|
};
|
|
3465
|
-
__name(_PutReplicationConfigurationCommand, "PutReplicationConfigurationCommand");
|
|
3466
|
-
var PutReplicationConfigurationCommand = _PutReplicationConfigurationCommand;
|
|
3467
3579
|
|
|
3468
3580
|
// src/commands/SetRepositoryPolicyCommand.ts
|
|
3469
3581
|
|
|
3470
3582
|
|
|
3471
3583
|
|
|
3472
|
-
var
|
|
3584
|
+
var SetRepositoryPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3473
3585
|
return [
|
|
3474
3586
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3475
3587
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3476
3588
|
];
|
|
3477
3589
|
}).s("AmazonEC2ContainerRegistry_V20150921", "SetRepositoryPolicy", {}).n("ECRClient", "SetRepositoryPolicyCommand").f(void 0, void 0).ser(se_SetRepositoryPolicyCommand).de(de_SetRepositoryPolicyCommand).build() {
|
|
3590
|
+
static {
|
|
3591
|
+
__name(this, "SetRepositoryPolicyCommand");
|
|
3592
|
+
}
|
|
3478
3593
|
};
|
|
3479
|
-
__name(_SetRepositoryPolicyCommand, "SetRepositoryPolicyCommand");
|
|
3480
|
-
var SetRepositoryPolicyCommand = _SetRepositoryPolicyCommand;
|
|
3481
3594
|
|
|
3482
3595
|
// src/commands/StartImageScanCommand.ts
|
|
3483
3596
|
|
|
3484
3597
|
|
|
3485
3598
|
|
|
3486
|
-
var
|
|
3599
|
+
var StartImageScanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3487
3600
|
return [
|
|
3488
3601
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3489
3602
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3490
3603
|
];
|
|
3491
3604
|
}).s("AmazonEC2ContainerRegistry_V20150921", "StartImageScan", {}).n("ECRClient", "StartImageScanCommand").f(void 0, void 0).ser(se_StartImageScanCommand).de(de_StartImageScanCommand).build() {
|
|
3605
|
+
static {
|
|
3606
|
+
__name(this, "StartImageScanCommand");
|
|
3607
|
+
}
|
|
3492
3608
|
};
|
|
3493
|
-
__name(_StartImageScanCommand, "StartImageScanCommand");
|
|
3494
|
-
var StartImageScanCommand = _StartImageScanCommand;
|
|
3495
3609
|
|
|
3496
3610
|
// src/commands/StartLifecyclePolicyPreviewCommand.ts
|
|
3497
3611
|
|
|
3498
3612
|
|
|
3499
3613
|
|
|
3500
|
-
var
|
|
3614
|
+
var StartLifecyclePolicyPreviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3501
3615
|
return [
|
|
3502
3616
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3503
3617
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3504
3618
|
];
|
|
3505
3619
|
}).s("AmazonEC2ContainerRegistry_V20150921", "StartLifecyclePolicyPreview", {}).n("ECRClient", "StartLifecyclePolicyPreviewCommand").f(void 0, void 0).ser(se_StartLifecyclePolicyPreviewCommand).de(de_StartLifecyclePolicyPreviewCommand).build() {
|
|
3620
|
+
static {
|
|
3621
|
+
__name(this, "StartLifecyclePolicyPreviewCommand");
|
|
3622
|
+
}
|
|
3506
3623
|
};
|
|
3507
|
-
__name(_StartLifecyclePolicyPreviewCommand, "StartLifecyclePolicyPreviewCommand");
|
|
3508
|
-
var StartLifecyclePolicyPreviewCommand = _StartLifecyclePolicyPreviewCommand;
|
|
3509
3624
|
|
|
3510
3625
|
// src/commands/TagResourceCommand.ts
|
|
3511
3626
|
|
|
3512
3627
|
|
|
3513
3628
|
|
|
3514
|
-
var
|
|
3629
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3515
3630
|
return [
|
|
3516
3631
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3517
3632
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3518
3633
|
];
|
|
3519
3634
|
}).s("AmazonEC2ContainerRegistry_V20150921", "TagResource", {}).n("ECRClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3635
|
+
static {
|
|
3636
|
+
__name(this, "TagResourceCommand");
|
|
3637
|
+
}
|
|
3520
3638
|
};
|
|
3521
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3522
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3523
3639
|
|
|
3524
3640
|
// src/commands/UntagResourceCommand.ts
|
|
3525
3641
|
|
|
3526
3642
|
|
|
3527
3643
|
|
|
3528
|
-
var
|
|
3644
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3529
3645
|
return [
|
|
3530
3646
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3531
3647
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3532
3648
|
];
|
|
3533
3649
|
}).s("AmazonEC2ContainerRegistry_V20150921", "UntagResource", {}).n("ECRClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3650
|
+
static {
|
|
3651
|
+
__name(this, "UntagResourceCommand");
|
|
3652
|
+
}
|
|
3534
3653
|
};
|
|
3535
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3536
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3537
3654
|
|
|
3538
3655
|
// src/commands/UpdatePullThroughCacheRuleCommand.ts
|
|
3539
3656
|
|
|
3540
3657
|
|
|
3541
3658
|
|
|
3542
|
-
var
|
|
3659
|
+
var UpdatePullThroughCacheRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3543
3660
|
return [
|
|
3544
3661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3545
3662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3546
3663
|
];
|
|
3547
3664
|
}).s("AmazonEC2ContainerRegistry_V20150921", "UpdatePullThroughCacheRule", {}).n("ECRClient", "UpdatePullThroughCacheRuleCommand").f(void 0, void 0).ser(se_UpdatePullThroughCacheRuleCommand).de(de_UpdatePullThroughCacheRuleCommand).build() {
|
|
3665
|
+
static {
|
|
3666
|
+
__name(this, "UpdatePullThroughCacheRuleCommand");
|
|
3667
|
+
}
|
|
3548
3668
|
};
|
|
3549
|
-
__name(_UpdatePullThroughCacheRuleCommand, "UpdatePullThroughCacheRuleCommand");
|
|
3550
|
-
var UpdatePullThroughCacheRuleCommand = _UpdatePullThroughCacheRuleCommand;
|
|
3551
3669
|
|
|
3552
3670
|
// src/commands/UpdateRepositoryCreationTemplateCommand.ts
|
|
3553
3671
|
|
|
3554
3672
|
|
|
3555
3673
|
|
|
3556
|
-
var
|
|
3674
|
+
var UpdateRepositoryCreationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3557
3675
|
return [
|
|
3558
3676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3559
3677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3560
3678
|
];
|
|
3561
3679
|
}).s("AmazonEC2ContainerRegistry_V20150921", "UpdateRepositoryCreationTemplate", {}).n("ECRClient", "UpdateRepositoryCreationTemplateCommand").f(void 0, void 0).ser(se_UpdateRepositoryCreationTemplateCommand).de(de_UpdateRepositoryCreationTemplateCommand).build() {
|
|
3680
|
+
static {
|
|
3681
|
+
__name(this, "UpdateRepositoryCreationTemplateCommand");
|
|
3682
|
+
}
|
|
3562
3683
|
};
|
|
3563
|
-
__name(_UpdateRepositoryCreationTemplateCommand, "UpdateRepositoryCreationTemplateCommand");
|
|
3564
|
-
var UpdateRepositoryCreationTemplateCommand = _UpdateRepositoryCreationTemplateCommand;
|
|
3565
3684
|
|
|
3566
3685
|
// src/commands/UploadLayerPartCommand.ts
|
|
3567
3686
|
|
|
3568
3687
|
|
|
3569
3688
|
|
|
3570
|
-
var
|
|
3689
|
+
var UploadLayerPartCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3571
3690
|
return [
|
|
3572
3691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3573
3692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3574
3693
|
];
|
|
3575
3694
|
}).s("AmazonEC2ContainerRegistry_V20150921", "UploadLayerPart", {}).n("ECRClient", "UploadLayerPartCommand").f(void 0, void 0).ser(se_UploadLayerPartCommand).de(de_UploadLayerPartCommand).build() {
|
|
3695
|
+
static {
|
|
3696
|
+
__name(this, "UploadLayerPartCommand");
|
|
3697
|
+
}
|
|
3576
3698
|
};
|
|
3577
|
-
__name(_UploadLayerPartCommand, "UploadLayerPartCommand");
|
|
3578
|
-
var UploadLayerPartCommand = _UploadLayerPartCommand;
|
|
3579
3699
|
|
|
3580
3700
|
// src/commands/ValidatePullThroughCacheRuleCommand.ts
|
|
3581
3701
|
|
|
3582
3702
|
|
|
3583
3703
|
|
|
3584
|
-
var
|
|
3704
|
+
var ValidatePullThroughCacheRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3585
3705
|
return [
|
|
3586
3706
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3587
3707
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3588
3708
|
];
|
|
3589
3709
|
}).s("AmazonEC2ContainerRegistry_V20150921", "ValidatePullThroughCacheRule", {}).n("ECRClient", "ValidatePullThroughCacheRuleCommand").f(void 0, void 0).ser(se_ValidatePullThroughCacheRuleCommand).de(de_ValidatePullThroughCacheRuleCommand).build() {
|
|
3710
|
+
static {
|
|
3711
|
+
__name(this, "ValidatePullThroughCacheRuleCommand");
|
|
3712
|
+
}
|
|
3590
3713
|
};
|
|
3591
|
-
__name(_ValidatePullThroughCacheRuleCommand, "ValidatePullThroughCacheRuleCommand");
|
|
3592
|
-
var ValidatePullThroughCacheRuleCommand = _ValidatePullThroughCacheRuleCommand;
|
|
3593
3714
|
|
|
3594
3715
|
// src/ECR.ts
|
|
3595
3716
|
var commands = {
|
|
@@ -3643,10 +3764,11 @@ var commands = {
|
|
|
3643
3764
|
UploadLayerPartCommand,
|
|
3644
3765
|
ValidatePullThroughCacheRuleCommand
|
|
3645
3766
|
};
|
|
3646
|
-
var
|
|
3767
|
+
var ECR = class extends ECRClient {
|
|
3768
|
+
static {
|
|
3769
|
+
__name(this, "ECR");
|
|
3770
|
+
}
|
|
3647
3771
|
};
|
|
3648
|
-
__name(_ECR, "ECR");
|
|
3649
|
-
var ECR = _ECR;
|
|
3650
3772
|
(0, import_smithy_client.createAggregatedClient)(commands, ECR);
|
|
3651
3773
|
|
|
3652
3774
|
// src/pagination/DescribeImageScanFindingsPaginator.ts
|