@aws-sdk/client-ecr 3.934.0 → 3.935.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 +12 -12
  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
@@ -12,6 +12,7 @@ export * from "./DeleteRegistryPolicyCommand";
12
12
  export * from "./DeleteRepositoryCommand";
13
13
  export * from "./DeleteRepositoryCreationTemplateCommand";
14
14
  export * from "./DeleteRepositoryPolicyCommand";
15
+ export * from "./DeregisterPullTimeUpdateExclusionCommand";
15
16
  export * from "./DescribeImageReplicationStatusCommand";
16
17
  export * from "./DescribeImageScanFindingsCommand";
17
18
  export * from "./DescribeImagesCommand";
@@ -28,7 +29,9 @@ export * from "./GetRegistryPolicyCommand";
28
29
  export * from "./GetRegistryScanningConfigurationCommand";
29
30
  export * from "./GetRepositoryPolicyCommand";
30
31
  export * from "./InitiateLayerUploadCommand";
32
+ export * from "./ListImageReferrersCommand";
31
33
  export * from "./ListImagesCommand";
34
+ export * from "./ListPullTimeUpdateExclusionsCommand";
32
35
  export * from "./ListTagsForResourceCommand";
33
36
  export * from "./PutAccountSettingCommand";
34
37
  export * from "./PutImageCommand";
@@ -38,11 +41,13 @@ export * from "./PutLifecyclePolicyCommand";
38
41
  export * from "./PutRegistryPolicyCommand";
39
42
  export * from "./PutRegistryScanningConfigurationCommand";
40
43
  export * from "./PutReplicationConfigurationCommand";
44
+ export * from "./RegisterPullTimeUpdateExclusionCommand";
41
45
  export * from "./SetRepositoryPolicyCommand";
42
46
  export * from "./StartImageScanCommand";
43
47
  export * from "./StartLifecyclePolicyPreviewCommand";
44
48
  export * from "./TagResourceCommand";
45
49
  export * from "./UntagResourceCommand";
50
+ export * from "./UpdateImageStorageClassCommand";
46
51
  export * from "./UpdatePullThroughCacheRuleCommand";
47
52
  export * from "./UpdateRepositoryCreationTemplateCommand";
48
53
  export * from "./UploadLayerPartCommand";
