@aws-sdk/client-ecr 3.934.0 → 3.936.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +538 -154
  3. package/dist-es/ECR.js +10 -0
  4. package/dist-es/commands/DeregisterPullTimeUpdateExclusionCommand.js +16 -0
  5. package/dist-es/commands/ListImageReferrersCommand.js +16 -0
  6. package/dist-es/commands/ListPullTimeUpdateExclusionsCommand.js +16 -0
  7. package/dist-es/commands/RegisterPullTimeUpdateExclusionCommand.js +16 -0
  8. package/dist-es/commands/UpdateImageStorageClassCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/index.js +2 -1
  11. package/dist-es/models/enums.js +141 -0
  12. package/dist-es/models/errors.js +551 -0
  13. package/dist-es/models/models_0.js +1 -595
  14. package/dist-es/schemas/schemas_0.js +259 -52
  15. package/dist-types/ECR.d.ts +36 -0
  16. package/dist-types/ECRClient.d.ts +7 -2
  17. package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +1 -1
  18. package/dist-types/commands/BatchDeleteImageCommand.d.ts +1 -1
  19. package/dist-types/commands/BatchGetImageCommand.d.ts +1 -1
  20. package/dist-types/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +107 -0
  21. package/dist-types/commands/DescribeImageScanFindingsCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeImagesCommand.d.ts +11 -8
  23. package/dist-types/commands/GetLifecyclePolicyPreviewCommand.d.ts +9 -1
  24. package/dist-types/commands/ListImageReferrersCommand.d.ts +224 -0
  25. package/dist-types/commands/ListImagesCommand.d.ts +1 -0
  26. package/dist-types/commands/ListPullTimeUpdateExclusionsCommand.d.ts +127 -0
  27. package/dist-types/commands/PutRegistryScanningConfigurationCommand.d.ts +3 -0
  28. package/dist-types/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +93 -0
  29. package/dist-types/commands/StartImageScanCommand.d.ts +8 -6
  30. package/dist-types/commands/UpdateImageStorageClassCommand.d.ts +156 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/index.d.ts +3 -1
  33. package/dist-types/models/enums.d.ts +349 -0
  34. package/dist-types/models/errors.d.ts +597 -0
  35. package/dist-types/models/models_0.d.ts +372 -812
  36. package/dist-types/schemas/schemas_0.d.ts +29 -0
  37. package/dist-types/ts3.4/ECR.d.ts +92 -0
  38. package/dist-types/ts3.4/ECRClient.d.ts +30 -0
  39. package/dist-types/ts3.4/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/ListImageReferrersCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/ListPullTimeUpdateExclusionsCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/UpdateImageStorageClassCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  45. package/dist-types/ts3.4/index.d.ts +3 -1
  46. package/dist-types/ts3.4/models/enums.d.ts +187 -0
  47. package/dist-types/ts3.4/models/errors.d.ts +369 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +100 -461
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -0
  50. package/package.json +19 -19
  51. package/dist-es/models/index.js +0 -1
  52. package/dist-types/models/index.d.ts +0 -1
  53. package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js CHANGED
@@ -118,14 +118,6 @@ let ECRServiceException$1 = class ECRServiceException extends smithyClient.Servi
118
118
  }
119
119
  };
120
120
 
121
- const LayerFailureCode = {
122
- InvalidLayerDigest: "InvalidLayerDigest",
123
- MissingLayerDigest: "MissingLayerDigest",
124
- };
125
- const LayerAvailability = {
126
- AVAILABLE: "AVAILABLE",
127
- UNAVAILABLE: "UNAVAILABLE",
128
- };
129
121
  let InvalidParameterException$1 = class InvalidParameterException extends ECRServiceException$1 {
130
122
  name = "InvalidParameterException";
131
123
  $fault = "client";
@@ -162,18 +154,6 @@ let ServerException$1 = class ServerException extends ECRServiceException$1 {
162
154
  Object.setPrototypeOf(this, ServerException.prototype);
163
155
  }
164
156
  };
165
- const ImageFailureCode = {
166
- ImageNotFound: "ImageNotFound",
167
- ImageReferencedByManifestList: "ImageReferencedByManifestList",
168
- ImageTagDoesNotMatchDigest: "ImageTagDoesNotMatchDigest",
169
- InvalidImageDigest: "InvalidImageDigest",
170
- InvalidImageTag: "InvalidImageTag",
171
- KmsError: "KmsError",
172
- MissingDigestAndTag: "MissingDigestAndTag",
173
- UpstreamAccessDenied: "UpstreamAccessDenied",
174
- UpstreamTooManyRequests: "UpstreamTooManyRequests",
175
- UpstreamUnavailable: "UpstreamUnavailable",
176
- };
177
157
  let LimitExceededException$1 = class LimitExceededException extends ECRServiceException$1 {
178
158
  name = "LimitExceededException";
179
159
  $fault = "client";
@@ -198,17 +178,6 @@ let UnableToGetUpstreamImageException$1 = class UnableToGetUpstreamImageExceptio
198
178
  Object.setPrototypeOf(this, UnableToGetUpstreamImageException.prototype);
199
179
  }
200
180
  };
201
- const ScanningConfigurationFailureCode = {
202
- REPOSITORY_NOT_FOUND: "REPOSITORY_NOT_FOUND",
203
- };
204
- const ScanningRepositoryFilterType = {
205
- WILDCARD: "WILDCARD",
206
- };
207
- const ScanFrequency = {
208
- CONTINUOUS_SCAN: "CONTINUOUS_SCAN",
209
- MANUAL: "MANUAL",
210
- SCAN_ON_PUSH: "SCAN_ON_PUSH",
211
- };
212
181
  let ValidationException$1 = class ValidationException extends ECRServiceException$1 {
213
182
  name = "ValidationException";
214
183
  $fault = "client";
@@ -295,16 +264,6 @@ let UploadNotFoundException$1 = class UploadNotFoundException extends ECRService
295
264
  Object.setPrototypeOf(this, UploadNotFoundException.prototype);
296
265
  }
297
266
  };
298
- const UpstreamRegistry = {
299
- AzureContainerRegistry: "azure-container-registry",
300
- DockerHub: "docker-hub",
301
- Ecr: "ecr",
302
- EcrPublic: "ecr-public",
303
- GitHubContainerRegistry: "github-container-registry",
304
- GitLabContainerRegistry: "gitlab-container-registry",
305
- K8s: "k8s",
306
- Quay: "quay",
307
- };
308
267
  let PullThroughCacheRuleAlreadyExistsException$1 = class PullThroughCacheRuleAlreadyExistsException extends ECRServiceException$1 {
309
268
  name = "PullThroughCacheRuleAlreadyExistsException";
310
269
  $fault = "client";
@@ -365,20 +324,6 @@ let UnsupportedUpstreamRegistryException$1 = class UnsupportedUpstreamRegistryEx
365
324
  Object.setPrototypeOf(this, UnsupportedUpstreamRegistryException.prototype);
366
325
  }
367
326
  };
368
- const EncryptionType = {
369
- AES256: "AES256",
370
- KMS: "KMS",
371
- KMS_DSSE: "KMS_DSSE",
372
- };
373
- const ImageTagMutability = {
374
- IMMUTABLE: "IMMUTABLE",
375
- IMMUTABLE_WITH_EXCLUSION: "IMMUTABLE_WITH_EXCLUSION",
376
- MUTABLE: "MUTABLE",
377
- MUTABLE_WITH_EXCLUSION: "MUTABLE_WITH_EXCLUSION",
378
- };
379
- const ImageTagMutabilityExclusionFilterType = {
380
- WILDCARD: "WILDCARD",
381
- };
382
327
  let InvalidTagParameterException$1 = class InvalidTagParameterException extends ECRServiceException$1 {
383
328
  name = "InvalidTagParameterException";
384
329
  $fault = "client";
@@ -415,10 +360,6 @@ let TooManyTagsException$1 = class TooManyTagsException extends ECRServiceExcept
415
360
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
416
361
  }
417
362
  };
418
- const RCTAppliedFor = {
419
- PULL_THROUGH_CACHE: "PULL_THROUGH_CACHE",
420
- REPLICATION: "REPLICATION",
421
- };
422
363
  let TemplateAlreadyExistsException$1 = class TemplateAlreadyExistsException extends ECRServiceException$1 {
423
364
  name = "TemplateAlreadyExistsException";
424
365
  $fault = "client";
@@ -503,10 +444,17 @@ let RepositoryPolicyNotFoundException$1 = class RepositoryPolicyNotFoundExceptio
503
444
  Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
504
445
  }
505
446
  };
506
- const ReplicationStatus = {
507
- COMPLETE: "COMPLETE",
508
- FAILED: "FAILED",
509
- IN_PROGRESS: "IN_PROGRESS",
447
+ let ExclusionNotFoundException$1 = class ExclusionNotFoundException extends ECRServiceException$1 {
448
+ name = "ExclusionNotFoundException";
449
+ $fault = "client";
450
+ constructor(opts) {
451
+ super({
452
+ name: "ExclusionNotFoundException",
453
+ $fault: "client",
454
+ ...opts,
455
+ });
456
+ Object.setPrototypeOf(this, ExclusionNotFoundException.prototype);
457
+ }
510
458
  };
511
459
  let ImageNotFoundException$1 = class ImageNotFoundException extends ECRServiceException$1 {
512
460
  name = "ImageNotFoundException";
@@ -520,30 +468,6 @@ let ImageNotFoundException$1 = class ImageNotFoundException extends ECRServiceEx
520
468
  Object.setPrototypeOf(this, ImageNotFoundException.prototype);
521
469
  }
522
470
  };
523
- const TagStatus = {
524
- ANY: "ANY",
525
- TAGGED: "TAGGED",
526
- UNTAGGED: "UNTAGGED",
527
- };
528
- const FindingSeverity = {
529
- CRITICAL: "CRITICAL",
530
- HIGH: "HIGH",
531
- INFORMATIONAL: "INFORMATIONAL",
532
- LOW: "LOW",
533
- MEDIUM: "MEDIUM",
534
- UNDEFINED: "UNDEFINED",
535
- };
536
- const ScanStatus = {
537
- ACTIVE: "ACTIVE",
538
- COMPLETE: "COMPLETE",
539
- FAILED: "FAILED",
540
- FINDINGS_UNAVAILABLE: "FINDINGS_UNAVAILABLE",
541
- IN_PROGRESS: "IN_PROGRESS",
542
- LIMIT_EXCEEDED: "LIMIT_EXCEEDED",
543
- PENDING: "PENDING",
544
- SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",
545
- UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE",
546
- };
547
471
  let ScanNotFoundException$1 = class ScanNotFoundException extends ECRServiceException$1 {
548
472
  name = "ScanNotFoundException";
549
473
  $fault = "client";
@@ -556,9 +480,6 @@ let ScanNotFoundException$1 = class ScanNotFoundException extends ECRServiceExce
556
480
  Object.setPrototypeOf(this, ScanNotFoundException.prototype);
557
481
  }
