@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.
- package/README.md +40 -0
- package/dist-cjs/index.js +538 -154
- package/dist-es/ECR.js +10 -0
- package/dist-es/commands/DeregisterPullTimeUpdateExclusionCommand.js +16 -0
- package/dist-es/commands/ListImageReferrersCommand.js +16 -0
- package/dist-es/commands/ListPullTimeUpdateExclusionsCommand.js +16 -0
- package/dist-es/commands/RegisterPullTimeUpdateExclusionCommand.js +16 -0
- package/dist-es/commands/UpdateImageStorageClassCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +141 -0
- package/dist-es/models/errors.js +551 -0
- package/dist-es/models/models_0.js +1 -595
- package/dist-es/schemas/schemas_0.js +259 -52
- package/dist-types/ECR.d.ts +36 -0
- package/dist-types/ECRClient.d.ts +7 -2
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetImageCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +107 -0
- package/dist-types/commands/DescribeImageScanFindingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +11 -8
- package/dist-types/commands/GetLifecyclePolicyPreviewCommand.d.ts +9 -1
- package/dist-types/commands/ListImageReferrersCommand.d.ts +224 -0
- package/dist-types/commands/ListImagesCommand.d.ts +1 -0
- package/dist-types/commands/ListPullTimeUpdateExclusionsCommand.d.ts +127 -0
- package/dist-types/commands/PutRegistryScanningConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +93 -0
- package/dist-types/commands/StartImageScanCommand.d.ts +8 -6
- package/dist-types/commands/UpdateImageStorageClassCommand.d.ts +156 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +349 -0
- package/dist-types/models/errors.d.ts +597 -0
- package/dist-types/models/models_0.d.ts +372 -812
- package/dist-types/schemas/schemas_0.d.ts +29 -0
- package/dist-types/ts3.4/ECR.d.ts +92 -0
- package/dist-types/ts3.4/ECRClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeregisterPullTimeUpdateExclusionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListImageReferrersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPullTimeUpdateExclusionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterPullTimeUpdateExclusionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateImageStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +187 -0
- package/dist-types/ts3.4/models/errors.d.ts +369 -0
- package/dist-types/ts3.4/models/models_0.d.ts +100 -461
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -0
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,595 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const LayerFailureCode = {
|
|
3
|
-
InvalidLayerDigest: "InvalidLayerDigest",
|
|
4
|
-
MissingLayerDigest: "MissingLayerDigest",
|
|
5
|
-
};
|
|
6
|
-
export const LayerAvailability = {
|
|
7
|
-
AVAILABLE: "AVAILABLE",
|
|
8
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
9
|
-
};
|
|
10
|
-
export class InvalidParameterException extends __BaseException {
|
|
11
|
-
name = "InvalidParameterException";
|
|
12
|
-
$fault = "client";
|
|
13
|
-
constructor(opts) {
|
|
14
|
-
super({
|
|
15
|
-
name: "InvalidParameterException",
|
|
16
|
-
$fault: "client",
|
|
17
|
-
...opts,
|
|
18
|
-
});
|
|
19
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
export class RepositoryNotFoundException extends __BaseException {
|
|
23
|
-
name = "RepositoryNotFoundException";
|
|
24
|
-
$fault = "client";
|
|
25
|
-
constructor(opts) {
|
|
26
|
-
super({
|
|
27
|
-
name: "RepositoryNotFoundException",
|
|
28
|
-
$fault: "client",
|
|
29
|
-
...opts,
|
|
30
|
-
});
|
|
31
|
-
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
export class ServerException extends __BaseException {
|
|
35
|
-
name = "ServerException";
|
|
36
|
-
$fault = "server";
|
|
37
|
-
constructor(opts) {
|
|
38
|
-
super({
|
|
39
|
-
name: "ServerException",
|
|
40
|
-
$fault: "server",
|
|
41
|
-
...opts,
|
|
42
|
-
});
|
|
43
|
-
Object.setPrototypeOf(this, ServerException.prototype);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
export const ImageFailureCode = {
|
|
47
|
-
ImageNotFound: "ImageNotFound",
|
|
48
|
-
ImageReferencedByManifestList: "ImageReferencedByManifestList",
|
|
49
|
-
ImageTagDoesNotMatchDigest: "ImageTagDoesNotMatchDigest",
|
|
50
|
-
InvalidImageDigest: "InvalidImageDigest",
|
|
51
|
-
InvalidImageTag: "InvalidImageTag",
|
|
52
|
-
KmsError: "KmsError",
|
|
53
|
-
MissingDigestAndTag: "MissingDigestAndTag",
|
|
54
|
-
UpstreamAccessDenied: "UpstreamAccessDenied",
|
|
55
|
-
UpstreamTooManyRequests: "UpstreamTooManyRequests",
|
|
56
|
-
UpstreamUnavailable: "UpstreamUnavailable",
|
|
57
|
-
};
|
|
58
|
-
export class LimitExceededException extends __BaseException {
|
|
59
|
-
name = "LimitExceededException";
|
|
60
|
-
$fault = "client";
|
|
61
|
-
constructor(opts) {
|
|
62
|
-
super({
|
|
63
|
-
name: "LimitExceededException",
|
|
64
|
-
$fault: "client",
|
|
65
|
-
...opts,
|
|
66
|
-
});
|
|
67
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
export class UnableToGetUpstreamImageException extends __BaseException {
|
|
71
|
-
name = "UnableToGetUpstreamImageException";
|
|
72
|
-
$fault = "client";
|
|
73
|
-
constructor(opts) {
|
|
74
|
-
super({
|
|
75
|
-
name: "UnableToGetUpstreamImageException",
|
|
76
|
-
$fault: "client",
|
|
77
|
-
...opts,
|
|
78
|
-
});
|
|
79
|
-
Object.setPrototypeOf(this, UnableToGetUpstreamImageException.prototype);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
export const ScanningConfigurationFailureCode = {
|
|
83
|
-
REPOSITORY_NOT_FOUND: "REPOSITORY_NOT_FOUND",
|
|
84
|
-
};
|
|
85
|
-
export const ScanningRepositoryFilterType = {
|
|
86
|
-
WILDCARD: "WILDCARD",
|
|
87
|
-
};
|
|
88
|
-
export const ScanFrequency = {
|
|
89
|
-
CONTINUOUS_SCAN: "CONTINUOUS_SCAN",
|
|
90
|
-
MANUAL: "MANUAL",
|
|
91
|
-
SCAN_ON_PUSH: "SCAN_ON_PUSH",
|
|
92
|
-
};
|
|
93
|
-
export class ValidationException extends __BaseException {
|
|
94
|
-
name = "ValidationException";
|
|
95
|
-
$fault = "client";
|
|
96
|
-
constructor(opts) {
|
|
97
|
-
super({
|
|
98
|
-
name: "ValidationException",
|
|
99
|
-
$fault: "client",
|
|
100
|
-
...opts,
|
|
101
|
-
});
|
|
102
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
export class EmptyUploadException extends __BaseException {
|
|
106
|
-
name = "EmptyUploadException";
|
|
107
|
-
$fault = "client";
|
|
108
|
-
constructor(opts) {
|
|
109
|
-
super({
|
|
110
|
-
name: "EmptyUploadException",
|
|
111
|
-
$fault: "client",
|
|
112
|
-
...opts,
|
|
113
|
-
});
|
|
114
|
-
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
export class InvalidLayerException extends __BaseException {
|
|
118
|
-
name = "InvalidLayerException";
|
|
119
|
-
$fault = "client";
|
|
120
|
-
constructor(opts) {
|
|
121
|
-
super({
|
|
122
|
-
name: "InvalidLayerException",
|
|
123
|
-
$fault: "client",
|
|
124
|
-
...opts,
|
|
125
|
-
});
|
|
126
|
-
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
export class KmsException extends __BaseException {
|
|
130
|
-
name = "KmsException";
|
|
131
|
-
$fault = "client";
|
|
132
|
-
kmsError;
|
|
133
|
-
constructor(opts) {
|
|
134
|
-
super({
|
|
135
|
-
name: "KmsException",
|
|
136
|
-
$fault: "client",
|
|
137
|
-
...opts,
|
|
138
|
-
});
|
|
139
|
-
Object.setPrototypeOf(this, KmsException.prototype);
|
|
140
|
-
this.kmsError = opts.kmsError;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
export class LayerAlreadyExistsException extends __BaseException {
|
|
144
|
-
name = "LayerAlreadyExistsException";
|
|
145
|
-
$fault = "client";
|
|
146
|
-
constructor(opts) {
|
|
147
|
-
super({
|
|
148
|
-
name: "LayerAlreadyExistsException",
|
|
149
|
-
$fault: "client",
|
|
150
|
-
...opts,
|
|
151
|
-
});
|
|
152
|
-
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
export class LayerPartTooSmallException extends __BaseException {
|
|
156
|
-
name = "LayerPartTooSmallException";
|
|
157
|
-
$fault = "client";
|
|
158
|
-
constructor(opts) {
|
|
159
|
-
super({
|
|
160
|
-
name: "LayerPartTooSmallException",
|
|
161
|
-
$fault: "client",
|
|
162
|
-
...opts,
|
|
163
|
-
});
|
|
164
|
-
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
export class UploadNotFoundException extends __BaseException {
|
|
168
|
-
name = "UploadNotFoundException";
|
|
169
|
-
$fault = "client";
|
|
170
|
-
constructor(opts) {
|
|
171
|
-
super({
|
|
172
|
-
name: "UploadNotFoundException",
|
|
173
|
-
$fault: "client",
|
|
174
|
-
...opts,
|
|
175
|
-
});
|
|
176
|
-
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
export const UpstreamRegistry = {
|
|
180
|
-
AzureContainerRegistry: "azure-container-registry",
|
|
181
|
-
DockerHub: "docker-hub",
|
|
182
|
-
Ecr: "ecr",
|
|
183
|
-
EcrPublic: "ecr-public",
|
|
184
|
-
GitHubContainerRegistry: "github-container-registry",
|
|
185
|
-
GitLabContainerRegistry: "gitlab-container-registry",
|
|
186
|
-
K8s: "k8s",
|
|
187
|
-
Quay: "quay",
|
|
188
|
-
};
|
|
189
|
-
export class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
|
|
190
|
-
name = "PullThroughCacheRuleAlreadyExistsException";
|
|
191
|
-
$fault = "client";
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "PullThroughCacheRuleAlreadyExistsException",
|
|
195
|
-
$fault: "client",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, PullThroughCacheRuleAlreadyExistsException.prototype);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
export class SecretNotFoundException extends __BaseException {
|
|
202
|
-
name = "SecretNotFoundException";
|
|
203
|
-
$fault = "client";
|
|
204
|
-
constructor(opts) {
|
|
205
|
-
super({
|
|
206
|
-
name: "SecretNotFoundException",
|
|
207
|
-
$fault: "client",
|
|
208
|
-
...opts,
|
|
209
|
-
});
|
|
210
|
-
Object.setPrototypeOf(this, SecretNotFoundException.prototype);
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
export class UnableToAccessSecretException extends __BaseException {
|
|
214
|
-
name = "UnableToAccessSecretException";
|
|
215
|
-
$fault = "client";
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "UnableToAccessSecretException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, UnableToAccessSecretException.prototype);
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
export class UnableToDecryptSecretValueException extends __BaseException {
|
|
226
|
-
name = "UnableToDecryptSecretValueException";
|
|
227
|
-
$fault = "client";
|
|
228
|
-
constructor(opts) {
|
|
229
|
-
super({
|
|
230
|
-
name: "UnableToDecryptSecretValueException",
|
|
231
|
-
$fault: "client",
|
|
232
|
-
...opts,
|
|
233
|
-
});
|
|
234
|
-
Object.setPrototypeOf(this, UnableToDecryptSecretValueException.prototype);
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
export class UnsupportedUpstreamRegistryException extends __BaseException {
|
|
238
|
-
name = "UnsupportedUpstreamRegistryException";
|
|
239
|
-
$fault = "client";
|
|
240
|
-
constructor(opts) {
|
|
241
|
-
super({
|
|
242
|
-
name: "UnsupportedUpstreamRegistryException",
|
|
243
|
-
$fault: "client",
|
|
244
|
-
...opts,
|
|
245
|
-
});
|
|
246
|
-
Object.setPrototypeOf(this, UnsupportedUpstreamRegistryException.prototype);
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
export const EncryptionType = {
|
|
250
|
-
AES256: "AES256",
|
|
251
|
-
KMS: "KMS",
|
|
252
|
-
KMS_DSSE: "KMS_DSSE",
|
|
253
|
-
};
|
|
254
|
-
export const ImageTagMutability = {
|
|
255
|
-
IMMUTABLE: "IMMUTABLE",
|
|
256
|
-
IMMUTABLE_WITH_EXCLUSION: "IMMUTABLE_WITH_EXCLUSION",
|
|
257
|
-
MUTABLE: "MUTABLE",
|
|
258
|
-
MUTABLE_WITH_EXCLUSION: "MUTABLE_WITH_EXCLUSION",
|
|
259
|
-
};
|
|
260
|
-
export const ImageTagMutabilityExclusionFilterType = {
|
|
261
|
-
WILDCARD: "WILDCARD",
|
|
262
|
-
};
|
|
263
|
-
export class InvalidTagParameterException extends __BaseException {
|
|
264
|
-
name = "InvalidTagParameterException";
|
|
265
|
-
$fault = "client";
|
|
266
|
-
constructor(opts) {
|
|
267
|
-
super({
|
|
268
|
-
name: "InvalidTagParameterException",
|
|
269
|
-
$fault: "client",
|
|
270
|
-
...opts,
|
|
271
|
-
});
|
|
272
|
-
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
export class RepositoryAlreadyExistsException extends __BaseException {
|
|
276
|
-
name = "RepositoryAlreadyExistsException";
|
|
277
|
-
$fault = "client";
|
|
278
|
-
constructor(opts) {
|
|
279
|
-
super({
|
|
280
|
-
name: "RepositoryAlreadyExistsException",
|
|
281
|
-
$fault: "client",
|
|
282
|
-
...opts,
|
|
283
|
-
});
|
|
284
|
-
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
export class TooManyTagsException extends __BaseException {
|
|
288
|
-
name = "TooManyTagsException";
|
|
289
|
-
$fault = "client";
|
|
290
|
-
constructor(opts) {
|
|
291
|
-
super({
|
|
292
|
-
name: "TooManyTagsException",
|
|
293
|
-
$fault: "client",
|
|
294
|
-
...opts,
|
|
295
|
-
});
|
|
296
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
export const RCTAppliedFor = {
|
|
300
|
-
PULL_THROUGH_CACHE: "PULL_THROUGH_CACHE",
|
|
301
|
-
REPLICATION: "REPLICATION",
|
|
302
|
-
};
|
|
303
|
-
export class TemplateAlreadyExistsException extends __BaseException {
|
|
304
|
-
name = "TemplateAlreadyExistsException";
|
|
305
|
-
$fault = "client";
|
|
306
|
-
constructor(opts) {
|
|
307
|
-
super({
|
|
308
|
-
name: "TemplateAlreadyExistsException",
|
|
309
|
-
$fault: "client",
|
|
310
|
-
...opts,
|
|
311
|
-
});
|
|
312
|
-
Object.setPrototypeOf(this, TemplateAlreadyExistsException.prototype);
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
export class LifecyclePolicyNotFoundException extends __BaseException {
|
|
316
|
-
name = "LifecyclePolicyNotFoundException";
|
|
317
|
-
$fault = "client";
|
|
318
|
-
constructor(opts) {
|
|
319
|
-
super({
|
|
320
|
-
name: "LifecyclePolicyNotFoundException",
|
|
321
|
-
$fault: "client",
|
|
322
|
-
...opts,
|
|
323
|
-
});
|
|
324
|
-
Object.setPrototypeOf(this, LifecyclePolicyNotFoundException.prototype);
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
export class PullThroughCacheRuleNotFoundException extends __BaseException {
|
|
328
|
-
name = "PullThroughCacheRuleNotFoundException";
|
|
329
|
-
$fault = "client";
|
|
330
|
-
constructor(opts) {
|
|
331
|
-
super({
|
|
332
|
-
name: "PullThroughCacheRuleNotFoundException",
|
|
333
|
-
$fault: "client",
|
|
334
|
-
...opts,
|
|
335
|
-
});
|
|
336
|
-
Object.setPrototypeOf(this, PullThroughCacheRuleNotFoundException.prototype);
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
export class RegistryPolicyNotFoundException extends __BaseException {
|
|
340
|
-
name = "RegistryPolicyNotFoundException";
|
|
341
|
-
$fault = "client";
|
|
342
|
-
constructor(opts) {
|
|
343
|
-
super({
|
|
344
|
-
name: "RegistryPolicyNotFoundException",
|
|
345
|
-
$fault: "client",
|
|
346
|
-
...opts,
|
|
347
|
-
});
|
|
348
|
-
Object.setPrototypeOf(this, RegistryPolicyNotFoundException.prototype);
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
export class RepositoryNotEmptyException extends __BaseException {
|
|
352
|
-
name = "RepositoryNotEmptyException";
|
|
353
|
-
$fault = "client";
|
|
354
|
-
constructor(opts) {
|
|
355
|
-
super({
|
|
356
|
-
name: "RepositoryNotEmptyException",
|
|
357
|
-
$fault: "client",
|
|
358
|
-
...opts,
|
|
359
|
-
});
|
|
360
|
-
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
export class TemplateNotFoundException extends __BaseException {
|
|
364
|
-
name = "TemplateNotFoundException";
|
|
365
|
-
$fault = "client";
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "TemplateNotFoundException",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, TemplateNotFoundException.prototype);
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
export class RepositoryPolicyNotFoundException extends __BaseException {
|
|
376
|
-
name = "RepositoryPolicyNotFoundException";
|
|
377
|
-
$fault = "client";
|
|
378
|
-
constructor(opts) {
|
|
379
|
-
super({
|
|
380
|
-
name: "RepositoryPolicyNotFoundException",
|
|
381
|
-
$fault: "client",
|
|
382
|
-
...opts,
|
|
383
|
-
});
|
|
384
|
-
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
export const ReplicationStatus = {
|
|
388
|
-
COMPLETE: "COMPLETE",
|
|
389
|
-
FAILED: "FAILED",
|
|
390
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
391
|
-
};
|
|
392
|
-
export class ImageNotFoundException extends __BaseException {
|
|
393
|
-
name = "ImageNotFoundException";
|
|
394
|
-
$fault = "client";
|
|
395
|
-
constructor(opts) {
|
|
396
|
-
super({
|
|
397
|
-
name: "ImageNotFoundException",
|
|
398
|
-
$fault: "client",
|
|
399
|
-
...opts,
|
|
400
|
-
});
|
|
401
|
-
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
export const TagStatus = {
|
|
405
|
-
ANY: "ANY",
|
|
406
|
-
TAGGED: "TAGGED",
|
|
407
|
-
UNTAGGED: "UNTAGGED",
|
|
408
|
-
};
|
|
409
|
-
export const FindingSeverity = {
|
|
410
|
-
CRITICAL: "CRITICAL",
|
|
411
|
-
HIGH: "HIGH",
|
|
412
|
-
INFORMATIONAL: "INFORMATIONAL",
|
|
413
|
-
LOW: "LOW",
|
|
414
|
-
MEDIUM: "MEDIUM",
|
|
415
|
-
UNDEFINED: "UNDEFINED",
|
|
416
|
-
};
|
|
417
|
-
export const ScanStatus = {
|
|
418
|
-
ACTIVE: "ACTIVE",
|
|
419
|
-
COMPLETE: "COMPLETE",
|
|
420
|
-
FAILED: "FAILED",
|
|
421
|
-
FINDINGS_UNAVAILABLE: "FINDINGS_UNAVAILABLE",
|
|
422
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
423
|
-
LIMIT_EXCEEDED: "LIMIT_EXCEEDED",
|
|
424
|
-
PENDING: "PENDING",
|
|
425
|
-
SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",
|
|
426
|
-
UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE",
|
|
427
|
-
};
|
|
428
|
-
export class ScanNotFoundException extends __BaseException {
|
|
429
|
-
name = "ScanNotFoundException";
|
|
430
|
-
$fault = "client";
|
|
431
|
-
constructor(opts) {
|
|
432
|
-
super({
|
|
433
|
-
name: "ScanNotFoundException",
|
|
434
|
-
$fault: "client",
|
|
435
|
-
...opts,
|
|
436
|
-
});
|
|
437
|
-
Object.setPrototypeOf(this, ScanNotFoundException.prototype);
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
export const RepositoryFilterType = {
|
|
441
|
-
PREFIX_MATCH: "PREFIX_MATCH",
|
|
442
|
-
};
|
|
443
|
-
export class LayerInaccessibleException extends __BaseException {
|
|
444
|
-
name = "LayerInaccessibleException";
|
|
445
|
-
$fault = "client";
|
|
446
|
-
constructor(opts) {
|
|
447
|
-
super({
|
|
448
|
-
name: "LayerInaccessibleException",
|
|
449
|
-
$fault: "client",
|
|
450
|
-
...opts,
|
|
451
|
-
});
|
|
452
|
-
Object.setPrototypeOf(this, LayerInaccessibleException.prototype);
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
export class LayersNotFoundException extends __BaseException {
|
|
456
|
-
name = "LayersNotFoundException";
|
|
457
|
-
$fault = "client";
|
|
458
|
-
constructor(opts) {
|
|
459
|
-
super({
|
|
460
|
-
name: "LayersNotFoundException",
|
|
461
|
-
$fault: "client",
|
|
462
|
-
...opts,
|
|
463
|
-
});
|
|
464
|
-
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
export class UnableToGetUpstreamLayerException extends __BaseException {
|
|
468
|
-
name = "UnableToGetUpstreamLayerException";
|
|
469
|
-
$fault = "client";
|
|
470
|
-
constructor(opts) {
|
|
471
|
-
super({
|
|
472
|
-
name: "UnableToGetUpstreamLayerException",
|
|
473
|
-
$fault: "client",
|
|
474
|
-
...opts,
|
|
475
|
-
});
|
|
476
|
-
Object.setPrototypeOf(this, UnableToGetUpstreamLayerException.prototype);
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
export const ImageActionType = {
|
|
480
|
-
EXPIRE: "EXPIRE",
|
|
481
|
-
};
|
|
482
|
-
export const LifecyclePolicyPreviewStatus = {
|
|
483
|
-
COMPLETE: "COMPLETE",
|
|
484
|
-
EXPIRED: "EXPIRED",
|
|
485
|
-
FAILED: "FAILED",
|
|
486
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
487
|
-
};
|
|
488
|
-
export class LifecyclePolicyPreviewNotFoundException extends __BaseException {
|
|
489
|
-
name = "LifecyclePolicyPreviewNotFoundException";
|
|
490
|
-
$fault = "client";
|
|
491
|
-
constructor(opts) {
|
|
492
|
-
super({
|
|
493
|
-
name: "LifecyclePolicyPreviewNotFoundException",
|
|
494
|
-
$fault: "client",
|
|
495
|
-
...opts,
|
|
496
|
-
});
|
|
497
|
-
Object.setPrototypeOf(this, LifecyclePolicyPreviewNotFoundException.prototype);
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
export const ScanType = {
|
|
501
|
-
BASIC: "BASIC",
|
|
502
|
-
ENHANCED: "ENHANCED",
|
|
503
|
-
};
|
|
504
|
-
export class ImageAlreadyExistsException extends __BaseException {
|
|
505
|
-
name = "ImageAlreadyExistsException";
|
|
506
|
-
$fault = "client";
|
|
507
|
-
constructor(opts) {
|
|
508
|
-
super({
|
|
509
|
-
name: "ImageAlreadyExistsException",
|
|
510
|
-
$fault: "client",
|
|
511
|
-
...opts,
|
|
512
|
-
});
|
|
513
|
-
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
export class ImageDigestDoesNotMatchException extends __BaseException {
|
|
517
|
-
name = "ImageDigestDoesNotMatchException";
|
|
518
|
-
$fault = "client";
|
|
519
|
-
constructor(opts) {
|
|
520
|
-
super({
|
|
521
|
-
name: "ImageDigestDoesNotMatchException",
|
|
522
|
-
$fault: "client",
|
|
523
|
-
...opts,
|
|
524
|
-
});
|
|
525
|
-
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
526
|
-
}
|
|
527
|
-
}
|
|
528
|
-
export class ImageTagAlreadyExistsException extends __BaseException {
|
|
529
|
-
name = "ImageTagAlreadyExistsException";
|
|
530
|
-
$fault = "client";
|
|
531
|
-
constructor(opts) {
|
|
532
|
-
super({
|
|
533
|
-
name: "ImageTagAlreadyExistsException",
|
|
534
|
-
$fault: "client",
|
|
535
|
-
...opts,
|
|
536
|
-
});
|
|
537
|
-
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
export class ReferencedImagesNotFoundException extends __BaseException {
|
|
541
|
-
name = "ReferencedImagesNotFoundException";
|
|
542
|
-
$fault = "client";
|
|
543
|
-
constructor(opts) {
|
|
544
|
-
super({
|
|
545
|
-
name: "ReferencedImagesNotFoundException",
|
|
546
|
-
$fault: "client",
|
|
547
|
-
...opts,
|
|
548
|
-
});
|
|
549
|
-
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
export class UnsupportedImageTypeException extends __BaseException {
|
|
553
|
-
name = "UnsupportedImageTypeException";
|
|
554
|
-
$fault = "client";
|
|
555
|
-
constructor(opts) {
|
|
556
|
-
super({
|
|
557
|
-
name: "UnsupportedImageTypeException",
|
|
558
|
-
$fault: "client",
|
|
559
|
-
...opts,
|
|
560
|
-
});
|
|
561
|
-
Object.setPrototypeOf(this, UnsupportedImageTypeException.prototype);
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
export class LifecyclePolicyPreviewInProgressException extends __BaseException {
|
|
565
|
-
name = "LifecyclePolicyPreviewInProgressException";
|
|
566
|
-
$fault = "client";
|
|
567
|
-
constructor(opts) {
|
|
568
|
-
super({
|
|
569
|
-
name: "LifecyclePolicyPreviewInProgressException",
|
|
570
|
-
$fault: "client",
|
|
571
|
-
...opts,
|
|
572
|
-
});
|
|
573
|
-
Object.setPrototypeOf(this, LifecyclePolicyPreviewInProgressException.prototype);
|
|
574
|
-
}
|
|
575
|
-
}
|
|
576
|
-
export class InvalidLayerPartException extends __BaseException {
|
|
577
|
-
name = "InvalidLayerPartException";
|
|
578
|
-
$fault = "client";
|
|
579
|
-
registryId;
|
|
580
|
-
repositoryName;
|
|
581
|
-
uploadId;
|
|
582
|
-
lastValidByteReceived;
|
|
583
|
-
constructor(opts) {
|
|
584
|
-
super({
|
|
585
|
-
name: "InvalidLayerPartException",
|
|
586
|
-
$fault: "client",
|
|
587
|
-
...opts,
|
|
588
|
-
});
|
|
589
|
-
Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
|
|
590
|
-
this.registryId = opts.registryId;
|
|
591
|
-
this.repositoryName = opts.repositoryName;
|
|
592
|
-
this.uploadId = opts.uploadId;
|
|
593
|
-
this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
594
|
-
}
|
|
595
|
-
}
|
|
1
|
+
export {};
|