@@ -6,5 +6,7 @@ export { ECRExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { ECRServiceException } from "./models/ECRServiceException";
@@ -0,0 +1,187 @@
1
+ export declare const LayerFailureCode: {
2
+ readonly InvalidLayerDigest: "InvalidLayerDigest";
3
+ readonly MissingLayerDigest: "MissingLayerDigest";
4
+ };
5
+ export type LayerFailureCode =
6
+ (typeof LayerFailureCode)[keyof typeof LayerFailureCode];
7
+ export declare const LayerAvailability: {
8
+ readonly ARCHIVED: "ARCHIVED";
9
+ readonly AVAILABLE: "AVAILABLE";
10
+ readonly UNAVAILABLE: "UNAVAILABLE";
11
+ };
12
+ export type LayerAvailability =
13
+ (typeof LayerAvailability)[keyof typeof LayerAvailability];
14
+ export declare const ImageFailureCode: {
15
+ readonly ImageInaccessible: "ImageInaccessible";
16
+ readonly ImageNotFound: "ImageNotFound";
17
+ readonly ImageReferencedByManifestList: "ImageReferencedByManifestList";
18
+ readonly ImageTagDoesNotMatchDigest: "ImageTagDoesNotMatchDigest";
19
+ readonly InvalidImageDigest: "InvalidImageDigest";
20
+ readonly InvalidImageTag: "InvalidImageTag";
21
+ readonly KmsError: "KmsError";
22
+ readonly MissingDigestAndTag: "MissingDigestAndTag";
23
+ readonly UpstreamAccessDenied: "UpstreamAccessDenied";
24
+ readonly UpstreamTooManyRequests: "UpstreamTooManyRequests";
25
+ readonly UpstreamUnavailable: "UpstreamUnavailable";
26
+ };
27
+ export type ImageFailureCode =
28
+ (typeof ImageFailureCode)[keyof typeof ImageFailureCode];
29
+ export declare const ScanningConfigurationFailureCode: {
30
+ readonly REPOSITORY_NOT_FOUND: "REPOSITORY_NOT_FOUND";
31
+ };
32
+ export type ScanningConfigurationFailureCode =
33
+ (typeof ScanningConfigurationFailureCode)[keyof typeof ScanningConfigurationFailureCode];
34
+ export declare const ScanningRepositoryFilterType: {
35
+ readonly WILDCARD: "WILDCARD";
36
+ };
37
+ export type ScanningRepositoryFilterType =
38
+ (typeof ScanningRepositoryFilterType)[keyof typeof ScanningRepositoryFilterType];
39
+ export declare const ScanFrequency: {
40
+ readonly CONTINUOUS_SCAN: "CONTINUOUS_SCAN";
41
+ readonly MANUAL: "MANUAL";
42
+ readonly SCAN_ON_PUSH: "SCAN_ON_PUSH";
43
+ };
44
+ export type ScanFrequency = (typeof ScanFrequency)[keyof typeof ScanFrequency];
45
+ export declare const UpstreamRegistry: {
46
+ readonly AzureContainerRegistry: "azure-container-registry";
47
+ readonly DockerHub: "docker-hub";
48
+ readonly Ecr: "ecr";
49
+ readonly EcrPublic: "ecr-public";
50
+ readonly GitHubContainerRegistry: "github-container-registry";
51
+ readonly GitLabContainerRegistry: "gitlab-container-registry";
52
+ readonly K8s: "k8s";
53
+ readonly Quay: "quay";
54
+ };
55
+ export type UpstreamRegistry =
56
+ (typeof UpstreamRegistry)[keyof typeof UpstreamRegistry];
57
+ export declare const EncryptionType: {
58
+ readonly AES256: "AES256";
59
+ readonly KMS: "KMS";
60
+ readonly KMS_DSSE: "KMS_DSSE";
61
+ };
62
+ export type EncryptionType =
63
+ (typeof EncryptionType)[keyof typeof EncryptionType];
64
+ export declare const ImageTagMutability: {
65
+ readonly IMMUTABLE: "IMMUTABLE";
66
+ readonly IMMUTABLE_WITH_EXCLUSION: "IMMUTABLE_WITH_EXCLUSION";
67
+ readonly MUTABLE: "MUTABLE";
68
+ readonly MUTABLE_WITH_EXCLUSION: "MUTABLE_WITH_EXCLUSION";
69
+ };
70
+ export type ImageTagMutability =
71
+ (typeof ImageTagMutability)[keyof typeof ImageTagMutability];
72
+ export declare const ImageTagMutabilityExclusionFilterType: {
73
+ readonly WILDCARD: "WILDCARD";
74
+ };
75
+ export type ImageTagMutabilityExclusionFilterType =
76
+ (typeof ImageTagMutabilityExclusionFilterType)[keyof typeof ImageTagMutabilityExclusionFilterType];
77
+ export declare const RCTAppliedFor: {
78
+ readonly PULL_THROUGH_CACHE: "PULL_THROUGH_CACHE";
79
+ readonly REPLICATION: "REPLICATION";
80
+ };
81
+ export type RCTAppliedFor = (typeof RCTAppliedFor)[keyof typeof RCTAppliedFor];
82
+ export declare const ReplicationStatus: {
83
+ readonly COMPLETE: "COMPLETE";
84
+ readonly FAILED: "FAILED";
85
+ readonly IN_PROGRESS: "IN_PROGRESS";
86
+ };
87
+ export type ReplicationStatus =
88
+ (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
89
+ export declare const ImageStatusFilter: {
90
+ readonly ACTIVATING: "ACTIVATING";
91
+ readonly ACTIVE: "ACTIVE";
92
+ readonly ANY: "ANY";
93
+ readonly ARCHIVED: "ARCHIVED";
94
+ };
95
+ export type ImageStatusFilter =
96
+ (typeof ImageStatusFilter)[keyof typeof ImageStatusFilter];
97
+ export declare const TagStatus: {
98
+ readonly ANY: "ANY";
99
+ readonly TAGGED: "TAGGED";
100
+ readonly UNTAGGED: "UNTAGGED";
101
+ };
102
+ export type TagStatus = (typeof TagStatus)[keyof typeof TagStatus];
103
+ export declare const FindingSeverity: {
104
+ readonly CRITICAL: "CRITICAL";
105
+ readonly HIGH: "HIGH";
106
+ readonly INFORMATIONAL: "INFORMATIONAL";
107
+ readonly LOW: "LOW";
108
+ readonly MEDIUM: "MEDIUM";
109
+ readonly UNDEFINED: "UNDEFINED";
110
+ };
111
+ export type FindingSeverity =
112
+ (typeof FindingSeverity)[keyof typeof FindingSeverity];
113
+ export declare const ScanStatus: {
114
+ readonly ACTIVE: "ACTIVE";
115
+ readonly COMPLETE: "COMPLETE";
116
+ readonly FAILED: "FAILED";
117
+ readonly FINDINGS_UNAVAILABLE: "FINDINGS_UNAVAILABLE";
118
+ readonly IMAGE_ARCHIVED: "IMAGE_ARCHIVED";
119
+ readonly IN_PROGRESS: "IN_PROGRESS";
120
+ readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
121
+ readonly PENDING: "PENDING";
122
+ readonly SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED";
123
+ readonly UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE";
124
+ };
125
+ export type ScanStatus = (typeof ScanStatus)[keyof typeof ScanStatus];
126
+ export declare const ImageStatus: {
127
+ readonly ACTIVATING: "ACTIVATING";
128
+ readonly ACTIVE: "ACTIVE";
129
+ readonly ARCHIVED: "ARCHIVED";
130
+ };
131
+ export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
132
+ export declare const RepositoryFilterType: {
133
+ readonly PREFIX_MATCH: "PREFIX_MATCH";
134
+ };
135
+ export type RepositoryFilterType =
136
+ (typeof RepositoryFilterType)[keyof typeof RepositoryFilterType];
137
+ export declare const LifecyclePolicyTargetStorageClass: {
138
+ readonly ARCHIVE: "ARCHIVE";
139
+ };
140
+ export type LifecyclePolicyTargetStorageClass =
141
+ (typeof LifecyclePolicyTargetStorageClass)[keyof typeof LifecyclePolicyTargetStorageClass];
142
+ export declare const ImageActionType: {
143
+ readonly EXPIRE: "EXPIRE";
144
+ readonly TRANSITION: "TRANSITION";
145
+ };
146
+ export type ImageActionType =
147
+ (typeof ImageActionType)[keyof typeof ImageActionType];
148
+ export declare const LifecyclePolicyStorageClass: {
149
+ readonly ARCHIVE: "ARCHIVE";
150
+ readonly STANDARD: "STANDARD";
151
+ };
152
+ export type LifecyclePolicyStorageClass =
153
+ (typeof LifecyclePolicyStorageClass)[keyof typeof LifecyclePolicyStorageClass];
154
+ export declare const LifecyclePolicyPreviewStatus: {
155
+ readonly COMPLETE: "COMPLETE";
156
+ readonly EXPIRED: "EXPIRED";
157
+ readonly FAILED: "FAILED";
158
+ readonly IN_PROGRESS: "IN_PROGRESS";
159
+ };
160
+ export type LifecyclePolicyPreviewStatus =
161
+ (typeof LifecyclePolicyPreviewStatus)[keyof typeof LifecyclePolicyPreviewStatus];
162
+ export declare const ScanType: {
163
+ readonly BASIC: "BASIC";
164
+ readonly ENHANCED: "ENHANCED";
165
+ };
166
+ export type ScanType = (typeof ScanType)[keyof typeof ScanType];
167
+ export declare const ArtifactStatusFilter: {
168
+ readonly ACTIVATING: "ACTIVATING";
169
+ readonly ACTIVE: "ACTIVE";
170
+ readonly ANY: "ANY";
171
+ readonly ARCHIVED: "ARCHIVED";
172
+ };
173
+ export type ArtifactStatusFilter =
174
+ (typeof ArtifactStatusFilter)[keyof typeof ArtifactStatusFilter];
175
+ export declare const ArtifactStatus: {
176
+ readonly ACTIVATING: "ACTIVATING";
177
+ readonly ACTIVE: "ACTIVE";
178
+ readonly ARCHIVED: "ARCHIVED";
179
+ };
180
+ export type ArtifactStatus =
181
+ (typeof ArtifactStatus)[keyof typeof ArtifactStatus];
182
+ export declare const TargetStorageClass: {
183
+ readonly ARCHIVE: "ARCHIVE";
184
+ readonly STANDARD: "STANDARD";
185
+ };
186
+ export type TargetStorageClass =
187
+ (typeof TargetStorageClass)[keyof typeof TargetStorageClass];
@@ -0,0 +1,369 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ECRServiceException as __BaseException } from "./ECRServiceException";
3
+ export declare class InvalidParameterException extends __BaseException {
4
+ readonly name: "InvalidParameterException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
8
+ );
9
+ }
10
+ export declare class RepositoryNotFoundException extends __BaseException {
11
+ readonly name: "RepositoryNotFoundException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<RepositoryNotFoundException, __BaseException>
15
+ );
16
+ }
17
+ export declare class ServerException extends __BaseException {
18
+ readonly name: "ServerException";
19
+ readonly $fault: "server";
20
+ constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
21
+ }
22
+ export declare class LimitExceededException extends __BaseException {
23
+ readonly name: "LimitExceededException";
24
+ readonly $fault: "client";
25
+ constructor(
26
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
27
+ );
28
+ }
29
+ export declare class UnableToGetUpstreamImageException extends __BaseException {
30
+ readonly name: "UnableToGetUpstreamImageException";
31
+ readonly $fault: "client";
32
+ constructor(
33
+ opts: __ExceptionOptionType<
34
+ UnableToGetUpstreamImageException,
35
+ __BaseException
36
+ >
37
+ );
38
+ }
39
+ export declare class ValidationException extends __BaseException {
40
+ readonly name: "ValidationException";
41
+ readonly $fault: "client";
42
+ constructor(
43
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
44
+ );
45
+ }
46
+ export declare class EmptyUploadException extends __BaseException {
47
+ readonly name: "EmptyUploadException";
48
+ readonly $fault: "client";
49
+ constructor(
50
+ opts: __ExceptionOptionType<EmptyUploadException, __BaseException>
51
+ );
52
+ }
53
+ export declare class InvalidLayerException extends __BaseException {
54
+ readonly name: "InvalidLayerException";
55
+ readonly $fault: "client";
56
+ constructor(
57
+ opts: __ExceptionOptionType<InvalidLayerException, __BaseException>
58
+ );
59
+ }
60
+ export declare class KmsException extends __BaseException {
61
+ readonly name: "KmsException";
62
+ readonly $fault: "client";
63
+ kmsError?: string | undefined;
64
+ constructor(opts: __ExceptionOptionType<KmsException, __BaseException>);
65
+ }
66
+ export declare class LayerAlreadyExistsException extends __BaseException {
67
+ readonly name: "LayerAlreadyExistsException";
68
+ readonly $fault: "client";
69
+ constructor(
70
+ opts: __ExceptionOptionType<LayerAlreadyExistsException, __BaseException>
71
+ );
72
+ }
73
+ export declare class LayerPartTooSmallException extends __BaseException {
74
+ readonly name: "LayerPartTooSmallException";
75
+ readonly $fault: "client";
76
+ constructor(
77
+ opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>
78
+ );
79
+ }
80
+ export declare class UploadNotFoundException extends __BaseException {
81
+ readonly name: "UploadNotFoundException";
82
+ readonly $fault: "client";
83
+ constructor(
84
+ opts: __ExceptionOptionType<UploadNotFoundException, __BaseException>
85
+ );
86
+ }
87
+ export declare class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
88
+ readonly name: "PullThroughCacheRuleAlreadyExistsException";
89
+ readonly $fault: "client";
90
+ constructor(
91
+ opts: __ExceptionOptionType<
92
+ PullThroughCacheRuleAlreadyExistsException,
93
+ __BaseException
94
+ >
95
+ );
96
+ }
97
+ export declare class SecretNotFoundException extends __BaseException {
98
+ readonly name: "SecretNotFoundException";
99
+ readonly $fault: "client";
100
+ constructor(
101
+ opts: __ExceptionOptionType<SecretNotFoundException, __BaseException>
102
+ );
103
+ }
104
+ export declare class UnableToAccessSecretException extends __BaseException {
105
+ readonly name: "UnableToAccessSecretException";
106
+ readonly $fault: "client";
107
+ constructor(
108
+ opts: __ExceptionOptionType<UnableToAccessSecretException, __BaseException>
109
+ );
110
+ }
111
+ export declare class UnableToDecryptSecretValueException extends __BaseException {
112
+ readonly name: "UnableToDecryptSecretValueException";
113
+ readonly $fault: "client";
114
+ constructor(
115
+ opts: __ExceptionOptionType<
116
+ UnableToDecryptSecretValueException,
117
+ __BaseException
118
+ >
119
+ );
120
+ }
121
+ export declare class UnsupportedUpstreamRegistryException extends __BaseException {
122
+ readonly name: "UnsupportedUpstreamRegistryException";
123
+ readonly $fault: "client";
124
+ constructor(
125
+ opts: __ExceptionOptionType<
126
+ UnsupportedUpstreamRegistryException,
127
+ __BaseException
128
+ >
129
+ );
130
+ }
131
+ export declare class InvalidTagParameterException extends __BaseException {
132
+ readonly name: "InvalidTagParameterException";
133
+ readonly $fault: "client";
134
+ constructor(
135
+ opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>
136
+ );
137
+ }
138
+ export declare class RepositoryAlreadyExistsException extends __BaseException {
139
+ readonly name: "RepositoryAlreadyExistsException";
140
+ readonly $fault: "client";
141
+ constructor(
142
+ opts: __ExceptionOptionType<
143
+ RepositoryAlreadyExistsException,
144
+ __BaseException
145
+ >
146
+ );
147
+ }
148
+ export declare class TooManyTagsException extends __BaseException {
149
+ readonly name: "TooManyTagsException";
150
+ readonly $fault: "client";
151
+ constructor(
152
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
153
+ );
154
+ }
155
+ export declare class TemplateAlreadyExistsException extends __BaseException {
156
+ readonly name: "TemplateAlreadyExistsException";
157
+ readonly $fault: "client";
158
+ constructor(
159
+ opts: __ExceptionOptionType<TemplateAlreadyExistsException, __BaseException>
160
+ );
161
+ }
162
+ export declare class LifecyclePolicyNotFoundException extends __BaseException {
163
+ readonly name: "LifecyclePolicyNotFoundException";
164
+ readonly $fault: "client";
165
+ constructor(
166
+ opts: __ExceptionOptionType<
167
+ LifecyclePolicyNotFoundException,
168
+ __BaseException
169
+ >
170
+ );
171
+ }
172
+ export declare class PullThroughCacheRuleNotFoundException extends __BaseException {
173
+ readonly name: "PullThroughCacheRuleNotFoundException";
174
+ readonly $fault: "client";
175
+ constructor(
176
+ opts: __ExceptionOptionType<
177
+ PullThroughCacheRuleNotFoundException,
178
+ __BaseException
179
+ >
180
+ );
181
+ }
182
+ export declare class RegistryPolicyNotFoundException extends __BaseException {
183
+ readonly name: "RegistryPolicyNotFoundException";
184
+ readonly $fault: "client";
185
+ constructor(
186
+ opts: __ExceptionOptionType<
187
+ RegistryPolicyNotFoundException,
188
+ __BaseException
189
+ >
190
+ );
191
+ }
192
+ export declare class RepositoryNotEmptyException extends __BaseException {
193
+ readonly name: "RepositoryNotEmptyException";
194
+ readonly $fault: "client";
195
+ constructor(
196
+ opts: __ExceptionOptionType<RepositoryNotEmptyException, __BaseException>
197
+ );
198
+ }
199
+ export declare class TemplateNotFoundException extends __BaseException {
200
+ readonly name: "TemplateNotFoundException";
201
+ readonly $fault: "client";
202
+ constructor(
203
+ opts: __ExceptionOptionType<TemplateNotFoundException, __BaseException>
204
+ );
205
+ }
206
+ export declare class RepositoryPolicyNotFoundException extends __BaseException {
207
+ readonly name: "RepositoryPolicyNotFoundException";
208
+ readonly $fault: "client";
209
+ constructor(
210
+ opts: __ExceptionOptionType<
211
+ RepositoryPolicyNotFoundException,
212
+ __BaseException
213
+ >
214
+ );
215
+ }
216
+ export declare class ExclusionNotFoundException extends __BaseException {
217
+ readonly name: "ExclusionNotFoundException";
218
+ readonly $fault: "client";
219
+ constructor(
220
+ opts: __ExceptionOptionType<ExclusionNotFoundException, __BaseException>
221
+ );
222
+ }
223
+ export declare class ImageNotFoundException extends __BaseException {
224
+ readonly name: "ImageNotFoundException";
225
+ readonly $fault: "client";
226
+ constructor(
227
+ opts: __ExceptionOptionType<ImageNotFoundException, __BaseException>
228
+ );
229
+ }
230
+ export declare class ScanNotFoundException extends __BaseException {
231
+ readonly name: "ScanNotFoundException";
232
+ readonly $fault: "client";
233
+ constructor(
234
+ opts: __ExceptionOptionType<ScanNotFoundException, __BaseException>
235
+ );
236
+ }
237
+ export declare class LayerInaccessibleException extends __BaseException {
238
+ readonly name: "LayerInaccessibleException";
239
+ readonly $fault: "client";
240
+ constructor(
241
+ opts: __ExceptionOptionType<LayerInaccessibleException, __BaseException>
242
+ );
243
+ }
244
+ export declare class LayersNotFoundException extends __BaseException {
245
+ readonly name: "LayersNotFoundException";
246
+ readonly $fault: "client";
247
+ constructor(
248
+ opts: __ExceptionOptionType<LayersNotFoundException, __BaseException>
249
+ );
250
+ }
251
+ export declare class UnableToGetUpstreamLayerException extends __BaseException {
252
+ readonly name: "UnableToGetUpstreamLayerException";
253
+ readonly $fault: "client";
254
+ constructor(
255
+ opts: __ExceptionOptionType<
256
+ UnableToGetUpstreamLayerException,
257
+ __BaseException
258
+ >
259
+ );
260
+ }
261
+ export declare class LifecyclePolicyPreviewNotFoundException extends __BaseException {
262
+ readonly name: "LifecyclePolicyPreviewNotFoundException";
263
+ readonly $fault: "client";
264
+ constructor(
265
+ opts: __ExceptionOptionType<
266
+ LifecyclePolicyPreviewNotFoundException,
267
+ __BaseException
268
+ >
269
+ );
270
+ }
271
+ export declare class ImageAlreadyExistsException extends __BaseException {
272
+ readonly name: "ImageAlreadyExistsException";
273
+ readonly $fault: "client";
274
+ constructor(
275
+ opts: __ExceptionOptionType<ImageAlreadyExistsException, __BaseException>
276
+ );
277
+ }
278
+ export declare class ImageDigestDoesNotMatchException extends __BaseException {
279
+ readonly name: "ImageDigestDoesNotMatchException";
280
+ readonly $fault: "client";
281
+ constructor(
282
+ opts: __ExceptionOptionType<
283
+ ImageDigestDoesNotMatchException,
284
+ __BaseException
285
+ >
286
+ );
287
+ }
288
+ export declare class ImageTagAlreadyExistsException extends __BaseException {
289
+ readonly name: "ImageTagAlreadyExistsException";
290
+ readonly $fault: "client";
291
+ constructor(
292
+ opts: __ExceptionOptionType<ImageTagAlreadyExistsException, __BaseException>
293
+ );
294
+ }
295
+ export declare class ReferencedImagesNotFoundException extends __BaseException {
296
+ readonly name: "ReferencedImagesNotFoundException";
297
+ readonly $fault: "client";
298
+ constructor(
299
+ opts: __ExceptionOptionType<
300
+ ReferencedImagesNotFoundException,
301
+ __BaseException
302
+ >
303
+ );
304
+ }
305
+ export declare class BlockedByOrganizationPolicyException extends __BaseException {
306
+ readonly name: "BlockedByOrganizationPolicyException";
307
+ readonly $fault: "client";
308
+ constructor(
309
+ opts: __ExceptionOptionType<
310
+ BlockedByOrganizationPolicyException,
311
+ __BaseException
312
+ >
313
+ );
314
+ }
315
+ export declare class ExclusionAlreadyExistsException extends __BaseException {
316
+ readonly name: "ExclusionAlreadyExistsException";
317
+ readonly $fault: "client";
318
+ constructor(
319
+ opts: __ExceptionOptionType<
320
+ ExclusionAlreadyExistsException,
321
+ __BaseException
322
+ >
323
+ );
324
+ }
325
+ export declare class ImageArchivedException extends __BaseException {
326
+ readonly name: "ImageArchivedException";
327
+ readonly $fault: "client";
328
+ constructor(
329
+ opts: __ExceptionOptionType<ImageArchivedException, __BaseException>
330
+ );
331
+ }
332
+ export declare class UnsupportedImageTypeException extends __BaseException {
333
+ readonly name: "UnsupportedImageTypeException";
334
+ readonly $fault: "client";
335
+ constructor(
336
+ opts: __ExceptionOptionType<UnsupportedImageTypeException, __BaseException>
337
+ );
338
+ }
339
+ export declare class LifecyclePolicyPreviewInProgressException extends __BaseException {
340
+ readonly name: "LifecyclePolicyPreviewInProgressException";
341
+ readonly $fault: "client";
342
+ constructor(
343
+ opts: __ExceptionOptionType<
344
+ LifecyclePolicyPreviewInProgressException,
345
+ __BaseException
346
+ >
347
+ );
348
+ }
349
+ export declare class ImageStorageClassUpdateNotSupportedException extends __BaseException {
350
+ readonly name: "ImageStorageClassUpdateNotSupportedException";
351
+ readonly $fault: "client";
352
+ constructor(
353
+ opts: __ExceptionOptionType<
354
+ ImageStorageClassUpdateNotSupportedException,
355
+ __BaseException
356
+ >
357
+ );
358
+ }
359
+ export declare class InvalidLayerPartException extends __BaseException {
360
+ readonly name: "InvalidLayerPartException";
361
+ readonly $fault: "client";
362
+ registryId?: string | undefined;
363
+ repositoryName?: string | undefined;
364
+ uploadId?: string | undefined;
365
+ lastValidByteReceived?: number | undefined;
366
+ constructor(
367
+ opts: __ExceptionOptionType<InvalidLayerPartException, __BaseException>
368
+ );
369
+ }