558
482
  };
559
- const RepositoryFilterType = {
560
- PREFIX_MATCH: "PREFIX_MATCH",
561
- };
562
483
  let LayerInaccessibleException$1 = class LayerInaccessibleException extends ECRServiceException$1 {
563
484
  name = "LayerInaccessibleException";
564
485
  $fault = "client";
@@ -595,15 +516,6 @@ let UnableToGetUpstreamLayerException$1 = class UnableToGetUpstreamLayerExceptio
595
516
  Object.setPrototypeOf(this, UnableToGetUpstreamLayerException.prototype);
596
517
  }
597
518
  };
598
- const ImageActionType = {
599
- EXPIRE: "EXPIRE",
600
- };
601
- const LifecyclePolicyPreviewStatus = {
602
- COMPLETE: "COMPLETE",
603
- EXPIRED: "EXPIRED",
604
- FAILED: "FAILED",
605
- IN_PROGRESS: "IN_PROGRESS",
606
- };
607
519
  let LifecyclePolicyPreviewNotFoundException$1 = class LifecyclePolicyPreviewNotFoundException extends ECRServiceException$1 {
608
520
  name = "LifecyclePolicyPreviewNotFoundException";
609
521
  $fault = "client";
@@ -616,10 +528,6 @@ let LifecyclePolicyPreviewNotFoundException$1 = class LifecyclePolicyPreviewNotF
616
528
  Object.setPrototypeOf(this, LifecyclePolicyPreviewNotFoundException.prototype);
617
529
  }
618
530
  };
619
- const ScanType = {
620
- BASIC: "BASIC",
621
- ENHANCED: "ENHANCED",
622
- };
623
531
  let ImageAlreadyExistsException$1 = class ImageAlreadyExistsException extends ECRServiceException$1 {
624
532
  name = "ImageAlreadyExistsException";
625
533
  $fault = "client";
@@ -668,6 +576,42 @@ let ReferencedImagesNotFoundException$1 = class ReferencedImagesNotFoundExceptio
668
576
  Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
669
577
  }
670
578
  };
579
+ let BlockedByOrganizationPolicyException$1 = class BlockedByOrganizationPolicyException extends ECRServiceException$1 {
580
+ name = "BlockedByOrganizationPolicyException";
581
+ $fault = "client";
582
+ constructor(opts) {
583
+ super({
584
+ name: "BlockedByOrganizationPolicyException",
585
+ $fault: "client",
586
+ ...opts,
587
+ });
588
+ Object.setPrototypeOf(this, BlockedByOrganizationPolicyException.prototype);
589
+ }
590
+ };
591
+ let ExclusionAlreadyExistsException$1 = class ExclusionAlreadyExistsException extends ECRServiceException$1 {
592
+ name = "ExclusionAlreadyExistsException";
593
+ $fault = "client";
594
+ constructor(opts) {
595
+ super({
596
+ name: "ExclusionAlreadyExistsException",
597
+ $fault: "client",
598
+ ...opts,
599
+ });
600
+ Object.setPrototypeOf(this, ExclusionAlreadyExistsException.prototype);
601
+ }
602
+ };
603
+ let ImageArchivedException$1 = class ImageArchivedException extends ECRServiceException$1 {
604
+ name = "ImageArchivedException";
605
+ $fault = "client";
606
+ constructor(opts) {
607
+ super({
608
+ name: "ImageArchivedException",
609
+ $fault: "client",
610
+ ...opts,
611
+ });
612
+ Object.setPrototypeOf(this, ImageArchivedException.prototype);
613
+ }
614
+ };
671
615
  let UnsupportedImageTypeException$1 = class UnsupportedImageTypeException extends ECRServiceException$1 {
672
616
  name = "UnsupportedImageTypeException";
673
617
  $fault = "client";
@@ -692,6 +636,18 @@ let LifecyclePolicyPreviewInProgressException$1 = class LifecyclePolicyPreviewIn
692
636
  Object.setPrototypeOf(this, LifecyclePolicyPreviewInProgressException.prototype);
693
637
  }
694
638
  };
639
+ let ImageStorageClassUpdateNotSupportedException$1 = class ImageStorageClassUpdateNotSupportedException extends ECRServiceException$1 {
640
+ name = "ImageStorageClassUpdateNotSupportedException";
641
+ $fault = "client";
642
+ constructor(opts) {
643
+ super({
644
+ name: "ImageStorageClassUpdateNotSupportedException",
645
+ $fault: "client",
646
+ ...opts,
647
+ });
648
+ Object.setPrototypeOf(this, ImageStorageClassUpdateNotSupportedException.prototype);
649
+ }
650
+ };
695
651
  let InvalidLayerPartException$1 = class InvalidLayerPartException extends ECRServiceException$1 {
696
652
  name = "InvalidLayerPartException";
697
653
  $fault = "client";
@@ -718,6 +674,7 @@ const _AD = "AuthorizationData";
718
674
  const _ADL = "AuthorizationDataList";
719
675
  const _AECID = "AwsEcrContainerImageDetails";
720
676
  const _AL = "AttributeList";
677
+ const _BBOPE = "BlockedByOrganizationPolicyException";
721
678
  const _BCLA = "BatchCheckLayerAvailability";
722
679
  const _BCLAR = "BatchCheckLayerAvailabilityRequest";
723
680
  const _BCLARa = "BatchCheckLayerAvailabilityResponse";
@@ -766,6 +723,9 @@ const _DPTCRRe = "DeletePullThroughCacheRuleResponse";
766
723
  const _DPTCRRes = "DescribePullThroughCacheRulesRequest";
767
724
  const _DPTCRResc = "DescribePullThroughCacheRulesResponse";
768
725
  const _DPTCRe = "DescribePullThroughCacheRules";
726
+ const _DPTUE = "DeregisterPullTimeUpdateExclusion";
727
+ const _DPTUER = "DeregisterPullTimeUpdateExclusionRequest";
728
+ const _DPTUERe = "DeregisterPullTimeUpdateExclusionResponse";
769
729
  const _DR = "DeleteRepository";
770
730
  const _DRCT = "DeleteRepositoryCreationTemplate";
771
731
  const _DRCTR = "DeleteRepositoryCreationTemplateRequest";
@@ -787,10 +747,12 @@ const _DRRescr = "DescribeRepositoriesRequest";
787
747
  const _DRRescri = "DescribeRepositoriesResponse";
788
748
  const _DRe = "DescribeRegistry";
789
749
  const _DRes = "DescribeRepositories";
750
+ const _EAEE = "ExclusionAlreadyExistsException";
790
751
  const _EC = "EncryptionConfiguration";
791
752
  const _ECFRCT = "EncryptionConfigurationForRepositoryCreationTemplate";
792
753
  const _EISF = "EnhancedImageScanFinding";
793
754
  const _EISFL = "EnhancedImageScanFindingList";
755
+ const _ENFE = "ExclusionNotFoundException";
794
756
  const _EUE = "EmptyUploadException";
795
757
  const _GAS = "GetAccountSetting";
796
758
  const _GASR = "GetAccountSettingRequest";
@@ -817,6 +779,7 @@ const _GRSC = "GetRegistryScanningConfiguration";
817
779
  const _GRSCR = "GetRegistryScanningConfigurationRequest";
818
780
  const _GRSCRe = "GetRegistryScanningConfigurationResponse";
819
781
  const _I = "Image";
782
+ const _IAE = "ImageArchivedException";
820
783
  const _IAEE = "ImageAlreadyExistsException";
821
784
  const _ID = "ImageDetail";
822
785
  const _IDDNME = "ImageDigestDoesNotMatchException";
@@ -833,9 +796,12 @@ const _ILUR = "InitiateLayerUploadRequest";
833
796
  const _ILURn = "InitiateLayerUploadResponse";
834
797
  const _INFE = "ImageNotFoundException";
835
798
  const _IPE = "InvalidParameterException";
799
+ const _IR = "ImageReferrer";
800
+ const _IRL = "ImageReferrerList";
836
801
  const _IRS = "ImageReplicationStatus";
837
802
  const _IRSL = "ImageReplicationStatusList";
838
803
  const _ISC = "ImageScanningConfiguration";
804
+ const _ISCUNSE = "ImageStorageClassUpdateNotSupportedException";
839
805
  const _ISF = "ImageScanFinding";
840
806
  const _ISFL = "ImageScanFindingList";
841
807
  const _ISFS = "ImageScanFindingsSummary";
@@ -856,7 +822,11 @@ const _LI = "ListImages";
856
822
  const _LIE = "LayerInaccessibleException";
857
823
  const _LIF = "ListImagesFilter";
858
824
  const _LIR = "ListImagesRequest";
825
+ const _LIRF = "ListImageReferrersFilter";
826
+ const _LIRR = "ListImageReferrersRequest";
827
+ const _LIRRi = "ListImageReferrersResponse";
859
828
  const _LIRi = "ListImagesResponse";
829
+ const _LIRis = "ListImageReferrers";
860
830
  const _LL = "LayerList";
861
831
  const _LNFE = "LayersNotFoundException";
862
832
  const _LPNFE = "LifecyclePolicyNotFoundException";
@@ -868,6 +838,9 @@ const _LPPRL = "LifecyclePolicyPreviewResultList";
868
838
  const _LPPS = "LifecyclePolicyPreviewSummary";
869
839
  const _LPRA = "LifecyclePolicyRuleAction";
870
840
  const _LPTSE = "LayerPartTooSmallException";
841
+ const _LPTUE = "ListPullTimeUpdateExclusions";
842
+ const _LPTUER = "ListPullTimeUpdateExclusionsRequest";
843
+ const _LPTUERi = "ListPullTimeUpdateExclusionsResponse";
871
844
  const _LTFR = "ListTagsForResource";
872
845
  const _LTFRR = "ListTagsForResourceRequest";
873
846
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -917,6 +890,9 @@ const _RNEE = "RepositoryNotEmptyException";
917
890
  const _RNFE = "RepositoryNotFoundException";
918
891
  const _RPNFE = "RegistryPolicyNotFoundException";
919
892
  const _RPNFEe = "RepositoryPolicyNotFoundException";
893
+ const _RPTUE = "RegisterPullTimeUpdateExclusion";
894
+ const _RPTUER = "RegisterPullTimeUpdateExclusionRequest";
895
+ const _RPTUERe = "RegisterPullTimeUpdateExclusionResponse";
920
896
  const _RR = "ReplicationRule";
921
897
  const _RRL = "ReplicationRuleList";
922
898
  const _RSC = "RegistryScanningConfiguration";
@@ -931,6 +907,7 @@ const _Rep = "Repository";
931
907
  const _Res = "Resource";
932
908
  const _SD = "ScoreDetails";
933
909
  const _SE = "ServerException";
910
+ const _SI = "SubjectIdentifier";
934
911
  const _SIS = "StartImageScan";
935
912
  const _SISR = "StartImageScanRequest";
936
913
  const _SISRt = "StartImageScanResponse";
@@ -946,12 +923,17 @@ const _SRPR = "SetRepositoryPolicyRequest";
946
923
  const _SRPRe = "SetRepositoryPolicyResponse";
947
924
  const _T = "Tag";
948
925
  const _TAEE = "TemplateAlreadyExistsException";
926
+ const _TITC = "TransitioningImageTotalCount";
927
+ const _TITCr = "TransitioningImageTotalCounts";
949
928
  const _TL = "TagList";
950
929
  const _TMTE = "TooManyTagsException";
951
930
  const _TNFE = "TemplateNotFoundException";
952
931
  const _TR = "TagResource";
953
932
  const _TRR = "TagResourceRequest";
954
933
  const _TRRa = "TagResourceResponse";
934
+ const _UISC = "UpdateImageStorageClass";
935
+ const _UISCR = "UpdateImageStorageClassRequest";
936
+ const _UISCRp = "UpdateImageStorageClassResponse";
955
937
  const _UITE = "UnsupportedImageTypeException";
956
938
  const _ULP = "UploadLayerPart";
957
939
  const _ULPR = "UploadLayerPartRequest";
@@ -986,10 +968,14 @@ const _aF = "appliedFor";
986
968
  const _aMT = "acceptedMediaTypes";
987
969
  const _aMTr = "artifactMediaType";
988
970
  const _aRP = "appliedRulePriority";
971
+ const _aS = "artifactStatus";
989
972
  const _aSF = "appliedScanFilters";
990
973
  const _aT = "authorizationToken";
974
+ const _aTr = "artifactType";
975
+ const _aTrt = "artifactTypes";
991
976
  const _ac = "action";
992
977
  const _ad = "adjustments";
978
+ const _an = "annotations";
993
979
  const _ar = "arch";
994
980
  const _at = "attributes";
995
981
  const _au = "author";
@@ -1003,6 +989,7 @@ const _d = "description";
1003
989
  const _dU = "downloadUrl";
1004
990
  const _de = "destinations";
1005
991
  const _det = "details";
992
+ const _di = "digest";
1006
993
  const _e = "error";
1007
994
  const _eA = "expiresAt";
1008
995
  const _eAx = "exploitAvailable";
@@ -1037,6 +1024,7 @@ const _iIm = "imageId";
1037
1024
  const _iM = "imageManifest";
1038
1025
  const _iMMT = "imageManifestMediaType";
1039
1026
  const _iPA = "imagePushedAt";
1027
+ const _iS = "imageStatus";
1040
1028
  const _iSC = "imageScanningConfiguration";
1041
1029
  const _iSCA = "imageScanCompletedAt";
1042
1030
  const _iSF = "imageScanFindings";
@@ -1044,6 +1032,7 @@ const _iSFS = "imageScanFindingsSummary";
1044
1032
  const _iSIB = "imageSizeInBytes";
1045
1033
  const _iSS = "imageScanStatus";
1046
1034
  const _iT = "imageTags";
1035
+ const _iTC = "imageTotalCount";
1047
1036
  const _iTM = "imageTagMutability";
1048
1037
  const _iTMEF = "imageTagMutabilityExclusionFilters";
1049
1038
  const _iTm = "imageTag";
@@ -1056,6 +1045,8 @@ const _kE = "kmsError";
1056
1045
  const _kK = "kmsKey";
1057
1046
  const _l = "layers";
1058
1047
  const _lA = "layerAvailability";
1048
+ const _lAA = "lastArchivedAt";
1049
+ const _lAAa = "lastActivatedAt";
1059
1050
  const _lBR = "lastByteReceived";
1060
1051
  const _lD = "layerDigests";
1061
1052
  const _lDa = "layerDigest";
@@ -1068,14 +1059,15 @@ const _lPT = "lifecyclePolicyText";
1068
1059
  const _lRPT = "lastRecordedPullTime";
1069
1060
  const _lS = "layerSize";
1070
1061
  const _lVBR = "lastValidByteReceived";
1071
- const _m = "metric";
1062
+ const _m = "message";
1072
1063
  const _mR = "maxResults";
1073
1064
  const _mT = "mediaType";
1074
- const _me = "message";
1065
+ const _me = "metric";
1075
1066
  const _n = "name";
1076
1067
  const _nT = "nextToken";
1077
1068
  const _p = "platform";
1078
1069
  const _pA = "pushedAt";
1070
+ const _pAr = "principalArn";
1079
1071
  const _pE = "proxyEndpoint";
1080
1072
  const _pFB = "partFirstByte";
1081
1073
  const _pLB = "partLastByte";
@@ -1084,6 +1076,7 @@ const _pR = "previewResults";
1084
1076
  const _pS = "partSize";
1085
1077
  const _pT = "policyText";
1086
1078
  const _pTCR = "pullThroughCacheRules";
1079
+ const _pTUE = "pullTimeUpdateExclusions";
1087
1080
  const _pVD = "packageVulnerabilityDetails";
1088
1081
  const _pr = "prefix";
1089
1082
  const _pre = "prefixes";
@@ -1108,6 +1101,7 @@ const _rV = "relatedVulnerabilities";
1108
1101
  const _re = "repository";
1109
1102
  const _rea = "reason";
1110
1103
  const _rec = "recommendation";
1104
+ const _ref = "referrers";
1111
1105
  const _reg = "region";
1112
1106
  const _rel = "release";
1113
1107
  const _rem = "remediation";
@@ -1117,9 +1111,12 @@ const _ru = "rules";
1117
1111
  const _s = "source";
1118
1112
  const _sC = "scanningConfigurations";
1119
1113
  const _sCc = "scanningConfiguration";
1114
+ const _sCt = "storageClass";
1120
1115
  const _sD = "scoreDetails";
1121
1116
  const _sF = "scanFrequency";
1117
+ const _sI = "subjectId";
1122
1118
  const _sLH = "sourceLayerHash";
1119
+ const _sMD = "subjectManifestDigest";
1123
1120
  const _sOP = "scanOnPush";
1124
1121
  const _sS = "scoreSource";
1125
1122
  const _sT = "scanType";
@@ -1128,12 +1125,15 @@ const _sV = "scoringVector";
1128
1125
  const _sc = "score";
1129
1126
  const _se = "severity";
1130
1127
  const _ser = "server";
1128
+ const _si = "size";
1131
1129
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ecr";
1132
1130
  const _st = "status";
1133
1131
  const _su = "summary";
1134
1132
  const _t = "tags";
1133
+ const _tITC = "transitioningImageTotalCounts";
1135
1134
  const _tK = "tagKeys";
1136
1135
  const _tS = "tagStatus";
1136
+ const _tSC = "targetStorageClass";
1137
1137
  const _te = "text";
1138
1138
  const _ti = "title";
1139
1139
  const _ty = "type";
@@ -1227,6 +1227,17 @@ var BatchGetRepositoryScanningConfigurationResponse = [
1227
1227
  [_sC, _f],
1228
1228
  [() => RepositoryScanningConfigurationList, () => RepositoryScanningConfigurationFailureList],
1229
1229
  ];
1230
+ var BlockedByOrganizationPolicyException = [
1231
+ -3,
1232
+ n0,
1233
+ _BBOPE,
1234
+ {
1235
+ [_e]: _c,
1236
+ },
1237
+ [_m],
1238
+ [0],
1239
+ ];
1240
+ schema.TypeRegistry.for(n0).registerError(BlockedByOrganizationPolicyException, BlockedByOrganizationPolicyException$1);
1230
1241
  var CompleteLayerUploadRequest = [
1231
1242
  3,
1232
1243
  n0,
@@ -1297,7 +1308,7 @@ var CreateRepositoryRequest = [
1297
1308
  ];
1298
1309
  var CreateRepositoryResponse = [3, n0, _CRRr, 0, [_re], [() => Repository]];
1299
1310
  var CvssScore = [3, n0, _CS, 0, [_bS, _sV, _s, _ve], [1, 0, 0, 0]];
1300
- var CvssScoreAdjustment = [3, n0, _CSA, 0, [_m, _rea], [0, 0]];
1311
+ var CvssScoreAdjustment = [3, n0, _CSA, 0, [_me, _rea], [0, 0]];
1301
1312
  var CvssScoreDetails = [
1302
1313
  3,
1303
1314
  n0,
@@ -1339,6 +1350,8 @@ var DeleteRepositoryPolicyRequest = [3, n0, _DRPRel, 0, [_rI, _rN], [0, 0]];
1339
1350
  var DeleteRepositoryPolicyResponse = [3, n0, _DRPRele, 0, [_rI, _rN, _pT], [0, 0, 0]];
1340
1351
  var DeleteRepositoryRequest = [3, n0, _DRR, 0, [_rI, _rN, _fo], [0, 0, 2]];
1341
1352
  var DeleteRepositoryResponse = [3, n0, _DRRe, 0, [_re], [() => Repository]];
1353
+ var DeregisterPullTimeUpdateExclusionRequest = [3, n0, _DPTUER, 0, [_pAr], [0]];
1354
+ var DeregisterPullTimeUpdateExclusionResponse = [3, n0, _DPTUERe, 0, [_pAr], [0]];
1342
1355
  var DescribeImageReplicationStatusRequest = [
1343
1356
  3,
1344
1357
  n0,
@@ -1371,7 +1384,7 @@ var DescribeImageScanFindingsResponse = [
1371
1384
  [_rI, _rN, _iIm, _iSS, _iSF, _nT],
1372
1385
  [0, 0, () => ImageIdentifier, () => ImageScanStatus, () => ImageScanFindings, 0],
1373
1386
  ];
1374
- var DescribeImagesFilter = [3, n0, _DIF, 0, [_tS], [0]];
1387
+ var DescribeImagesFilter = [3, n0, _DIF, 0, [_tS, _iS], [0, 0]];
1375
1388
  var DescribeImagesRequest = [
1376
1389
  3,
1377
1390
  n0,
@@ -1445,7 +1458,7 @@ var EmptyUploadException = [
1445
1458
  {
1446
1459
  [_e]: _c,
1447
1460
  },
1448
- [_me],
1461
+ [_m],
1449
1462
  [0],
1450
1463
  ];
1451
1464
  schema.TypeRegistry.for(n0).registerError(EmptyUploadException, EmptyUploadException$1);
@@ -1484,6 +1497,28 @@ var EnhancedImageScanFinding = [
1484
1497
  0,
1485
1498
  ],
1486
1499
  ];
1500
+ var ExclusionAlreadyExistsException = [
1501
+ -3,
1502
+ n0,
1503
+ _EAEE,
1504
+ {
1505
+ [_e]: _c,
1506
+ },
1507
+ [_m],
1508
+ [0],
1509
+ ];
1510
+ schema.TypeRegistry.for(n0).registerError(ExclusionAlreadyExistsException, ExclusionAlreadyExistsException$1);
1511
+ var ExclusionNotFoundException = [
1512
+ -3,
1513
+ n0,
1514
+ _ENFE,
1515
+ {
1516
+ [_e]: _c,
1517
+ },
1518
+ [_m],
1519
+ [0],
1520
+ ];
1521
+ schema.TypeRegistry.for(n0).registerError(ExclusionNotFoundException, ExclusionNotFoundException$1);
1487
1522
  var GetAccountSettingRequest = [3, n0, _GASR, 0, [_n], [0]];
1488
1523
  var GetAccountSettingResponse = [3, n0, _GASRe, 0, [_n, _v], [0, 0]];
1489
1524
  var GetAuthorizationTokenRequest = [3, n0, _GATR, 0, [_rIe], [64 | 0]];
@@ -1543,17 +1578,28 @@ var ImageAlreadyExistsException = [
1543
1578
  {
1544
1579
  [_e]: _c,
1545
1580
  },
1546
- [_me],
1581
+ [_m],
1547
1582
  [0],
1548
1583
  ];
1549
1584
  schema.TypeRegistry.for(n0).registerError(ImageAlreadyExistsException, ImageAlreadyExistsException$1);
1585
+ var ImageArchivedException = [
1586
+ -3,
1587
+ n0,
1588
+ _IAE,
1589
+ {
1590
+ [_e]: _c,
1591
+ },
1592
+ [_m],
1593
+ [0],
1594
+ ];
1595
+ schema.TypeRegistry.for(n0).registerError(ImageArchivedException, ImageArchivedException$1);
1550
1596
  var ImageDetail = [
1551
1597
  3,
1552
1598
  n0,
1553
1599
  _ID,
1554
1600
  0,
1555
- [_rI, _rN, _iDm, _iT, _iSIB, _iPA, _iSS, _iSFS, _iMMT, _aMTr, _lRPT],
1556
- [0, 0, 0, 64 | 0, 1, 4, () => ImageScanStatus, () => ImageScanFindingsSummary, 0, 0, 4],
1601
+ [_rI, _rN, _iDm, _iT, _iSIB, _iPA, _iSS, _iSFS, _iMMT, _aMTr, _lRPT, _sMD, _iS, _lAA, _lAAa],
1602
+ [0, 0, 0, 64 | 0, 1, 4, () => ImageScanStatus, () => ImageScanFindingsSummary, 0, 0, 4, 0, 0, 4, 4],
1557
1603
  ];
1558
1604
  var ImageDigestDoesNotMatchException = [
1559
1605
  -3,
@@ -1562,7 +1608,7 @@ var ImageDigestDoesNotMatchException = [
1562
1608
  {
1563
1609
  [_e]: _c,
1564
1610
  },
1565
- [_me],
1611
+ [_m],
1566
1612
  [0],
1567
1613
  ];
1568
1614
  schema.TypeRegistry.for(n0).registerError(ImageDigestDoesNotMatchException, ImageDigestDoesNotMatchException$1);
@@ -1575,10 +1621,18 @@ var ImageNotFoundException = [
1575
1621
  {
1576
1622
  [_e]: _c,
1577
1623
  },
1578
- [_me],
1624
+ [_m],
1579
1625
  [0],
1580
1626
  ];
1581
1627
  schema.TypeRegistry.for(n0).registerError(ImageNotFoundException, ImageNotFoundException$1);
1628
+ var ImageReferrer = [
1629
+ 3,
1630
+ n0,
1631
+ _IR,
1632
+ 0,
1633
+ [_di, _mT, _aTr, _si, _an, _aS],
1634
+ [0, 0, 0, 1, 128 | 0, 0],
1635
+ ];
1582
1636
  var ImageReplicationStatus = [3, n0, _IRS, 0, [_reg, _rI, _st, _fC], [0, 0, 0, 0]];
1583
1637
  var ImageScanFinding = [
1584
1638
  3,
@@ -1599,6 +1653,17 @@ var ImageScanFindings = [
1599
1653
  var ImageScanFindingsSummary = [3, n0, _ISFS, 0, [_iSCA, _vSUA, _fSC], [4, 4, 128 | 1]];
1600
1654
  var ImageScanningConfiguration = [3, n0, _ISC, 0, [_sOP], [2]];
1601
1655
  var ImageScanStatus = [3, n0, _ISS, 0, [_st, _d], [0, 0]];
1656
+ var ImageStorageClassUpdateNotSupportedException = [
1657
+ -3,
1658
+ n0,
1659
+ _ISCUNSE,
1660
+ {
1661
+ [_e]: _c,
1662
+ },
1663
+ [_m],
1664
+ [0],
1665
+ ];
1666
+ schema.TypeRegistry.for(n0).registerError(ImageStorageClassUpdateNotSupportedException, ImageStorageClassUpdateNotSupportedException$1);
1602
1667
  var ImageTagAlreadyExistsException = [
1603
1668
  -3,
1604
1669
  n0,
@@ -1606,7 +1671,7 @@ var ImageTagAlreadyExistsException = [
1606
1671
  {
1607
1672
  [_e]: _c,
1608
1673
  },
1609
- [_me],
1674
+ [_m],
1610
1675
  [0],
1611
1676
  ];
1612
1677
  schema.TypeRegistry.for(n0).registerError(ImageTagAlreadyExistsException, ImageTagAlreadyExistsException$1);
@@ -1620,7 +1685,7 @@ var InvalidLayerException = [
1620
1685
  {
1621
1686
  [_e]: _c,
1622
1687
  },
1623
- [_me],
1688
+ [_m],
1624
1689
  [0],
1625
1690
  ];
1626
1691
  schema.TypeRegistry.for(n0).registerError(InvalidLayerException, InvalidLayerException$1);
@@ -1631,7 +1696,7 @@ var InvalidLayerPartException = [
1631
1696
  {
1632
1697
  [_e]: _c,
1633
1698
  },
1634
- [_rI, _rN, _uI, _lVBR, _me],
1699
+ [_rI, _rN, _uI, _lVBR, _m],
1635
1700
  [0, 0, 0, 1, 0],
1636
1701
  ];
1637
1702
  schema.TypeRegistry.for(n0).registerError(InvalidLayerPartException, InvalidLayerPartException$1);
@@ -1642,7 +1707,7 @@ var InvalidParameterException = [
1642
1707
  {
1643
1708
  [_e]: _c,
1644
1709
  },
1645
- [_me],
1710
+ [_m],
1646
1711
  [0],
1647
1712
  ];
1648
1713
  schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
@@ -1653,7 +1718,7 @@ var InvalidTagParameterException = [
1653
1718
  {
1654
1719
  [_e]: _c,
1655
1720
  },
1656
- [_me],
1721
+ [_m],
1657
1722
  [0],
1658
1723
  ];
1659
1724
  schema.TypeRegistry.for(n0).registerError(InvalidTagParameterException, InvalidTagParameterException$1);
@@ -1664,7 +1729,7 @@ var KmsException = [
1664
1729
  {
1665
1730
  [_e]: _c,
1666
1731
  },
1667
- [_me, _kE],
1732
+ [_m, _kE],
1668
1733
  [0, 0],
1669
1734
  ];
1670
1735
  schema.TypeRegistry.for(n0).registerError(KmsException, KmsException$1);
@@ -1676,7 +1741,7 @@ var LayerAlreadyExistsException = [
1676
1741
  {
1677
1742
  [_e]: _c,
1678
1743
  },
1679
- [_me],
1744
+ [_m],
1680
1745
  [0],
1681
1746
  ];
1682
1747
  schema.TypeRegistry.for(n0).registerError(LayerAlreadyExistsException, LayerAlreadyExistsException$1);
@@ -1688,7 +1753,7 @@ var LayerInaccessibleException = [
1688
1753
  {
1689
1754
  [_e]: _c,
1690
1755
  },
1691
- [_me],
1756
+ [_m],
1692
1757
  [0],
1693
1758
  ];
1694
1759
  schema.TypeRegistry.for(n0).registerError(LayerInaccessibleException, LayerInaccessibleException$1);
@@ -1699,7 +1764,7 @@ var LayerPartTooSmallException = [
1699
1764
  {
1700
1765
  [_e]: _c,
1701
1766
  },
1702
- [_me],
1767
+ [_m],
1703
1768
  [0],
1704
1769
  ];
1705
1770
  schema.TypeRegistry.for(n0).registerError(LayerPartTooSmallException, LayerPartTooSmallException$1);
@@ -1710,7 +1775,7 @@ var LayersNotFoundException = [
1710
1775
  {
1711
1776
  [_e]: _c,
1712
1777
  },
1713
- [_me],
1778
+ [_m],
1714
1779
  [0],
1715
1780
  ];
1716
1781
  schema.TypeRegistry.for(n0).registerError(LayersNotFoundException, LayersNotFoundException$1);
@@ -1721,7 +1786,7 @@ var LifecyclePolicyNotFoundException = [
1721
1786
  {
1722
1787
  [_e]: _c,
1723
1788
  },
1724
- [_me],
1789
+ [_m],
1725
1790
  [0],
1726
1791
  ];
1727
1792
  schema.TypeRegistry.for(n0).registerError(LifecyclePolicyNotFoundException, LifecyclePolicyNotFoundException$1);
@@ -1733,7 +1798,7 @@ var LifecyclePolicyPreviewInProgressException = [
1733
1798
  {
1734
1799
  [_e]: _c,
1735
1800
  },
1736
- [_me],
1801
+ [_m],
1737
1802
  [0],
1738
1803
  ];
1739
1804
  schema.TypeRegistry.for(n0).registerError(LifecyclePolicyPreviewInProgressException, LifecyclePolicyPreviewInProgressException$1);
@@ -1744,7 +1809,7 @@ var LifecyclePolicyPreviewNotFoundException = [
1744
1809
  {
1745
1810
  [_e]: _c,
1746
1811
  },
1747
- [_me],
1812
+ [_m],
1748
1813
  [0],
1749
1814
  ];
1750
1815
  schema.TypeRegistry.for(n0).registerError(LifecyclePolicyPreviewNotFoundException, LifecyclePolicyPreviewNotFoundException$1);
@@ -1753,11 +1818,18 @@ var LifecyclePolicyPreviewResult = [
1753
1818
  n0,
1754
1819
  _LPPR,
1755
1820
  0,
1756
- [_iT, _iDm, _iPA, _ac, _aRP],
1757
- [64 | 0, 0, 4, () => LifecyclePolicyRuleAction, 1],
1821
+ [_iT, _iDm, _iPA, _ac, _aRP, _sCt],
1822
+ [64 | 0, 0, 4, () => LifecyclePolicyRuleAction, 1, 0],
1823
+ ];
1824
+ var LifecyclePolicyPreviewSummary = [
1825
+ 3,
1826
+ n0,
1827
+ _LPPS,
1828
+ 0,
1829
+ [_eITC, _tITC],
1830
+ [1, () => TransitioningImageTotalCounts],
1758
1831
  ];
1759
- var LifecyclePolicyPreviewSummary = [3, n0, _LPPS, 0, [_eITC], [1]];
1760
- var LifecyclePolicyRuleAction = [3, n0, _LPRA, 0, [_ty], [0]];
1832
+ var LifecyclePolicyRuleAction = [3, n0, _LPRA, 0, [_ty, _tSC], [0, 0]];
1761
1833
  var LimitExceededException = [
1762
1834
  -3,
1763
1835
  n0,
@@ -1765,11 +1837,28 @@ var LimitExceededException = [
1765
1837
  {
1766
1838
  [_e]: _c,
1767
1839
  },
1768
- [_me],
1840
+ [_m],
1769
1841
  [0],
1770
1842
  ];
1771
1843
  schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
1772
- var ListImagesFilter = [3, n0, _LIF, 0, [_tS], [0]];
1844
+ var ListImageReferrersFilter = [3, n0, _LIRF, 0, [_aTrt, _aS], [64 | 0, 0]];
1845
+ var ListImageReferrersRequest = [
1846
+ 3,
1847
+ n0,
1848
+ _LIRR,
1849
+ 0,
1850
+ [_rI, _rN, _sI, _fi, _nT, _mR],
1851
+ [0, 0, () => SubjectIdentifier, () => ListImageReferrersFilter, 0, 1],
1852
+ ];
1853
+ var ListImageReferrersResponse = [
1854
+ 3,
1855
+ n0,
1856
+ _LIRRi,
1857
+ 0,
1858
+ [_ref, _nT],
1859
+ [() => ImageReferrerList, 0],
1860
+ ];
1861
+ var ListImagesFilter = [3, n0, _LIF, 0, [_tS, _iS], [0, 0]];
1773
1862
  var ListImagesRequest = [
1774
1863
  3,
1775
1864
  n0,
@@ -1779,6 +1868,15 @@ var ListImagesRequest = [
1779
1868
  [0, 0, 0, 1, () => ListImagesFilter],
1780
1869
  ];
1781
1870
  var ListImagesResponse = [3, n0, _LIRi, 0, [_iI, _nT], [() => ImageIdentifierList, 0]];
1871
+ var ListPullTimeUpdateExclusionsRequest = [3, n0, _LPTUER, 0, [_mR, _nT], [1, 0]];
1872
+ var ListPullTimeUpdateExclusionsResponse = [
1873
+ 3,
1874
+ n0,
1875
+ _LPTUERi,
1876
+ 0,
1877
+ [_pTUE, _nT],
1878
+ [64 | 0, 0],
1879
+ ];
1782
1880
  var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
1783
1881
  var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
1784
1882
  var PackageVulnerabilityDetails = [
@@ -1804,7 +1902,7 @@ var PullThroughCacheRuleAlreadyExistsException = [
1804
1902
  {
1805
1903
  [_e]: _c,
1806
1904
  },
1807
- [_me],
1905
+ [_m],
1808
1906
  [0],
1809
1907
  ];
1810
1908
  schema.TypeRegistry.for(n0).registerError(PullThroughCacheRuleAlreadyExistsException, PullThroughCacheRuleAlreadyExistsException$1);
@@ -1815,7 +1913,7 @@ var PullThroughCacheRuleNotFoundException = [
1815
1913
  {
1816
1914
  [_e]: _c,
1817
1915
  },
1818
- [_me],
1916
+ [_m],
1819
1917
  [0],
1820
1918
  ];
1821
1919
  schema.TypeRegistry.for(n0).registerError(PullThroughCacheRuleNotFoundException, PullThroughCacheRuleNotFoundException$1);
@@ -1906,10 +2004,12 @@ var ReferencedImagesNotFoundException = [
1906
2004
  {
1907
2005
  [_e]: _c,
1908
2006
  },
1909
- [_me],
2007
+ [_m],
1910
2008
  [0],
1911
2009
  ];
1912
2010
  schema.TypeRegistry.for(n0).registerError(ReferencedImagesNotFoundException, ReferencedImagesNotFoundException$1);
2011
+ var RegisterPullTimeUpdateExclusionRequest = [3, n0, _RPTUER, 0, [_pAr], [0]];
2012
+ var RegisterPullTimeUpdateExclusionResponse = [3, n0, _RPTUERe, 0, [_pAr, _cAr], [0, 4]];
1913
2013
  var RegistryPolicyNotFoundException = [
1914
2014
  -3,
1915
2015
  n0,
@@ -1917,7 +2017,7 @@ var RegistryPolicyNotFoundException = [
1917
2017
  {
1918
2018
  [_e]: _c,
1919
2019
  },
1920
- [_me],
2020
+ [_m],
1921
2021
  [0],
1922
2022
  ];
1923
2023
  schema.TypeRegistry.for(n0).registerError(RegistryPolicyNotFoundException, RegistryPolicyNotFoundException$1);
@@ -1973,7 +2073,7 @@ var RepositoryAlreadyExistsException = [
1973
2073
  {
1974
2074
  [_e]: _c,
1975
2075
  },
1976
- [_me],
2076
+ [_m],
1977
2077
  [0],
1978
2078
  ];
1979
2079
  schema.TypeRegistry.for(n0).registerError(RepositoryAlreadyExistsException, RepositoryAlreadyExistsException$1);
@@ -2006,7 +2106,7 @@ var RepositoryNotEmptyException = [
2006
2106
  {
2007
2107
  [_e]: _c,
2008
2108
  },
2009
- [_me],
2109
+ [_m],
2010
2110
  [0],
2011
2111
  ];
2012
2112
  schema.TypeRegistry.for(n0).registerError(RepositoryNotEmptyException, RepositoryNotEmptyException$1);
@@ -2017,7 +2117,7 @@ var RepositoryNotFoundException = [
2017
2117
  {
2018
2118
  [_e]: _c,
2019
2119
  },
2020
- [_me],
2120
+ [_m],
2021
2121
  [0],
2022
2122
  ];
2023
2123
  schema.TypeRegistry.for(n0).registerError(RepositoryNotFoundException, RepositoryNotFoundException$1);
@@ -2028,7 +2128,7 @@ var RepositoryPolicyNotFoundException = [
2028
2128
  {
2029
2129
  [_e]: _c,
2030
2130
  },
2031
- [_me],
2131
+ [_m],
2032
2132
  [0],
2033
2133
  ];
2034
2134
  schema.TypeRegistry.for(n0).registerError(RepositoryPolicyNotFoundException, RepositoryPolicyNotFoundException$1);
@@ -2065,7 +2165,7 @@ var ScanNotFoundException = [
2065
2165
  {
2066
2166
  [_e]: _c,
2067
2167
  },
2068
- [_me],
2168
+ [_m],
2069
2169
  [0],
2070
2170
  ];
2071
2171
  schema.TypeRegistry.for(n0).registerError(ScanNotFoundException, ScanNotFoundException$1);
@@ -2077,7 +2177,7 @@ var SecretNotFoundException = [
2077
2177
  {
2078
2178
  [_e]: _c,
2079
2179
  },
2080
- [_me],
2180
+ [_m],
2081
2181
  [0],
2082
2182
  ];
2083
2183
  schema.TypeRegistry.for(n0).registerError(SecretNotFoundException, SecretNotFoundException$1);
@@ -2088,7 +2188,7 @@ var ServerException = [
2088
2188
  {
2089
2189
  [_e]: _ser,
2090
2190
  },
2091
- [_me],
2191
+ [_m],
2092
2192
  [0],
2093
2193
  ];
2094
2194
  schema.TypeRegistry.for(n0).registerError(ServerException, ServerException$1);
@@ -2119,6 +2219,7 @@ var StartLifecyclePolicyPreviewResponse = [
2119
2219
  [_rI, _rN, _lPT, _st],
2120
2220
  [0, 0, 0, 0],
2121
2221
  ];
2222
+ var SubjectIdentifier = [3, n0, _SI, 0, [_iDm], [0]];
2122
2223
  var Tag = [3, n0, _T, 0, [_K, _V], [0, 0]];
2123
2224
  var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, () => TagList]];
2124
2225
  var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
@@ -2129,7 +2230,7 @@ var TemplateAlreadyExistsException = [
2129
2230
  {
2130
2231
  [_e]: _c,
2131
2232
  },
2132
- [_me],
2233
+ [_m],
2133
2234
  [0],
2134
2235
  ];
2135
2236
  schema.TypeRegistry.for(n0).registerError(TemplateAlreadyExistsException, TemplateAlreadyExistsException$1);
@@ -2140,7 +2241,7 @@ var TemplateNotFoundException = [
2140
2241
  {
2141
2242
  [_e]: _c,
2142
2243
  },
2143
- [_me],
2244
+ [_m],
2144
2245
  [0],
2145
2246
  ];
2146
2247
  schema.TypeRegistry.for(n0).registerError(TemplateNotFoundException, TemplateNotFoundException$1);
@@ -2151,10 +2252,11 @@ var TooManyTagsException = [
2151
2252
  {
2152
2253
  [_e]: _c,
2153
2254
  },
2154
- [_me],
2255
+ [_m],
2155
2256
  [0],
2156
2257
  ];
2157
2258
  schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
2259
+ var TransitioningImageTotalCount = [3, n0, _TITC, 0, [_tSC, _iTC], [0, 1]];
2158
2260
  var UnableToAccessSecretException = [
2159
2261
  -3,
2160
2262
  n0,
@@ -2162,7 +2264,7 @@ var UnableToAccessSecretException = [
2162
2264
  {
2163
2265
  [_e]: _c,
2164
2266
  },
2165
- [_me],
2267
+ [_m],
2166
2268
  [0],
2167
2269
  ];
2168
2270
  schema.TypeRegistry.for(n0).registerError(UnableToAccessSecretException, UnableToAccessSecretException$1);
@@ -2173,7 +2275,7 @@ var UnableToDecryptSecretValueException = [
2173
2275
  {
2174
2276
  [_e]: _c,
2175
2277
  },
2176
- [_me],
2278
+ [_m],
2177
2279
  [0],
2178
2280
  ];
2179
2281
  schema.TypeRegistry.for(n0).registerError(UnableToDecryptSecretValueException, UnableToDecryptSecretValueException$1);
@@ -2184,7 +2286,7 @@ var UnableToGetUpstreamImageException = [
2184
2286
  {
2185
2287
  [_e]: _c,
2186
2288
  },
2187
- [_me],
2289
+ [_m],
2188
2290
  [0],
2189
2291
  ];
2190
2292
  schema.TypeRegistry.for(n0).registerError(UnableToGetUpstreamImageException, UnableToGetUpstreamImageException$1);
@@ -2195,7 +2297,7 @@ var UnableToGetUpstreamLayerException = [
2195
2297
  {
2196
2298
  [_e]: _c,
2197
2299
  },
2198
- [_me],
2300
+ [_m],
2199
2301
  [0],
2200
2302
  ];
2201
2303
  schema.TypeRegistry.for(n0).registerError(UnableToGetUpstreamLayerException, UnableToGetUpstreamLayerException$1);
@@ -2206,7 +2308,7 @@ var UnsupportedImageTypeException = [
2206
2308
  {
2207
2309
  [_e]: _c,
2208
2310
  },
2209
- [_me],
2311
+ [_m],
2210
2312
  [0],
2211
2313
  ];
2212
2314
  schema.TypeRegistry.for(n0).registerError(UnsupportedImageTypeException, UnsupportedImageTypeException$1);
@@ -2217,12 +2319,28 @@ var UnsupportedUpstreamRegistryException = [
2217
2319
  {
2218
2320
  [_e]: _c,
2219
2321
  },
2220
- [_me],
2322
+ [_m],
2221
2323
  [0],
2222
2324
  ];
2223
2325
  schema.TypeRegistry.for(n0).registerError(UnsupportedUpstreamRegistryException, UnsupportedUpstreamRegistryException$1);
2224
2326
  var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
2225
2327
  var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
2328
+ var UpdateImageStorageClassRequest = [
2329
+ 3,
2330
+ n0,
2331
+ _UISCR,
2332
+ 0,
2333
+ [_rI, _rN, _iIm, _tSC],
2334
+ [0, 0, () => ImageIdentifier, 0],
2335
+ ];
2336
+ var UpdateImageStorageClassResponse = [
2337
+ 3,
2338
+ n0,
2339
+ _UISCRp,
2340
+ 0,
2341
+ [_rI, _rN, _iIm, _iS],
2342
+ [0, 0, () => ImageIdentifier, 0],
2343
+ ];
2226
2344
  var UpdatePullThroughCacheRuleRequest = [
2227
2345
  3,
2228
2346
  n0,
@@ -2282,7 +2400,7 @@ var UploadNotFoundException = [
2282
2400
  {
2283
2401
  [_e]: _c,
2284
2402
  },
2285
- [_me],
2403
+ [_m],
2286
2404
  [0],
2287
2405
  ];
2288
2406
  schema.TypeRegistry.for(n0).registerError(UploadNotFoundException, UploadNotFoundException$1);
@@ -2303,7 +2421,7 @@ var ValidationException = [
2303
2421
  [_e]: _c,
2304
2422
  [_hE]: 400,
2305
2423
  },
2306
- [_me],
2424
+ [_m],
2307
2425
  [0],
2308
2426
  ];
2309
2427
  schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
@@ -2326,6 +2444,7 @@ var ImageDetailList = [1, n0, _IDL, 0, () => ImageDetail];
2326
2444
  var ImageFailureList = [1, n0, _IFL, 0, () => ImageFailure];
2327
2445
  var ImageIdentifierList = [1, n0, _IIL, 0, () => ImageIdentifier];
2328
2446
  var ImageList = [1, n0, _IL, 0, () => Image];
2447
+ var ImageReferrerList = [1, n0, _IRL, 0, () => ImageReferrer];
2329
2448
  var ImageReplicationStatusList = [1, n0, _IRSL, 0, () => ImageReplicationStatus];
2330
2449
  var ImageScanFindingList = [1, n0, _ISFL, 0, () => ImageScanFinding];
2331
2450
  var ImageTagMutabilityExclusionFilters = [
@@ -2362,6 +2481,7 @@ var RepositoryScanningConfigurationList = [
2362
2481
  var ResourceList = [1, n0, _RLe, 0, () => Resource];
2363
2482
  var ScanningRepositoryFilterList = [1, n0, _SRFL, 0, () => ScanningRepositoryFilter];
2364
2483
  var TagList = [1, n0, _TL, 0, () => Tag];
2484
+ var TransitioningImageTotalCounts = [1, n0, _TITCr, 0, () => TransitioningImageTotalCount];
2365
2485
  var VulnerablePackagesList = [1, n0, _VPL, 0, () => VulnerablePackage];
2366
2486
  var BatchCheckLayerAvailability = [
2367
2487
  9,
@@ -2475,6 +2595,14 @@ var DeleteRepositoryPolicy = [
2475
2595
  () => DeleteRepositoryPolicyRequest,
2476
2596
  () => DeleteRepositoryPolicyResponse,
2477
2597
  ];
2598
+ var DeregisterPullTimeUpdateExclusion = [
2599
+ 9,
2600
+ n0,
2601
+ _DPTUE,
2602
+ 0,
2603
+ () => DeregisterPullTimeUpdateExclusionRequest,
2604
+ () => DeregisterPullTimeUpdateExclusionResponse,
2605
+ ];
2478
2606
  var DescribeImageReplicationStatus = [
2479
2607
  9,
2480
2608
  n0,
@@ -2603,7 +2731,23 @@ var InitiateLayerUpload = [
2603
2731
  () => InitiateLayerUploadRequest,
2604
2732
  () => InitiateLayerUploadResponse,
2605
2733
  ];
2734
+ var ListImageReferrers = [
2735
+ 9,
2736
+ n0,
2737
+ _LIRis,
2738
+ 0,
2739
+ () => ListImageReferrersRequest,
2740
+ () => ListImageReferrersResponse,
2741
+ ];
2606
2742
  var ListImages = [9, n0, _LI, 0, () => ListImagesRequest, () => ListImagesResponse];
2743
+ var ListPullTimeUpdateExclusions = [
2744
+ 9,
2745
+ n0,
2746
+ _LPTUE,
2747
+ 0,
2748
+ () => ListPullTimeUpdateExclusionsRequest,
2749
+ () => ListPullTimeUpdateExclusionsResponse,
2750
+ ];
2607
2751
  var ListTagsForResource = [
2608
2752
  9,
2609
2753
  n0,
@@ -2669,6 +2813,14 @@ var PutReplicationConfiguration = [
2669
2813
  () => PutReplicationConfigurationRequest,
2670
2814
  () => PutReplicationConfigurationResponse,
2671
2815
  ];
2816
+ var RegisterPullTimeUpdateExclusion = [
2817
+ 9,
2818
+ n0,
2819
+ _RPTUE,
2820
+ 0,
2821
+ () => RegisterPullTimeUpdateExclusionRequest,
2822
+ () => RegisterPullTimeUpdateExclusionResponse,
2823
+ ];
2672
2824
  var SetRepositoryPolicy = [
2673
2825
  9,
2674
2826
  n0,
@@ -2702,6 +2854,14 @@ var UntagResource = [
2702
2854
  () => UntagResourceRequest,
2703
2855
  () => UntagResourceResponse,
2704
2856
  ];
2857
+ var UpdateImageStorageClass = [
2858
+ 9,
2859
+ n0,
2860
+ _UISC,
2861
+ 0,
2862
+ () => UpdateImageStorageClassRequest,
2863
+ () => UpdateImageStorageClassResponse,
2864
+ ];
2705
2865
  var UpdatePullThroughCacheRule = [
2706
2866
  9,
2707
2867
  n0,
@@ -2903,6 +3063,18 @@ class DeleteRepositoryPolicyCommand extends smithyClient.Command
2903
3063
  .build() {
2904
3064
  }
2905
3065
 
3066
+ class DeregisterPullTimeUpdateExclusionCommand extends smithyClient.Command
3067
+ .classBuilder()
3068
+ .ep(commonParams)
3069
+ .m(function (Command, cs, config, o) {
3070
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3071
+ })
3072
+ .s("AmazonEC2ContainerRegistry_V20150921", "DeregisterPullTimeUpdateExclusion", {})
3073
+ .n("ECRClient", "DeregisterPullTimeUpdateExclusionCommand")
3074
+ .sc(DeregisterPullTimeUpdateExclusion)
3075
+ .build() {
3076
+ }
3077
+
2906
3078
  class DescribeImageReplicationStatusCommand extends smithyClient.Command
2907
3079
  .classBuilder()
2908
3080
  .ep(commonParams)
@@ -3095,6 +3267,18 @@ class InitiateLayerUploadCommand extends smithyClient.Command
3095
3267
  .build() {
3096
3268
  }
3097
3269
 
3270
+ class ListImageReferrersCommand extends smithyClient.Command
3271
+ .classBuilder()
3272
+ .ep(commonParams)
3273
+ .m(function (Command, cs, config, o) {
3274
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3275
+ })
3276
+ .s("AmazonEC2ContainerRegistry_V20150921", "ListImageReferrers", {})
3277
+ .n("ECRClient", "ListImageReferrersCommand")
3278
+ .sc(ListImageReferrers)
3279
+ .build() {
3280
+ }
3281
+
3098
3282
  class ListImagesCommand extends smithyClient.Command
3099
3283
  .classBuilder()
3100
3284
  .ep(commonParams)
@@ -3107,6 +3291,18 @@ class ListImagesCommand extends smithyClient.Command
3107
3291
  .build() {
3108
3292
  }
3109
3293
 
3294
+ class ListPullTimeUpdateExclusionsCommand extends smithyClient.Command
3295
+ .classBuilder()
3296
+ .ep(commonParams)
3297
+ .m(function (Command, cs, config, o) {
3298
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3299
+ })
3300
+ .s("AmazonEC2ContainerRegistry_V20150921", "ListPullTimeUpdateExclusions", {})
3301
+ .n("ECRClient", "ListPullTimeUpdateExclusionsCommand")
3302
+ .sc(ListPullTimeUpdateExclusions)
3303
+ .build() {
3304
+ }
3305
+
3110
3306
  class ListTagsForResourceCommand extends smithyClient.Command
3111
3307
  .classBuilder()
3112
3308
  .ep(commonParams)
@@ -3215,6 +3411,18 @@ class PutReplicationConfigurationCommand extends smithyClient.Command
3215
3411
  .build() {
3216
3412
  }
3217
3413
 
3414
+ class RegisterPullTimeUpdateExclusionCommand extends smithyClient.Command
3415
+ .classBuilder()
3416
+ .ep(commonParams)
3417
+ .m(function (Command, cs, config, o) {
3418
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3419
+ })
3420
+ .s("AmazonEC2ContainerRegistry_V20150921", "RegisterPullTimeUpdateExclusion", {})
3421
+ .n("ECRClient", "RegisterPullTimeUpdateExclusionCommand")
3422
+ .sc(RegisterPullTimeUpdateExclusion)
3423
+ .build() {
3424
+ }
3425
+
3218
3426
  class SetRepositoryPolicyCommand extends smithyClient.Command
3219
3427
  .classBuilder()
3220
3428
  .ep(commonParams)
@@ -3275,6 +3483,18 @@ class UntagResourceCommand extends smithyClient.Command
3275
3483
  .build() {
3276
3484
  }
3277
3485
 
3486
+ class UpdateImageStorageClassCommand extends smithyClient.Command
3487
+ .classBuilder()
3488
+ .ep(commonParams)
3489
+ .m(function (Command, cs, config, o) {
3490
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3491
+ })
3492
+ .s("AmazonEC2ContainerRegistry_V20150921", "UpdateImageStorageClass", {})
3493
+ .n("ECRClient", "UpdateImageStorageClassCommand")
3494
+ .sc(UpdateImageStorageClass)
3495
+ .build() {
3496
+ }
3497
+
3278
3498
  class UpdatePullThroughCacheRuleCommand extends smithyClient.Command
3279
3499
  .classBuilder()
3280
3500
  .ep(commonParams)
@@ -3338,6 +3558,7 @@ const commands = {
3338
3558
  DeleteRepositoryCommand,
3339
3559
  DeleteRepositoryCreationTemplateCommand,
3340
3560
  DeleteRepositoryPolicyCommand,
3561
+ DeregisterPullTimeUpdateExclusionCommand,
3341
3562
  DescribeImageReplicationStatusCommand,
3342
3563
  DescribeImagesCommand,
3343
3564
  DescribeImageScanFindingsCommand,
@@ -3354,7 +3575,9 @@ const commands = {
3354
3575
  GetRegistryScanningConfigurationCommand,
3355
3576
  GetRepositoryPolicyCommand,
3356
3577
  InitiateLayerUploadCommand,
3578
+ ListImageReferrersCommand,
3357
3579
  ListImagesCommand,
3580
+ ListPullTimeUpdateExclusionsCommand,
3358
3581
  ListTagsForResourceCommand,
3359
3582
  PutAccountSettingCommand,
3360
3583
  PutImageCommand,
@@ -3364,11 +3587,13 @@ const commands = {
3364
3587
  PutRegistryPolicyCommand,
3365
3588
  PutRegistryScanningConfigurationCommand,
3366
3589
  PutReplicationConfigurationCommand,
3590
+ RegisterPullTimeUpdateExclusionCommand,
3367
3591
  SetRepositoryPolicyCommand,
3368
3592
  StartImageScanCommand,
3369
3593
  StartLifecyclePolicyPreviewCommand,
3370
3594
  TagResourceCommand,
3371
3595
  UntagResourceCommand,
3596
+ UpdateImageStorageClassCommand,
3372
3597
  UpdatePullThroughCacheRuleCommand,
3373
3598
  UpdateRepositoryCreationTemplateCommand,
3374
3599
  UploadLayerPartCommand,
@@ -3470,6 +3695,148 @@ const waitUntilLifecyclePolicyPreviewComplete = async (params, input) => {
3470
3695
  return utilWaiter.checkExceptions(result);
3471
3696
  };
3472
3697
 
3698
+ const LayerFailureCode = {
3699
+ InvalidLayerDigest: "InvalidLayerDigest",
3700
+ MissingLayerDigest: "MissingLayerDigest",
3701
+ };
3702
+ const LayerAvailability = {
3703
+ ARCHIVED: "ARCHIVED",
3704
+ AVAILABLE: "AVAILABLE",
3705
+ UNAVAILABLE: "UNAVAILABLE",
3706
+ };
3707
+ const ImageFailureCode = {
3708
+ ImageInaccessible: "ImageInaccessible",
3709
+ ImageNotFound: "ImageNotFound",
3710
+ ImageReferencedByManifestList: "ImageReferencedByManifestList",
3711
+ ImageTagDoesNotMatchDigest: "ImageTagDoesNotMatchDigest",
3712
+ InvalidImageDigest: "InvalidImageDigest",
3713
+ InvalidImageTag: "InvalidImageTag",
3714
+ KmsError: "KmsError",
3715
+ MissingDigestAndTag: "MissingDigestAndTag",
3716
+ UpstreamAccessDenied: "UpstreamAccessDenied",
3717
+ UpstreamTooManyRequests: "UpstreamTooManyRequests",
3718
+ UpstreamUnavailable: "UpstreamUnavailable",
3719
+ };
3720
+ const ScanningConfigurationFailureCode = {
3721
+ REPOSITORY_NOT_FOUND: "REPOSITORY_NOT_FOUND",
3722
+ };
3723
+ const ScanningRepositoryFilterType = {
3724
+ WILDCARD: "WILDCARD",
3725
+ };
3726
+ const ScanFrequency = {
3727
+ CONTINUOUS_SCAN: "CONTINUOUS_SCAN",
3728
+ MANUAL: "MANUAL",
3729
+ SCAN_ON_PUSH: "SCAN_ON_PUSH",
3730
+ };
3731
+ const UpstreamRegistry = {
3732
+ AzureContainerRegistry: "azure-container-registry",
3733
+ DockerHub: "docker-hub",
3734
+ Ecr: "ecr",
3735
+ EcrPublic: "ecr-public",
3736
+ GitHubContainerRegistry: "github-container-registry",
3737
+ GitLabContainerRegistry: "gitlab-container-registry",
3738
+ K8s: "k8s",
3739
+ Quay: "quay",
3740
+ };
3741
+ const EncryptionType = {
3742
+ AES256: "AES256",
3743
+ KMS: "KMS",
3744
+ KMS_DSSE: "KMS_DSSE",
3745
+ };
3746
+ const ImageTagMutability = {
3747
+ IMMUTABLE: "IMMUTABLE",
3748
+ IMMUTABLE_WITH_EXCLUSION: "IMMUTABLE_WITH_EXCLUSION",
3749
+ MUTABLE: "MUTABLE",
3750
+ MUTABLE_WITH_EXCLUSION: "MUTABLE_WITH_EXCLUSION",
3751
+ };
3752
+ const ImageTagMutabilityExclusionFilterType = {
3753
+ WILDCARD: "WILDCARD",
3754
+ };
3755
+ const RCTAppliedFor = {
3756
+ PULL_THROUGH_CACHE: "PULL_THROUGH_CACHE",
3757
+ REPLICATION: "REPLICATION",
3758
+ };
3759
+ const ReplicationStatus = {
3760
+ COMPLETE: "COMPLETE",
3761
+ FAILED: "FAILED",
3762
+ IN_PROGRESS: "IN_PROGRESS",
3763
+ };
3764
+ const ImageStatusFilter = {
3765
+ ACTIVATING: "ACTIVATING",
3766
+ ACTIVE: "ACTIVE",
3767
+ ANY: "ANY",
3768
+ ARCHIVED: "ARCHIVED",
3769
+ };
3770
+ const TagStatus = {
3771
+ ANY: "ANY",
3772
+ TAGGED: "TAGGED",
3773
+ UNTAGGED: "UNTAGGED",
3774
+ };
3775
+ const FindingSeverity = {
3776
+ CRITICAL: "CRITICAL",
3777
+ HIGH: "HIGH",
3778
+ INFORMATIONAL: "INFORMATIONAL",
3779
+ LOW: "LOW",
3780
+ MEDIUM: "MEDIUM",
3781
+ UNDEFINED: "UNDEFINED",
3782
+ };
3783
+ const ScanStatus = {
3784
+ ACTIVE: "ACTIVE",
3785
+ COMPLETE: "COMPLETE",
3786
+ FAILED: "FAILED",
3787
+ FINDINGS_UNAVAILABLE: "FINDINGS_UNAVAILABLE",
3788
+ IMAGE_ARCHIVED: "IMAGE_ARCHIVED",
3789
+ IN_PROGRESS: "IN_PROGRESS",
3790
+ LIMIT_EXCEEDED: "LIMIT_EXCEEDED",
3791
+ PENDING: "PENDING",
3792
+ SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",
3793
+ UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE",
3794
+ };
3795
+ const ImageStatus = {
3796
+ ACTIVATING: "ACTIVATING",
3797
+ ACTIVE: "ACTIVE",
3798
+ ARCHIVED: "ARCHIVED",
3799
+ };
3800
+ const RepositoryFilterType = {
3801
+ PREFIX_MATCH: "PREFIX_MATCH",
3802
+ };
3803
+ const LifecyclePolicyTargetStorageClass = {
3804
+ ARCHIVE: "ARCHIVE",
3805
+ };
3806
+ const ImageActionType = {
3807
+ EXPIRE: "EXPIRE",
3808
+ TRANSITION: "TRANSITION",
3809
+ };
3810
+ const LifecyclePolicyStorageClass = {
3811
+ ARCHIVE: "ARCHIVE",
3812
+ STANDARD: "STANDARD",
3813
+ };
3814
+ const LifecyclePolicyPreviewStatus = {
3815
+ COMPLETE: "COMPLETE",
3816
+ EXPIRED: "EXPIRED",
3817
+ FAILED: "FAILED",
3818
+ IN_PROGRESS: "IN_PROGRESS",
3819
+ };
3820
+ const ScanType = {
3821
+ BASIC: "BASIC",
3822
+ ENHANCED: "ENHANCED",
3823
+ };
3824
+ const ArtifactStatusFilter = {
3825
+ ACTIVATING: "ACTIVATING",
3826
+ ACTIVE: "ACTIVE",
3827
+ ANY: "ANY",
3828
+ ARCHIVED: "ARCHIVED",
3829
+ };
3830
+ const ArtifactStatus = {
3831
+ ACTIVATING: "ACTIVATING",
3832
+ ACTIVE: "ACTIVE",
3833
+ ARCHIVED: "ARCHIVED",
3834
+ };
3835
+ const TargetStorageClass = {
3836
+ ARCHIVE: "ARCHIVE",
3837
+ STANDARD: "STANDARD",
3838
+ };
3839
+
3473
3840
  Object.defineProperty(exports, "$Command", {
3474
3841
  enumerable: true,
3475
3842
  get: function () { return smithyClient.Command; }
@@ -3478,10 +3845,13 @@ Object.defineProperty(exports, "__Client", {
3478
3845
  enumerable: true,
3479
3846
  get: function () { return smithyClient.Client; }
3480
3847
  });
3848
+ exports.ArtifactStatus = ArtifactStatus;
3849
+ exports.ArtifactStatusFilter = ArtifactStatusFilter;
3481
3850
  exports.BatchCheckLayerAvailabilityCommand = BatchCheckLayerAvailabilityCommand;
3482
3851
  exports.BatchDeleteImageCommand = BatchDeleteImageCommand;
3483
3852
  exports.BatchGetImageCommand = BatchGetImageCommand;
3484
3853
  exports.BatchGetRepositoryScanningConfigurationCommand = BatchGetRepositoryScanningConfigurationCommand;
3854
+ exports.BlockedByOrganizationPolicyException = BlockedByOrganizationPolicyException$1;
3485
3855
  exports.CompleteLayerUploadCommand = CompleteLayerUploadCommand;
3486
3856
  exports.CreatePullThroughCacheRuleCommand = CreatePullThroughCacheRuleCommand;
3487
3857
  exports.CreateRepositoryCommand = CreateRepositoryCommand;
@@ -3492,6 +3862,7 @@ exports.DeleteRegistryPolicyCommand = DeleteRegistryPolicyCommand;
3492
3862
  exports.DeleteRepositoryCommand = DeleteRepositoryCommand;
3493
3863
  exports.DeleteRepositoryCreationTemplateCommand = DeleteRepositoryCreationTemplateCommand;
3494
3864
  exports.DeleteRepositoryPolicyCommand = DeleteRepositoryPolicyCommand;
3865
+ exports.DeregisterPullTimeUpdateExclusionCommand = DeregisterPullTimeUpdateExclusionCommand;
3495
3866
  exports.DescribeImageReplicationStatusCommand = DescribeImageReplicationStatusCommand;
3496
3867
  exports.DescribeImageScanFindingsCommand = DescribeImageScanFindingsCommand;
3497
3868
  exports.DescribeImagesCommand = DescribeImagesCommand;
@@ -3504,6 +3875,8 @@ exports.ECRClient = ECRClient;
3504
3875
  exports.ECRServiceException = ECRServiceException$1;
3505
3876
  exports.EmptyUploadException = EmptyUploadException$1;
3506
3877
  exports.EncryptionType = EncryptionType;
3878
+ exports.ExclusionAlreadyExistsException = ExclusionAlreadyExistsException$1;
3879
+ exports.ExclusionNotFoundException = ExclusionNotFoundException$1;
3507
3880
  exports.FindingSeverity = FindingSeverity;
3508
3881
  exports.GetAccountSettingCommand = GetAccountSettingCommand;
3509
3882
  exports.GetAuthorizationTokenCommand = GetAuthorizationTokenCommand;
@@ -3515,9 +3888,13 @@ exports.GetRegistryScanningConfigurationCommand = GetRegistryScanningConfigurati
3515
3888
  exports.GetRepositoryPolicyCommand = GetRepositoryPolicyCommand;
3516
3889
  exports.ImageActionType = ImageActionType;
3517
3890
  exports.ImageAlreadyExistsException = ImageAlreadyExistsException$1;
3891
+ exports.ImageArchivedException = ImageArchivedException$1;
3518
3892
  exports.ImageDigestDoesNotMatchException = ImageDigestDoesNotMatchException$1;
3519
3893
  exports.ImageFailureCode = ImageFailureCode;
3520
3894
  exports.ImageNotFoundException = ImageNotFoundException$1;
3895
+ exports.ImageStatus = ImageStatus;
3896
+ exports.ImageStatusFilter = ImageStatusFilter;
3897
+ exports.ImageStorageClassUpdateNotSupportedException = ImageStorageClassUpdateNotSupportedException$1;
3521
3898
  exports.ImageTagAlreadyExistsException = ImageTagAlreadyExistsException$1;
3522
3899
  exports.ImageTagMutability = ImageTagMutability;
3523
3900
  exports.ImageTagMutabilityExclusionFilterType = ImageTagMutabilityExclusionFilterType;
@@ -3537,8 +3914,12 @@ exports.LifecyclePolicyNotFoundException = LifecyclePolicyNotFoundException$1;
3537
3914
  exports.LifecyclePolicyPreviewInProgressException = LifecyclePolicyPreviewInProgressException$1;
3538
3915
  exports.LifecyclePolicyPreviewNotFoundException = LifecyclePolicyPreviewNotFoundException$1;
3539
3916
  exports.LifecyclePolicyPreviewStatus = LifecyclePolicyPreviewStatus;
3917
+ exports.LifecyclePolicyStorageClass = LifecyclePolicyStorageClass;
3918
+ exports.LifecyclePolicyTargetStorageClass = LifecyclePolicyTargetStorageClass;
3540
3919
  exports.LimitExceededException = LimitExceededException$1;
3920
+ exports.ListImageReferrersCommand = ListImageReferrersCommand;
3541
3921
  exports.ListImagesCommand = ListImagesCommand;
3922
+ exports.ListPullTimeUpdateExclusionsCommand = ListPullTimeUpdateExclusionsCommand;
3542
3923
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3543
3924
  exports.PullThroughCacheRuleAlreadyExistsException = PullThroughCacheRuleAlreadyExistsException$1;
3544
3925
  exports.PullThroughCacheRuleNotFoundException = PullThroughCacheRuleNotFoundException$1;
@@ -3552,6 +3933,7 @@ exports.PutRegistryScanningConfigurationCommand = PutRegistryScanningConfigurati
3552
3933
  exports.PutReplicationConfigurationCommand = PutReplicationConfigurationCommand;
3553
3934
  exports.RCTAppliedFor = RCTAppliedFor;
3554
3935
  exports.ReferencedImagesNotFoundException = ReferencedImagesNotFoundException$1;
3936
+ exports.RegisterPullTimeUpdateExclusionCommand = RegisterPullTimeUpdateExclusionCommand;
3555
3937
  exports.RegistryPolicyNotFoundException = RegistryPolicyNotFoundException$1;
3556
3938
  exports.ReplicationStatus = ReplicationStatus;
3557
3939
  exports.RepositoryAlreadyExistsException = RepositoryAlreadyExistsException$1;
@@ -3572,6 +3954,7 @@ exports.StartImageScanCommand = StartImageScanCommand;
3572
3954
  exports.StartLifecyclePolicyPreviewCommand = StartLifecyclePolicyPreviewCommand;
3573
3955
  exports.TagResourceCommand = TagResourceCommand;
3574
3956
  exports.TagStatus = TagStatus;
3957
+ exports.TargetStorageClass = TargetStorageClass;
3575
3958
  exports.TemplateAlreadyExistsException = TemplateAlreadyExistsException$1;
3576
3959
  exports.TemplateNotFoundException = TemplateNotFoundException$1;
3577
3960
  exports.TooManyTagsException = TooManyTagsException$1;
@@ -3582,6 +3965,7 @@ exports.UnableToGetUpstreamLayerException = UnableToGetUpstreamLayerException$1;
3582
3965
  exports.UnsupportedImageTypeException = UnsupportedImageTypeException$1;
3583
3966
  exports.UnsupportedUpstreamRegistryException = UnsupportedUpstreamRegistryException$1;
3584
3967
  exports.UntagResourceCommand = UntagResourceCommand;
3968
+ exports.UpdateImageStorageClassCommand = UpdateImageStorageClassCommand;
3585
3969
  exports.UpdatePullThroughCacheRuleCommand = UpdatePullThroughCacheRuleCommand;
3586
3970
  exports.UpdateRepositoryCreationTemplateCommand = UpdateRepositoryCreationTemplateCommand;
3587
3971
  exports.UploadLayerPartCommand = UploadLayerPartCommand;