@aws-sdk/client-ecr 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ECR.d.ts +0 -41
- package/dist-types/ts3.4/ECRClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetImageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetRepositoryScanningConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePullThroughCacheRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePullThroughCacheRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRegistryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeImageReplicationStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeImageScanFindingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribePullThroughCacheRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDownloadUrlForLayerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLifecyclePolicyPreviewCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRegistryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRegistryScanningConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListImagesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutImageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutImageScanningConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutImageTagMutabilityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutRegistryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutRegistryScanningConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutReplicationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartImageScanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartLifecyclePolicyPreviewCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ECRServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -503
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForImageScanComplete.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForLifecyclePolicyPreviewComplete.d.ts +0 -2
- package/package.json +27 -27
|
@@ -2,79 +2,58 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { ECRServiceException as __BaseException } from "./ECRServiceException";
|
|
3
3
|
export interface BatchCheckLayerAvailabilityRequest {
|
|
4
4
|
registryId?: string;
|
|
5
|
-
|
|
6
5
|
repositoryName: string | undefined;
|
|
7
|
-
|
|
8
6
|
layerDigests: string[] | undefined;
|
|
9
7
|
}
|
|
10
8
|
export declare enum LayerFailureCode {
|
|
11
9
|
InvalidLayerDigest = "InvalidLayerDigest",
|
|
12
10
|
MissingLayerDigest = "MissingLayerDigest",
|
|
13
11
|
}
|
|
14
|
-
|
|
15
12
|
export interface LayerFailure {
|
|
16
13
|
layerDigest?: string;
|
|
17
|
-
|
|
18
14
|
failureCode?: LayerFailureCode | string;
|
|
19
|
-
|
|
20
15
|
failureReason?: string;
|
|
21
16
|
}
|
|
22
17
|
export declare enum LayerAvailability {
|
|
23
18
|
AVAILABLE = "AVAILABLE",
|
|
24
19
|
UNAVAILABLE = "UNAVAILABLE",
|
|
25
20
|
}
|
|
26
|
-
|
|
27
21
|
export interface Layer {
|
|
28
22
|
layerDigest?: string;
|
|
29
|
-
|
|
30
23
|
layerAvailability?: LayerAvailability | string;
|
|
31
|
-
|
|
32
24
|
layerSize?: number;
|
|
33
|
-
|
|
34
25
|
mediaType?: string;
|
|
35
26
|
}
|
|
36
27
|
export interface BatchCheckLayerAvailabilityResponse {
|
|
37
28
|
layers?: Layer[];
|
|
38
|
-
|
|
39
29
|
failures?: LayerFailure[];
|
|
40
30
|
}
|
|
41
|
-
|
|
42
31
|
export declare class InvalidParameterException extends __BaseException {
|
|
43
32
|
readonly name: "InvalidParameterException";
|
|
44
33
|
readonly $fault: "client";
|
|
45
|
-
|
|
46
34
|
constructor(
|
|
47
35
|
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
48
36
|
);
|
|
49
37
|
}
|
|
50
|
-
|
|
51
38
|
export declare class RepositoryNotFoundException extends __BaseException {
|
|
52
39
|
readonly name: "RepositoryNotFoundException";
|
|
53
40
|
readonly $fault: "client";
|
|
54
|
-
|
|
55
41
|
constructor(
|
|
56
42
|
opts: __ExceptionOptionType<RepositoryNotFoundException, __BaseException>
|
|
57
43
|
);
|
|
58
44
|
}
|
|
59
|
-
|
|
60
45
|
export declare class ServerException extends __BaseException {
|
|
61
46
|
readonly name: "ServerException";
|
|
62
47
|
readonly $fault: "server";
|
|
63
|
-
|
|
64
48
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
65
49
|
}
|
|
66
|
-
|
|
67
50
|
export interface ImageIdentifier {
|
|
68
51
|
imageDigest?: string;
|
|
69
|
-
|
|
70
52
|
imageTag?: string;
|
|
71
53
|
}
|
|
72
|
-
|
|
73
54
|
export interface BatchDeleteImageRequest {
|
|
74
55
|
registryId?: string;
|
|
75
|
-
|
|
76
56
|
repositoryName: string | undefined;
|
|
77
|
-
|
|
78
57
|
imageIds: ImageIdentifier[] | undefined;
|
|
79
58
|
}
|
|
80
59
|
export declare enum ImageFailureCode {
|
|
@@ -86,43 +65,30 @@ export declare enum ImageFailureCode {
|
|
|
86
65
|
KmsError = "KmsError",
|
|
87
66
|
MissingDigestAndTag = "MissingDigestAndTag",
|
|
88
67
|
}
|
|
89
|
-
|
|
90
68
|
export interface ImageFailure {
|
|
91
69
|
imageId?: ImageIdentifier;
|
|
92
|
-
|
|
93
70
|
failureCode?: ImageFailureCode | string;
|
|
94
|
-
|
|
95
71
|
failureReason?: string;
|
|
96
72
|
}
|
|
97
73
|
export interface BatchDeleteImageResponse {
|
|
98
74
|
imageIds?: ImageIdentifier[];
|
|
99
|
-
|
|
100
75
|
failures?: ImageFailure[];
|
|
101
76
|
}
|
|
102
77
|
export interface BatchGetImageRequest {
|
|
103
78
|
registryId?: string;
|
|
104
|
-
|
|
105
79
|
repositoryName: string | undefined;
|
|
106
|
-
|
|
107
80
|
imageIds: ImageIdentifier[] | undefined;
|
|
108
|
-
|
|
109
81
|
acceptedMediaTypes?: string[];
|
|
110
82
|
}
|
|
111
|
-
|
|
112
83
|
export interface Image {
|
|
113
84
|
registryId?: string;
|
|
114
|
-
|
|
115
85
|
repositoryName?: string;
|
|
116
|
-
|
|
117
86
|
imageId?: ImageIdentifier;
|
|
118
|
-
|
|
119
87
|
imageManifest?: string;
|
|
120
|
-
|
|
121
88
|
imageManifestMediaType?: string;
|
|
122
89
|
}
|
|
123
90
|
export interface BatchGetImageResponse {
|
|
124
91
|
images?: Image[];
|
|
125
|
-
|
|
126
92
|
failures?: ImageFailure[];
|
|
127
93
|
}
|
|
128
94
|
export interface BatchGetRepositoryScanningConfigurationRequest {
|
|
@@ -131,21 +97,16 @@ export interface BatchGetRepositoryScanningConfigurationRequest {
|
|
|
131
97
|
export declare enum ScanningConfigurationFailureCode {
|
|
132
98
|
REPOSITORY_NOT_FOUND = "REPOSITORY_NOT_FOUND",
|
|
133
99
|
}
|
|
134
|
-
|
|
135
100
|
export interface RepositoryScanningConfigurationFailure {
|
|
136
101
|
repositoryName?: string;
|
|
137
|
-
|
|
138
102
|
failureCode?: ScanningConfigurationFailureCode | string;
|
|
139
|
-
|
|
140
103
|
failureReason?: string;
|
|
141
104
|
}
|
|
142
105
|
export declare enum ScanningRepositoryFilterType {
|
|
143
106
|
WILDCARD = "WILDCARD",
|
|
144
107
|
}
|
|
145
|
-
|
|
146
108
|
export interface ScanningRepositoryFilter {
|
|
147
109
|
filter: string | undefined;
|
|
148
|
-
|
|
149
110
|
filterType: ScanningRepositoryFilterType | string | undefined;
|
|
150
111
|
}
|
|
151
112
|
export declare enum ScanFrequency {
|
|
@@ -153,134 +114,98 @@ export declare enum ScanFrequency {
|
|
|
153
114
|
MANUAL = "MANUAL",
|
|
154
115
|
SCAN_ON_PUSH = "SCAN_ON_PUSH",
|
|
155
116
|
}
|
|
156
|
-
|
|
157
117
|
export interface RepositoryScanningConfiguration {
|
|
158
118
|
repositoryArn?: string;
|
|
159
|
-
|
|
160
119
|
repositoryName?: string;
|
|
161
|
-
|
|
162
120
|
scanOnPush?: boolean;
|
|
163
|
-
|
|
164
121
|
scanFrequency?: ScanFrequency | string;
|
|
165
|
-
|
|
166
122
|
appliedScanFilters?: ScanningRepositoryFilter[];
|
|
167
123
|
}
|
|
168
124
|
export interface BatchGetRepositoryScanningConfigurationResponse {
|
|
169
125
|
scanningConfigurations?: RepositoryScanningConfiguration[];
|
|
170
|
-
|
|
171
126
|
failures?: RepositoryScanningConfigurationFailure[];
|
|
172
127
|
}
|
|
173
|
-
|
|
174
128
|
export declare class ValidationException extends __BaseException {
|
|
175
129
|
readonly name: "ValidationException";
|
|
176
130
|
readonly $fault: "client";
|
|
177
|
-
|
|
178
131
|
constructor(
|
|
179
132
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
180
133
|
);
|
|
181
134
|
}
|
|
182
135
|
export interface CompleteLayerUploadRequest {
|
|
183
136
|
registryId?: string;
|
|
184
|
-
|
|
185
137
|
repositoryName: string | undefined;
|
|
186
|
-
|
|
187
138
|
uploadId: string | undefined;
|
|
188
|
-
|
|
189
139
|
layerDigests: string[] | undefined;
|
|
190
140
|
}
|
|
191
141
|
export interface CompleteLayerUploadResponse {
|
|
192
142
|
registryId?: string;
|
|
193
|
-
|
|
194
143
|
repositoryName?: string;
|
|
195
|
-
|
|
196
144
|
uploadId?: string;
|
|
197
|
-
|
|
198
145
|
layerDigest?: string;
|
|
199
146
|
}
|
|
200
|
-
|
|
201
147
|
export declare class EmptyUploadException extends __BaseException {
|
|
202
148
|
readonly name: "EmptyUploadException";
|
|
203
149
|
readonly $fault: "client";
|
|
204
|
-
|
|
205
150
|
constructor(
|
|
206
151
|
opts: __ExceptionOptionType<EmptyUploadException, __BaseException>
|
|
207
152
|
);
|
|
208
153
|
}
|
|
209
|
-
|
|
210
154
|
export declare class InvalidLayerException extends __BaseException {
|
|
211
155
|
readonly name: "InvalidLayerException";
|
|
212
156
|
readonly $fault: "client";
|
|
213
|
-
|
|
214
157
|
constructor(
|
|
215
158
|
opts: __ExceptionOptionType<InvalidLayerException, __BaseException>
|
|
216
159
|
);
|
|
217
160
|
}
|
|
218
|
-
|
|
219
161
|
export declare class KmsException extends __BaseException {
|
|
220
162
|
readonly name: "KmsException";
|
|
221
163
|
readonly $fault: "client";
|
|
222
|
-
|
|
223
164
|
kmsError?: string;
|
|
224
|
-
|
|
225
165
|
constructor(opts: __ExceptionOptionType<KmsException, __BaseException>);
|
|
226
166
|
}
|
|
227
|
-
|
|
228
167
|
export declare class LayerAlreadyExistsException extends __BaseException {
|
|
229
168
|
readonly name: "LayerAlreadyExistsException";
|
|
230
169
|
readonly $fault: "client";
|
|
231
|
-
|
|
232
170
|
constructor(
|
|
233
171
|
opts: __ExceptionOptionType<LayerAlreadyExistsException, __BaseException>
|
|
234
172
|
);
|
|
235
173
|
}
|
|
236
|
-
|
|
237
174
|
export declare class LayerPartTooSmallException extends __BaseException {
|
|
238
175
|
readonly name: "LayerPartTooSmallException";
|
|
239
176
|
readonly $fault: "client";
|
|
240
|
-
|
|
241
177
|
constructor(
|
|
242
178
|
opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>
|
|
243
179
|
);
|
|
244
180
|
}
|
|
245
|
-
|
|
246
181
|
export declare class UploadNotFoundException extends __BaseException {
|
|
247
182
|
readonly name: "UploadNotFoundException";
|
|
248
183
|
readonly $fault: "client";
|
|
249
|
-
|
|
250
184
|
constructor(
|
|
251
185
|
opts: __ExceptionOptionType<UploadNotFoundException, __BaseException>
|
|
252
186
|
);
|
|
253
187
|
}
|
|
254
188
|
export interface CreatePullThroughCacheRuleRequest {
|
|
255
189
|
ecrRepositoryPrefix: string | undefined;
|
|
256
|
-
|
|
257
190
|
upstreamRegistryUrl: string | undefined;
|
|
258
|
-
|
|
259
191
|
registryId?: string;
|
|
260
192
|
}
|
|
261
193
|
export interface CreatePullThroughCacheRuleResponse {
|
|
262
194
|
ecrRepositoryPrefix?: string;
|
|
263
|
-
|
|
264
195
|
upstreamRegistryUrl?: string;
|
|
265
|
-
|
|
266
196
|
createdAt?: Date;
|
|
267
|
-
|
|
268
197
|
registryId?: string;
|
|
269
198
|
}
|
|
270
|
-
|
|
271
199
|
export declare class LimitExceededException extends __BaseException {
|
|
272
200
|
readonly name: "LimitExceededException";
|
|
273
201
|
readonly $fault: "client";
|
|
274
|
-
|
|
275
202
|
constructor(
|
|
276
203
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
277
204
|
);
|
|
278
205
|
}
|
|
279
|
-
|
|
280
206
|
export declare class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
|
|
281
207
|
readonly name: "PullThroughCacheRuleAlreadyExistsException";
|
|
282
208
|
readonly $fault: "client";
|
|
283
|
-
|
|
284
209
|
constructor(
|
|
285
210
|
opts: __ExceptionOptionType<
|
|
286
211
|
PullThroughCacheRuleAlreadyExistsException,
|
|
@@ -288,11 +213,9 @@ export declare class PullThroughCacheRuleAlreadyExistsException extends __BaseEx
|
|
|
288
213
|
>
|
|
289
214
|
);
|
|
290
215
|
}
|
|
291
|
-
|
|
292
216
|
export declare class UnsupportedUpstreamRegistryException extends __BaseException {
|
|
293
217
|
readonly name: "UnsupportedUpstreamRegistryException";
|
|
294
218
|
readonly $fault: "client";
|
|
295
|
-
|
|
296
219
|
constructor(
|
|
297
220
|
opts: __ExceptionOptionType<
|
|
298
221
|
UnsupportedUpstreamRegistryException,
|
|
@@ -304,13 +227,10 @@ export declare enum EncryptionType {
|
|
|
304
227
|
AES256 = "AES256",
|
|
305
228
|
KMS = "KMS",
|
|
306
229
|
}
|
|
307
|
-
|
|
308
230
|
export interface EncryptionConfiguration {
|
|
309
231
|
encryptionType: EncryptionType | string | undefined;
|
|
310
|
-
|
|
311
232
|
kmsKey?: string;
|
|
312
233
|
}
|
|
313
|
-
|
|
314
234
|
export interface ImageScanningConfiguration {
|
|
315
235
|
scanOnPush?: boolean;
|
|
316
236
|
}
|
|
@@ -318,60 +238,41 @@ export declare enum ImageTagMutability {
|
|
|
318
238
|
IMMUTABLE = "IMMUTABLE",
|
|
319
239
|
MUTABLE = "MUTABLE",
|
|
320
240
|
}
|
|
321
|
-
|
|
322
241
|
export interface Tag {
|
|
323
242
|
Key?: string;
|
|
324
|
-
|
|
325
243
|
Value?: string;
|
|
326
244
|
}
|
|
327
245
|
export interface CreateRepositoryRequest {
|
|
328
246
|
registryId?: string;
|
|
329
|
-
|
|
330
247
|
repositoryName: string | undefined;
|
|
331
|
-
|
|
332
248
|
tags?: Tag[];
|
|
333
|
-
|
|
334
249
|
imageTagMutability?: ImageTagMutability | string;
|
|
335
|
-
|
|
336
250
|
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
337
|
-
|
|
338
251
|
encryptionConfiguration?: EncryptionConfiguration;
|
|
339
252
|
}
|
|
340
|
-
|
|
341
253
|
export interface Repository {
|
|
342
254
|
repositoryArn?: string;
|
|
343
|
-
|
|
344
255
|
registryId?: string;
|
|
345
|
-
|
|
346
256
|
repositoryName?: string;
|
|
347
|
-
|
|
348
257
|
repositoryUri?: string;
|
|
349
|
-
|
|
350
258
|
createdAt?: Date;
|
|
351
|
-
|
|
352
259
|
imageTagMutability?: ImageTagMutability | string;
|
|
353
|
-
|
|
354
260
|
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
355
|
-
|
|
356
261
|
encryptionConfiguration?: EncryptionConfiguration;
|
|
357
262
|
}
|
|
358
263
|
export interface CreateRepositoryResponse {
|
|
359
264
|
repository?: Repository;
|
|
360
265
|
}
|
|
361
|
-
|
|
362
266
|
export declare class InvalidTagParameterException extends __BaseException {
|
|
363
267
|
readonly name: "InvalidTagParameterException";
|
|
364
268
|
readonly $fault: "client";
|
|
365
|
-
|
|
366
269
|
constructor(
|
|
367
270
|
opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>
|
|
368
271
|
);
|
|
369
272
|
}
|
|
370
|
-
|
|
371
273
|
export declare class RepositoryAlreadyExistsException extends __BaseException {
|
|
372
274
|
readonly name: "RepositoryAlreadyExistsException";
|
|
373
275
|
readonly $fault: "client";
|
|
374
|
-
|
|
375
276
|
constructor(
|
|
376
277
|
opts: __ExceptionOptionType<
|
|
377
278
|
RepositoryAlreadyExistsException,
|
|
@@ -379,34 +280,26 @@ export declare class RepositoryAlreadyExistsException extends __BaseException {
|
|
|
379
280
|
>
|
|
380
281
|
);
|
|
381
282
|
}
|
|
382
|
-
|
|
383
283
|
export declare class TooManyTagsException extends __BaseException {
|
|
384
284
|
readonly name: "TooManyTagsException";
|
|
385
285
|
readonly $fault: "client";
|
|
386
|
-
|
|
387
286
|
constructor(
|
|
388
287
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
389
288
|
);
|
|
390
289
|
}
|
|
391
290
|
export interface DeleteLifecyclePolicyRequest {
|
|
392
291
|
registryId?: string;
|
|
393
|
-
|
|
394
292
|
repositoryName: string | undefined;
|
|
395
293
|
}
|
|
396
294
|
export interface DeleteLifecyclePolicyResponse {
|
|
397
295
|
registryId?: string;
|
|
398
|
-
|
|
399
296
|
repositoryName?: string;
|
|
400
|
-
|
|
401
297
|
lifecyclePolicyText?: string;
|
|
402
|
-
|
|
403
298
|
lastEvaluatedAt?: Date;
|
|
404
299
|
}
|
|
405
|
-
|
|
406
300
|
export declare class LifecyclePolicyNotFoundException extends __BaseException {
|
|
407
301
|
readonly name: "LifecyclePolicyNotFoundException";
|
|
408
302
|
readonly $fault: "client";
|
|
409
|
-
|
|
410
303
|
constructor(
|
|
411
304
|
opts: __ExceptionOptionType<
|
|
412
305
|
LifecyclePolicyNotFoundException,
|
|
@@ -416,23 +309,17 @@ export declare class LifecyclePolicyNotFoundException extends __BaseException {
|
|
|
416
309
|
}
|
|
417
310
|
export interface DeletePullThroughCacheRuleRequest {
|
|
418
311
|
ecrRepositoryPrefix: string | undefined;
|
|
419
|
-
|
|
420
312
|
registryId?: string;
|
|
421
313
|
}
|
|
422
314
|
export interface DeletePullThroughCacheRuleResponse {
|
|
423
315
|
ecrRepositoryPrefix?: string;
|
|
424
|
-
|
|
425
316
|
upstreamRegistryUrl?: string;
|
|
426
|
-
|
|
427
317
|
createdAt?: Date;
|
|
428
|
-
|
|
429
318
|
registryId?: string;
|
|
430
319
|
}
|
|
431
|
-
|
|
432
320
|
export declare class PullThroughCacheRuleNotFoundException extends __BaseException {
|
|
433
321
|
readonly name: "PullThroughCacheRuleNotFoundException";
|
|
434
322
|
readonly $fault: "client";
|
|
435
|
-
|
|
436
323
|
constructor(
|
|
437
324
|
opts: __ExceptionOptionType<
|
|
438
325
|
PullThroughCacheRuleNotFoundException,
|
|
@@ -443,14 +330,11 @@ export declare class PullThroughCacheRuleNotFoundException extends __BaseExcepti
|
|
|
443
330
|
export interface DeleteRegistryPolicyRequest {}
|
|
444
331
|
export interface DeleteRegistryPolicyResponse {
|
|
445
332
|
registryId?: string;
|
|
446
|
-
|
|
447
333
|
policyText?: string;
|
|
448
334
|
}
|
|
449
|
-
|
|
450
335
|
export declare class RegistryPolicyNotFoundException extends __BaseException {
|
|
451
336
|
readonly name: "RegistryPolicyNotFoundException";
|
|
452
337
|
readonly $fault: "client";
|
|
453
|
-
|
|
454
338
|
constructor(
|
|
455
339
|
opts: __ExceptionOptionType<
|
|
456
340
|
RegistryPolicyNotFoundException,
|
|
@@ -460,40 +344,31 @@ export declare class RegistryPolicyNotFoundException extends __BaseException {
|
|
|
460
344
|
}
|
|
461
345
|
export interface DeleteRepositoryRequest {
|
|
462
346
|
registryId?: string;
|
|
463
|
-
|
|
464
347
|
repositoryName: string | undefined;
|
|
465
|
-
|
|
466
348
|
force?: boolean;
|
|
467
349
|
}
|
|
468
350
|
export interface DeleteRepositoryResponse {
|
|
469
351
|
repository?: Repository;
|
|
470
352
|
}
|
|
471
|
-
|
|
472
353
|
export declare class RepositoryNotEmptyException extends __BaseException {
|
|
473
354
|
readonly name: "RepositoryNotEmptyException";
|
|
474
355
|
readonly $fault: "client";
|
|
475
|
-
|
|
476
356
|
constructor(
|
|
477
357
|
opts: __ExceptionOptionType<RepositoryNotEmptyException, __BaseException>
|
|
478
358
|
);
|
|
479
359
|
}
|
|
480
360
|
export interface DeleteRepositoryPolicyRequest {
|
|
481
361
|
registryId?: string;
|
|
482
|
-
|
|
483
362
|
repositoryName: string | undefined;
|
|
484
363
|
}
|
|
485
364
|
export interface DeleteRepositoryPolicyResponse {
|
|
486
365
|
registryId?: string;
|
|
487
|
-
|
|
488
366
|
repositoryName?: string;
|
|
489
|
-
|
|
490
367
|
policyText?: string;
|
|
491
368
|
}
|
|
492
|
-
|
|
493
369
|
export declare class RepositoryPolicyNotFoundException extends __BaseException {
|
|
494
370
|
readonly name: "RepositoryPolicyNotFoundException";
|
|
495
371
|
readonly $fault: "client";
|
|
496
|
-
|
|
497
372
|
constructor(
|
|
498
373
|
opts: __ExceptionOptionType<
|
|
499
374
|
RepositoryPolicyNotFoundException,
|
|
@@ -503,9 +378,7 @@ export declare class RepositoryPolicyNotFoundException extends __BaseException {
|
|
|
503
378
|
}
|
|
504
379
|
export interface DescribeImageReplicationStatusRequest {
|
|
505
380
|
repositoryName: string | undefined;
|
|
506
|
-
|
|
507
381
|
imageId: ImageIdentifier | undefined;
|
|
508
|
-
|
|
509
382
|
registryId?: string;
|
|
510
383
|
}
|
|
511
384
|
export declare enum ReplicationStatus {
|
|
@@ -513,28 +386,20 @@ export declare enum ReplicationStatus {
|
|
|
513
386
|
FAILED = "FAILED",
|
|
514
387
|
IN_PROGRESS = "IN_PROGRESS",
|
|
515
388
|
}
|
|
516
|
-
|
|
517
389
|
export interface ImageReplicationStatus {
|
|
518
390
|
region?: string;
|
|
519
|
-
|
|
520
391
|
registryId?: string;
|
|
521
|
-
|
|
522
392
|
status?: ReplicationStatus | string;
|
|
523
|
-
|
|
524
393
|
failureCode?: string;
|
|
525
394
|
}
|
|
526
395
|
export interface DescribeImageReplicationStatusResponse {
|
|
527
396
|
repositoryName?: string;
|
|
528
|
-
|
|
529
397
|
imageId?: ImageIdentifier;
|
|
530
|
-
|
|
531
398
|
replicationStatuses?: ImageReplicationStatus[];
|
|
532
399
|
}
|
|
533
|
-
|
|
534
400
|
export declare class ImageNotFoundException extends __BaseException {
|
|
535
401
|
readonly name: "ImageNotFoundException";
|
|
536
402
|
readonly $fault: "client";
|
|
537
|
-
|
|
538
403
|
constructor(
|
|
539
404
|
opts: __ExceptionOptionType<ImageNotFoundException, __BaseException>
|
|
540
405
|
);
|
|
@@ -544,21 +409,15 @@ export declare enum TagStatus {
|
|
|
544
409
|
TAGGED = "TAGGED",
|
|
545
410
|
UNTAGGED = "UNTAGGED",
|
|
546
411
|
}
|
|
547
|
-
|
|
548
412
|
export interface DescribeImagesFilter {
|
|
549
413
|
tagStatus?: TagStatus | string;
|
|
550
414
|
}
|
|
551
415
|
export interface DescribeImagesRequest {
|
|
552
416
|
registryId?: string;
|
|
553
|
-
|
|
554
417
|
repositoryName: string | undefined;
|
|
555
|
-
|
|
556
418
|
imageIds?: ImageIdentifier[];
|
|
557
|
-
|
|
558
419
|
nextToken?: string;
|
|
559
|
-
|
|
560
420
|
maxResults?: number;
|
|
561
|
-
|
|
562
421
|
filter?: DescribeImagesFilter;
|
|
563
422
|
}
|
|
564
423
|
export declare enum FindingSeverity {
|
|
@@ -569,12 +428,9 @@ export declare enum FindingSeverity {
|
|
|
569
428
|
MEDIUM = "MEDIUM",
|
|
570
429
|
UNDEFINED = "UNDEFINED",
|
|
571
430
|
}
|
|
572
|
-
|
|
573
431
|
export interface ImageScanFindingsSummary {
|
|
574
432
|
imageScanCompletedAt?: Date;
|
|
575
|
-
|
|
576
433
|
vulnerabilitySourceUpdatedAt?: Date;
|
|
577
|
-
|
|
578
434
|
findingSeverityCounts?: Record<string, number>;
|
|
579
435
|
}
|
|
580
436
|
export declare enum ScanStatus {
|
|
@@ -587,328 +443,207 @@ export declare enum ScanStatus {
|
|
|
587
443
|
SCAN_ELIGIBILITY_EXPIRED = "SCAN_ELIGIBILITY_EXPIRED",
|
|
588
444
|
UNSUPPORTED_IMAGE = "UNSUPPORTED_IMAGE",
|
|
589
445
|
}
|
|
590
|
-
|
|
591
446
|
export interface ImageScanStatus {
|
|
592
447
|
status?: ScanStatus | string;
|
|
593
|
-
|
|
594
448
|
description?: string;
|
|
595
449
|
}
|
|
596
|
-
|
|
597
450
|
export interface ImageDetail {
|
|
598
451
|
registryId?: string;
|
|
599
|
-
|
|
600
452
|
repositoryName?: string;
|
|
601
|
-
|
|
602
453
|
imageDigest?: string;
|
|
603
|
-
|
|
604
454
|
imageTags?: string[];
|
|
605
|
-
|
|
606
455
|
imageSizeInBytes?: number;
|
|
607
|
-
|
|
608
456
|
imagePushedAt?: Date;
|
|
609
|
-
|
|
610
457
|
imageScanStatus?: ImageScanStatus;
|
|
611
|
-
|
|
612
458
|
imageScanFindingsSummary?: ImageScanFindingsSummary;
|
|
613
|
-
|
|
614
459
|
imageManifestMediaType?: string;
|
|
615
|
-
|
|
616
460
|
artifactMediaType?: string;
|
|
617
|
-
|
|
618
461
|
lastRecordedPullTime?: Date;
|
|
619
462
|
}
|
|
620
463
|
export interface DescribeImagesResponse {
|
|
621
464
|
imageDetails?: ImageDetail[];
|
|
622
|
-
|
|
623
465
|
nextToken?: string;
|
|
624
466
|
}
|
|
625
467
|
export interface DescribeImageScanFindingsRequest {
|
|
626
468
|
registryId?: string;
|
|
627
|
-
|
|
628
469
|
repositoryName: string | undefined;
|
|
629
|
-
|
|
630
470
|
imageId: ImageIdentifier | undefined;
|
|
631
|
-
|
|
632
471
|
nextToken?: string;
|
|
633
|
-
|
|
634
472
|
maxResults?: number;
|
|
635
473
|
}
|
|
636
|
-
|
|
637
474
|
export interface CvssScore {
|
|
638
475
|
baseScore?: number;
|
|
639
|
-
|
|
640
476
|
scoringVector?: string;
|
|
641
|
-
|
|
642
477
|
source?: string;
|
|
643
|
-
|
|
644
478
|
version?: string;
|
|
645
479
|
}
|
|
646
|
-
|
|
647
480
|
export interface VulnerablePackage {
|
|
648
481
|
arch?: string;
|
|
649
|
-
|
|
650
482
|
epoch?: number;
|
|
651
|
-
|
|
652
483
|
filePath?: string;
|
|
653
|
-
|
|
654
484
|
name?: string;
|
|
655
|
-
|
|
656
485
|
packageManager?: string;
|
|
657
|
-
|
|
658
486
|
release?: string;
|
|
659
|
-
|
|
660
487
|
sourceLayerHash?: string;
|
|
661
|
-
|
|
662
488
|
version?: string;
|
|
663
489
|
}
|
|
664
|
-
|
|
665
490
|
export interface PackageVulnerabilityDetails {
|
|
666
491
|
cvss?: CvssScore[];
|
|
667
|
-
|
|
668
492
|
referenceUrls?: string[];
|
|
669
|
-
|
|
670
493
|
relatedVulnerabilities?: string[];
|
|
671
|
-
|
|
672
494
|
source?: string;
|
|
673
|
-
|
|
674
495
|
sourceUrl?: string;
|
|
675
|
-
|
|
676
496
|
vendorCreatedAt?: Date;
|
|
677
|
-
|
|
678
497
|
vendorSeverity?: string;
|
|
679
|
-
|
|
680
498
|
vendorUpdatedAt?: Date;
|
|
681
|
-
|
|
682
499
|
vulnerabilityId?: string;
|
|
683
|
-
|
|
684
500
|
vulnerablePackages?: VulnerablePackage[];
|
|
685
501
|
}
|
|
686
|
-
|
|
687
502
|
export interface Recommendation {
|
|
688
503
|
url?: string;
|
|
689
|
-
|
|
690
504
|
text?: string;
|
|
691
505
|
}
|
|
692
|
-
|
|
693
506
|
export interface Remediation {
|
|
694
507
|
recommendation?: Recommendation;
|
|
695
508
|
}
|
|
696
|
-
|
|
697
509
|
export interface AwsEcrContainerImageDetails {
|
|
698
510
|
architecture?: string;
|
|
699
|
-
|
|
700
511
|
author?: string;
|
|
701
|
-
|
|
702
512
|
imageHash?: string;
|
|
703
|
-
|
|
704
513
|
imageTags?: string[];
|
|
705
|
-
|
|
706
514
|
platform?: string;
|
|
707
|
-
|
|
708
515
|
pushedAt?: Date;
|
|
709
|
-
|
|
710
516
|
registry?: string;
|
|
711
|
-
|
|
712
517
|
repositoryName?: string;
|
|
713
518
|
}
|
|
714
|
-
|
|
715
519
|
export interface ResourceDetails {
|
|
716
520
|
awsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
717
521
|
}
|
|
718
|
-
|
|
719
522
|
export interface Resource {
|
|
720
523
|
details?: ResourceDetails;
|
|
721
|
-
|
|
722
524
|
id?: string;
|
|
723
|
-
|
|
724
525
|
tags?: Record<string, string>;
|
|
725
|
-
|
|
726
526
|
type?: string;
|
|
727
527
|
}
|
|
728
|
-
|
|
729
528
|
export interface CvssScoreAdjustment {
|
|
730
529
|
metric?: string;
|
|
731
|
-
|
|
732
530
|
reason?: string;
|
|
733
531
|
}
|
|
734
|
-
|
|
735
532
|
export interface CvssScoreDetails {
|
|
736
533
|
adjustments?: CvssScoreAdjustment[];
|
|
737
|
-
|
|
738
534
|
score?: number;
|
|
739
|
-
|
|
740
535
|
scoreSource?: string;
|
|
741
|
-
|
|
742
536
|
scoringVector?: string;
|
|
743
|
-
|
|
744
537
|
version?: string;
|
|
745
538
|
}
|
|
746
|
-
|
|
747
539
|
export interface ScoreDetails {
|
|
748
540
|
cvss?: CvssScoreDetails;
|
|
749
541
|
}
|
|
750
|
-
|
|
751
542
|
export interface EnhancedImageScanFinding {
|
|
752
543
|
awsAccountId?: string;
|
|
753
|
-
|
|
754
544
|
description?: string;
|
|
755
|
-
|
|
756
545
|
findingArn?: string;
|
|
757
|
-
|
|
758
546
|
firstObservedAt?: Date;
|
|
759
|
-
|
|
760
547
|
lastObservedAt?: Date;
|
|
761
|
-
|
|
762
548
|
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
763
|
-
|
|
764
549
|
remediation?: Remediation;
|
|
765
|
-
|
|
766
550
|
resources?: Resource[];
|
|
767
|
-
|
|
768
551
|
score?: number;
|
|
769
|
-
|
|
770
552
|
scoreDetails?: ScoreDetails;
|
|
771
|
-
|
|
772
553
|
severity?: string;
|
|
773
|
-
|
|
774
554
|
status?: string;
|
|
775
|
-
|
|
776
555
|
title?: string;
|
|
777
|
-
|
|
778
556
|
type?: string;
|
|
779
|
-
|
|
780
557
|
updatedAt?: Date;
|
|
781
558
|
}
|
|
782
|
-
|
|
783
559
|
export interface Attribute {
|
|
784
560
|
key: string | undefined;
|
|
785
|
-
|
|
786
561
|
value?: string;
|
|
787
562
|
}
|
|
788
|
-
|
|
789
563
|
export interface ImageScanFinding {
|
|
790
564
|
name?: string;
|
|
791
|
-
|
|
792
565
|
description?: string;
|
|
793
|
-
|
|
794
566
|
uri?: string;
|
|
795
|
-
|
|
796
567
|
severity?: FindingSeverity | string;
|
|
797
|
-
|
|
798
568
|
attributes?: Attribute[];
|
|
799
569
|
}
|
|
800
|
-
|
|
801
570
|
export interface ImageScanFindings {
|
|
802
571
|
imageScanCompletedAt?: Date;
|
|
803
|
-
|
|
804
572
|
vulnerabilitySourceUpdatedAt?: Date;
|
|
805
|
-
|
|
806
573
|
findingSeverityCounts?: Record<string, number>;
|
|
807
|
-
|
|
808
574
|
findings?: ImageScanFinding[];
|
|
809
|
-
|
|
810
575
|
enhancedFindings?: EnhancedImageScanFinding[];
|
|
811
576
|
}
|
|
812
577
|
export interface DescribeImageScanFindingsResponse {
|
|
813
578
|
registryId?: string;
|
|
814
|
-
|
|
815
579
|
repositoryName?: string;
|
|
816
|
-
|
|
817
580
|
imageId?: ImageIdentifier;
|
|
818
|
-
|
|
819
581
|
imageScanStatus?: ImageScanStatus;
|
|
820
|
-
|
|
821
582
|
imageScanFindings?: ImageScanFindings;
|
|
822
|
-
|
|
823
583
|
nextToken?: string;
|
|
824
584
|
}
|
|
825
|
-
|
|
826
585
|
export declare class ScanNotFoundException extends __BaseException {
|
|
827
586
|
readonly name: "ScanNotFoundException";
|
|
828
587
|
readonly $fault: "client";
|
|
829
|
-
|
|
830
588
|
constructor(
|
|
831
589
|
opts: __ExceptionOptionType<ScanNotFoundException, __BaseException>
|
|
832
590
|
);
|
|
833
591
|
}
|
|
834
592
|
export interface DescribePullThroughCacheRulesRequest {
|
|
835
593
|
registryId?: string;
|
|
836
|
-
|
|
837
594
|
ecrRepositoryPrefixes?: string[];
|
|
838
|
-
|
|
839
595
|
nextToken?: string;
|
|
840
|
-
|
|
841
596
|
maxResults?: number;
|
|
842
597
|
}
|
|
843
|
-
|
|
844
598
|
export interface PullThroughCacheRule {
|
|
845
599
|
ecrRepositoryPrefix?: string;
|
|
846
|
-
|
|
847
600
|
upstreamRegistryUrl?: string;
|
|
848
|
-
|
|
849
601
|
createdAt?: Date;
|
|
850
|
-
|
|
851
602
|
registryId?: string;
|
|
852
603
|
}
|
|
853
604
|
export interface DescribePullThroughCacheRulesResponse {
|
|
854
605
|
pullThroughCacheRules?: PullThroughCacheRule[];
|
|
855
|
-
|
|
856
606
|
nextToken?: string;
|
|
857
607
|
}
|
|
858
608
|
export interface DescribeRegistryRequest {}
|
|
859
|
-
|
|
860
609
|
export interface ReplicationDestination {
|
|
861
610
|
region: string | undefined;
|
|
862
|
-
|
|
863
611
|
registryId: string | undefined;
|
|
864
612
|
}
|
|
865
613
|
export declare enum RepositoryFilterType {
|
|
866
614
|
PREFIX_MATCH = "PREFIX_MATCH",
|
|
867
615
|
}
|
|
868
|
-
|
|
869
616
|
export interface RepositoryFilter {
|
|
870
617
|
filter: string | undefined;
|
|
871
|
-
|
|
872
618
|
filterType: RepositoryFilterType | string | undefined;
|
|
873
619
|
}
|
|
874
|
-
|
|
875
620
|
export interface ReplicationRule {
|
|
876
621
|
destinations: ReplicationDestination[] | undefined;
|
|
877
|
-
|
|
878
622
|
repositoryFilters?: RepositoryFilter[];
|
|
879
623
|
}
|
|
880
|
-
|
|
881
624
|
export interface ReplicationConfiguration {
|
|
882
625
|
rules: ReplicationRule[] | undefined;
|
|
883
626
|
}
|
|
884
627
|
export interface DescribeRegistryResponse {
|
|
885
628
|
registryId?: string;
|
|
886
|
-
|
|
887
629
|
replicationConfiguration?: ReplicationConfiguration;
|
|
888
630
|
}
|
|
889
631
|
export interface DescribeRepositoriesRequest {
|
|
890
632
|
registryId?: string;
|
|
891
|
-
|
|
892
633
|
repositoryNames?: string[];
|
|
893
|
-
|
|
894
634
|
nextToken?: string;
|
|
895
|
-
|
|
896
635
|
maxResults?: number;
|
|
897
636
|
}
|
|
898
637
|
export interface DescribeRepositoriesResponse {
|
|
899
638
|
repositories?: Repository[];
|
|
900
|
-
|
|
901
639
|
nextToken?: string;
|
|
902
640
|
}
|
|
903
641
|
export interface GetAuthorizationTokenRequest {
|
|
904
642
|
registryIds?: string[];
|
|
905
643
|
}
|
|
906
|
-
|
|
907
644
|
export interface AuthorizationData {
|
|
908
645
|
authorizationToken?: string;
|
|
909
|
-
|
|
910
646
|
expiresAt?: Date;
|
|
911
|
-
|
|
912
647
|
proxyEndpoint?: string;
|
|
913
648
|
}
|
|
914
649
|
export interface GetAuthorizationTokenResponse {
|
|
@@ -916,82 +651,59 @@ export interface GetAuthorizationTokenResponse {
|
|
|
916
651
|
}
|
|
917
652
|
export interface GetDownloadUrlForLayerRequest {
|
|
918
653
|
registryId?: string;
|
|
919
|
-
|
|
920
654
|
repositoryName: string | undefined;
|
|
921
|
-
|
|
922
655
|
layerDigest: string | undefined;
|
|
923
656
|
}
|
|
924
657
|
export interface GetDownloadUrlForLayerResponse {
|
|
925
658
|
downloadUrl?: string;
|
|
926
|
-
|
|
927
659
|
layerDigest?: string;
|
|
928
660
|
}
|
|
929
|
-
|
|
930
661
|
export declare class LayerInaccessibleException extends __BaseException {
|
|
931
662
|
readonly name: "LayerInaccessibleException";
|
|
932
663
|
readonly $fault: "client";
|
|
933
|
-
|
|
934
664
|
constructor(
|
|
935
665
|
opts: __ExceptionOptionType<LayerInaccessibleException, __BaseException>
|
|
936
666
|
);
|
|
937
667
|
}
|
|
938
|
-
|
|
939
668
|
export declare class LayersNotFoundException extends __BaseException {
|
|
940
669
|
readonly name: "LayersNotFoundException";
|
|
941
670
|
readonly $fault: "client";
|
|
942
|
-
|
|
943
671
|
constructor(
|
|
944
672
|
opts: __ExceptionOptionType<LayersNotFoundException, __BaseException>
|
|
945
673
|
);
|
|
946
674
|
}
|
|
947
675
|
export interface GetLifecyclePolicyRequest {
|
|
948
676
|
registryId?: string;
|
|
949
|
-
|
|
950
677
|
repositoryName: string | undefined;
|
|
951
678
|
}
|
|
952
679
|
export interface GetLifecyclePolicyResponse {
|
|
953
680
|
registryId?: string;
|
|
954
|
-
|
|
955
681
|
repositoryName?: string;
|
|
956
|
-
|
|
957
682
|
lifecyclePolicyText?: string;
|
|
958
|
-
|
|
959
683
|
lastEvaluatedAt?: Date;
|
|
960
684
|
}
|
|
961
|
-
|
|
962
685
|
export interface LifecyclePolicyPreviewFilter {
|
|
963
686
|
tagStatus?: TagStatus | string;
|
|
964
687
|
}
|
|
965
688
|
export interface GetLifecyclePolicyPreviewRequest {
|
|
966
689
|
registryId?: string;
|
|
967
|
-
|
|
968
690
|
repositoryName: string | undefined;
|
|
969
|
-
|
|
970
691
|
imageIds?: ImageIdentifier[];
|
|
971
|
-
|
|
972
692
|
nextToken?: string;
|
|
973
|
-
|
|
974
693
|
maxResults?: number;
|
|
975
|
-
|
|
976
694
|
filter?: LifecyclePolicyPreviewFilter;
|
|
977
695
|
}
|
|
978
696
|
export declare enum ImageActionType {
|
|
979
697
|
EXPIRE = "EXPIRE",
|
|
980
698
|
}
|
|
981
|
-
|
|
982
699
|
export interface LifecyclePolicyRuleAction {
|
|
983
700
|
type?: ImageActionType | string;
|
|
984
701
|
}
|
|
985
|
-
|
|
986
702
|
export interface LifecyclePolicyPreviewResult {
|
|
987
703
|
imageTags?: string[];
|
|
988
|
-
|
|
989
704
|
imageDigest?: string;
|
|
990
|
-
|
|
991
705
|
imagePushedAt?: Date;
|
|
992
|
-
|
|
993
706
|
action?: LifecyclePolicyRuleAction;
|
|
994
|
-
|
|
995
707
|
appliedRulePriority?: number;
|
|
996
708
|
}
|
|
997
709
|
export declare enum LifecyclePolicyPreviewStatus {
|
|
@@ -1000,30 +712,21 @@ export declare enum LifecyclePolicyPreviewStatus {
|
|
|
1000
712
|
FAILED = "FAILED",
|
|
1001
713
|
IN_PROGRESS = "IN_PROGRESS",
|
|
1002
714
|
}
|
|
1003
|
-
|
|
1004
715
|
export interface LifecyclePolicyPreviewSummary {
|
|
1005
716
|
expiringImageTotalCount?: number;
|
|
1006
717
|
}
|
|
1007
718
|
export interface GetLifecyclePolicyPreviewResponse {
|
|
1008
719
|
registryId?: string;
|
|
1009
|
-
|
|
1010
720
|
repositoryName?: string;
|
|
1011
|
-
|
|
1012
721
|
lifecyclePolicyText?: string;
|
|
1013
|
-
|
|
1014
722
|
status?: LifecyclePolicyPreviewStatus | string;
|
|
1015
|
-
|
|
1016
723
|
nextToken?: string;
|
|
1017
|
-
|
|
1018
724
|
previewResults?: LifecyclePolicyPreviewResult[];
|
|
1019
|
-
|
|
1020
725
|
summary?: LifecyclePolicyPreviewSummary;
|
|
1021
726
|
}
|
|
1022
|
-
|
|
1023
727
|
export declare class LifecyclePolicyPreviewNotFoundException extends __BaseException {
|
|
1024
728
|
readonly name: "LifecyclePolicyPreviewNotFoundException";
|
|
1025
729
|
readonly $fault: "client";
|
|
1026
|
-
|
|
1027
730
|
constructor(
|
|
1028
731
|
opts: __ExceptionOptionType<
|
|
1029
732
|
LifecyclePolicyPreviewNotFoundException,
|
|
@@ -1034,71 +737,54 @@ export declare class LifecyclePolicyPreviewNotFoundException extends __BaseExcep
|
|
|
1034
737
|
export interface GetRegistryPolicyRequest {}
|
|
1035
738
|
export interface GetRegistryPolicyResponse {
|
|
1036
739
|
registryId?: string;
|
|
1037
|
-
|
|
1038
740
|
policyText?: string;
|
|
1039
741
|
}
|
|
1040
742
|
export interface GetRegistryScanningConfigurationRequest {}
|
|
1041
|
-
|
|
1042
743
|
export interface RegistryScanningRule {
|
|
1043
744
|
scanFrequency: ScanFrequency | string | undefined;
|
|
1044
|
-
|
|
1045
745
|
repositoryFilters: ScanningRepositoryFilter[] | undefined;
|
|
1046
746
|
}
|
|
1047
747
|
export declare enum ScanType {
|
|
1048
748
|
BASIC = "BASIC",
|
|
1049
749
|
ENHANCED = "ENHANCED",
|
|
1050
750
|
}
|
|
1051
|
-
|
|
1052
751
|
export interface RegistryScanningConfiguration {
|
|
1053
752
|
scanType?: ScanType | string;
|
|
1054
|
-
|
|
1055
753
|
rules?: RegistryScanningRule[];
|
|
1056
754
|
}
|
|
1057
755
|
export interface GetRegistryScanningConfigurationResponse {
|
|
1058
756
|
registryId?: string;
|
|
1059
|
-
|
|
1060
757
|
scanningConfiguration?: RegistryScanningConfiguration;
|
|
1061
758
|
}
|
|
1062
759
|
export interface GetRepositoryPolicyRequest {
|
|
1063
760
|
registryId?: string;
|
|
1064
|
-
|
|
1065
761
|
repositoryName: string | undefined;
|
|
1066
762
|
}
|
|
1067
763
|
export interface GetRepositoryPolicyResponse {
|
|
1068
764
|
registryId?: string;
|
|
1069
|
-
|
|
1070
765
|
repositoryName?: string;
|
|
1071
|
-
|
|
1072
766
|
policyText?: string;
|
|
1073
767
|
}
|
|
1074
768
|
export interface InitiateLayerUploadRequest {
|
|
1075
769
|
registryId?: string;
|
|
1076
|
-
|
|
1077
770
|
repositoryName: string | undefined;
|
|
1078
771
|
}
|
|
1079
772
|
export interface InitiateLayerUploadResponse {
|
|
1080
773
|
uploadId?: string;
|
|
1081
|
-
|
|
1082
774
|
partSize?: number;
|
|
1083
775
|
}
|
|
1084
|
-
|
|
1085
776
|
export interface ListImagesFilter {
|
|
1086
777
|
tagStatus?: TagStatus | string;
|
|
1087
778
|
}
|
|
1088
779
|
export interface ListImagesRequest {
|
|
1089
780
|
registryId?: string;
|
|
1090
|
-
|
|
1091
781
|
repositoryName: string | undefined;
|
|
1092
|
-
|
|
1093
782
|
nextToken?: string;
|
|
1094
|
-
|
|
1095
783
|
maxResults?: number;
|
|
1096
|
-
|
|
1097
784
|
filter?: ListImagesFilter;
|
|
1098
785
|
}
|
|
1099
786
|
export interface ListImagesResponse {
|
|
1100
787
|
imageIds?: ImageIdentifier[];
|
|
1101
|
-
|
|
1102
788
|
nextToken?: string;
|
|
1103
789
|
}
|
|
1104
790
|
export interface ListTagsForResourceRequest {
|
|
@@ -1107,20 +793,16 @@ export interface ListTagsForResourceRequest {
|
|
|
1107
793
|
export interface ListTagsForResourceResponse {
|
|
1108
794
|
tags?: Tag[];
|
|
1109
795
|
}
|
|
1110
|
-
|
|
1111
796
|
export declare class ImageAlreadyExistsException extends __BaseException {
|
|
1112
797
|
readonly name: "ImageAlreadyExistsException";
|
|
1113
798
|
readonly $fault: "client";
|
|
1114
|
-
|
|
1115
799
|
constructor(
|
|
1116
800
|
opts: __ExceptionOptionType<ImageAlreadyExistsException, __BaseException>
|
|
1117
801
|
);
|
|
1118
802
|
}
|
|
1119
|
-
|
|
1120
803
|
export declare class ImageDigestDoesNotMatchException extends __BaseException {
|
|
1121
804
|
readonly name: "ImageDigestDoesNotMatchException";
|
|
1122
805
|
readonly $fault: "client";
|
|
1123
|
-
|
|
1124
806
|
constructor(
|
|
1125
807
|
opts: __ExceptionOptionType<
|
|
1126
808
|
ImageDigestDoesNotMatchException,
|
|
@@ -1128,36 +810,27 @@ export declare class ImageDigestDoesNotMatchException extends __BaseException {
|
|
|
1128
810
|
>
|
|
1129
811
|
);
|
|
1130
812
|
}
|
|
1131
|
-
|
|
1132
813
|
export declare class ImageTagAlreadyExistsException extends __BaseException {
|
|
1133
814
|
readonly name: "ImageTagAlreadyExistsException";
|
|
1134
815
|
readonly $fault: "client";
|
|
1135
|
-
|
|
1136
816
|
constructor(
|
|
1137
817
|
opts: __ExceptionOptionType<ImageTagAlreadyExistsException, __BaseException>
|
|
1138
818
|
);
|
|
1139
819
|
}
|
|
1140
820
|
export interface PutImageRequest {
|
|
1141
821
|
registryId?: string;
|
|
1142
|
-
|
|
1143
822
|
repositoryName: string | undefined;
|
|
1144
|
-
|
|
1145
823
|
imageManifest: string | undefined;
|
|
1146
|
-
|
|
1147
824
|
imageManifestMediaType?: string;
|
|
1148
|
-
|
|
1149
825
|
imageTag?: string;
|
|
1150
|
-
|
|
1151
826
|
imageDigest?: string;
|
|
1152
827
|
}
|
|
1153
828
|
export interface PutImageResponse {
|
|
1154
829
|
image?: Image;
|
|
1155
830
|
}
|
|
1156
|
-
|
|
1157
831
|
export declare class ReferencedImagesNotFoundException extends __BaseException {
|
|
1158
832
|
readonly name: "ReferencedImagesNotFoundException";
|
|
1159
833
|
readonly $fault: "client";
|
|
1160
|
-
|
|
1161
834
|
constructor(
|
|
1162
835
|
opts: __ExceptionOptionType<
|
|
1163
836
|
ReferencedImagesNotFoundException,
|
|
@@ -1167,44 +840,32 @@ export declare class ReferencedImagesNotFoundException extends __BaseException {
|
|
|
1167
840
|
}
|
|
1168
841
|
export interface PutImageScanningConfigurationRequest {
|
|
1169
842
|
registryId?: string;
|
|
1170
|
-
|
|
1171
843
|
repositoryName: string | undefined;
|
|
1172
|
-
|
|
1173
844
|
imageScanningConfiguration: ImageScanningConfiguration | undefined;
|
|
1174
845
|
}
|
|
1175
846
|
export interface PutImageScanningConfigurationResponse {
|
|
1176
847
|
registryId?: string;
|
|
1177
|
-
|
|
1178
848
|
repositoryName?: string;
|
|
1179
|
-
|
|
1180
849
|
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
1181
850
|
}
|
|
1182
851
|
export interface PutImageTagMutabilityRequest {
|
|
1183
852
|
registryId?: string;
|
|
1184
|
-
|
|
1185
853
|
repositoryName: string | undefined;
|
|
1186
|
-
|
|
1187
854
|
imageTagMutability: ImageTagMutability | string | undefined;
|
|
1188
855
|
}
|
|
1189
856
|
export interface PutImageTagMutabilityResponse {
|
|
1190
857
|
registryId?: string;
|
|
1191
|
-
|
|
1192
858
|
repositoryName?: string;
|
|
1193
|
-
|
|
1194
859
|
imageTagMutability?: ImageTagMutability | string;
|
|
1195
860
|
}
|
|
1196
861
|
export interface PutLifecyclePolicyRequest {
|
|
1197
862
|
registryId?: string;
|
|
1198
|
-
|
|
1199
863
|
repositoryName: string | undefined;
|
|
1200
|
-
|
|
1201
864
|
lifecyclePolicyText: string | undefined;
|
|
1202
865
|
}
|
|
1203
866
|
export interface PutLifecyclePolicyResponse {
|
|
1204
867
|
registryId?: string;
|
|
1205
|
-
|
|
1206
868
|
repositoryName?: string;
|
|
1207
|
-
|
|
1208
869
|
lifecyclePolicyText?: string;
|
|
1209
870
|
}
|
|
1210
871
|
export interface PutRegistryPolicyRequest {
|
|
@@ -1212,12 +873,10 @@ export interface PutRegistryPolicyRequest {
|
|
|
1212
873
|
}
|
|
1213
874
|
export interface PutRegistryPolicyResponse {
|
|
1214
875
|
registryId?: string;
|
|
1215
|
-
|
|
1216
876
|
policyText?: string;
|
|
1217
877
|
}
|
|
1218
878
|
export interface PutRegistryScanningConfigurationRequest {
|
|
1219
879
|
scanType?: ScanType | string;
|
|
1220
|
-
|
|
1221
880
|
rules?: RegistryScanningRule[];
|
|
1222
881
|
}
|
|
1223
882
|
export interface PutRegistryScanningConfigurationResponse {
|
|
@@ -1231,50 +890,36 @@ export interface PutReplicationConfigurationResponse {
|
|
|
1231
890
|
}
|
|
1232
891
|
export interface SetRepositoryPolicyRequest {
|
|
1233
892
|
registryId?: string;
|
|
1234
|
-
|
|
1235
893
|
repositoryName: string | undefined;
|
|
1236
|
-
|
|
1237
894
|
policyText: string | undefined;
|
|
1238
|
-
|
|
1239
895
|
force?: boolean;
|
|
1240
896
|
}
|
|
1241
897
|
export interface SetRepositoryPolicyResponse {
|
|
1242
898
|
registryId?: string;
|
|
1243
|
-
|
|
1244
899
|
repositoryName?: string;
|
|
1245
|
-
|
|
1246
900
|
policyText?: string;
|
|
1247
901
|
}
|
|
1248
902
|
export interface StartImageScanRequest {
|
|
1249
903
|
registryId?: string;
|
|
1250
|
-
|
|
1251
904
|
repositoryName: string | undefined;
|
|
1252
|
-
|
|
1253
905
|
imageId: ImageIdentifier | undefined;
|
|
1254
906
|
}
|
|
1255
907
|
export interface StartImageScanResponse {
|
|
1256
908
|
registryId?: string;
|
|
1257
|
-
|
|
1258
909
|
repositoryName?: string;
|
|
1259
|
-
|
|
1260
910
|
imageId?: ImageIdentifier;
|
|
1261
|
-
|
|
1262
911
|
imageScanStatus?: ImageScanStatus;
|
|
1263
912
|
}
|
|
1264
|
-
|
|
1265
913
|
export declare class UnsupportedImageTypeException extends __BaseException {
|
|
1266
914
|
readonly name: "UnsupportedImageTypeException";
|
|
1267
915
|
readonly $fault: "client";
|
|
1268
|
-
|
|
1269
916
|
constructor(
|
|
1270
917
|
opts: __ExceptionOptionType<UnsupportedImageTypeException, __BaseException>
|
|
1271
918
|
);
|
|
1272
919
|
}
|
|
1273
|
-
|
|
1274
920
|
export declare class LifecyclePolicyPreviewInProgressException extends __BaseException {
|
|
1275
921
|
readonly name: "LifecyclePolicyPreviewInProgressException";
|
|
1276
922
|
readonly $fault: "client";
|
|
1277
|
-
|
|
1278
923
|
constructor(
|
|
1279
924
|
opts: __ExceptionOptionType<
|
|
1280
925
|
LifecyclePolicyPreviewInProgressException,
|
|
@@ -1284,552 +929,404 @@ export declare class LifecyclePolicyPreviewInProgressException extends __BaseExc
|
|
|
1284
929
|
}
|
|
1285
930
|
export interface StartLifecyclePolicyPreviewRequest {
|
|
1286
931
|
registryId?: string;
|
|
1287
|
-
|
|
1288
932
|
repositoryName: string | undefined;
|
|
1289
|
-
|
|
1290
933
|
lifecyclePolicyText?: string;
|
|
1291
934
|
}
|
|
1292
935
|
export interface StartLifecyclePolicyPreviewResponse {
|
|
1293
936
|
registryId?: string;
|
|
1294
|
-
|
|
1295
937
|
repositoryName?: string;
|
|
1296
|
-
|
|
1297
938
|
lifecyclePolicyText?: string;
|
|
1298
|
-
|
|
1299
939
|
status?: LifecyclePolicyPreviewStatus | string;
|
|
1300
940
|
}
|
|
1301
941
|
export interface TagResourceRequest {
|
|
1302
942
|
resourceArn: string | undefined;
|
|
1303
|
-
|
|
1304
943
|
tags: Tag[] | undefined;
|
|
1305
944
|
}
|
|
1306
945
|
export interface TagResourceResponse {}
|
|
1307
946
|
export interface UntagResourceRequest {
|
|
1308
947
|
resourceArn: string | undefined;
|
|
1309
|
-
|
|
1310
948
|
tagKeys: string[] | undefined;
|
|
1311
949
|
}
|
|
1312
950
|
export interface UntagResourceResponse {}
|
|
1313
|
-
|
|
1314
951
|
export declare class InvalidLayerPartException extends __BaseException {
|
|
1315
952
|
readonly name: "InvalidLayerPartException";
|
|
1316
953
|
readonly $fault: "client";
|
|
1317
|
-
|
|
1318
954
|
registryId?: string;
|
|
1319
|
-
|
|
1320
955
|
repositoryName?: string;
|
|
1321
|
-
|
|
1322
956
|
uploadId?: string;
|
|
1323
|
-
|
|
1324
957
|
lastValidByteReceived?: number;
|
|
1325
|
-
|
|
1326
958
|
constructor(
|
|
1327
959
|
opts: __ExceptionOptionType<InvalidLayerPartException, __BaseException>
|
|
1328
960
|
);
|
|
1329
961
|
}
|
|
1330
962
|
export interface UploadLayerPartRequest {
|
|
1331
963
|
registryId?: string;
|
|
1332
|
-
|
|
1333
964
|
repositoryName: string | undefined;
|
|
1334
|
-
|
|
1335
965
|
uploadId: string | undefined;
|
|
1336
|
-
|
|
1337
966
|
partFirstByte: number | undefined;
|
|
1338
|
-
|
|
1339
967
|
partLastByte: number | undefined;
|
|
1340
|
-
|
|
1341
968
|
layerPartBlob: Uint8Array | undefined;
|
|
1342
969
|
}
|
|
1343
970
|
export interface UploadLayerPartResponse {
|
|
1344
971
|
registryId?: string;
|
|
1345
|
-
|
|
1346
972
|
repositoryName?: string;
|
|
1347
|
-
|
|
1348
973
|
uploadId?: string;
|
|
1349
|
-
|
|
1350
974
|
lastByteReceived?: number;
|
|
1351
975
|
}
|
|
1352
|
-
|
|
1353
976
|
export declare const BatchCheckLayerAvailabilityRequestFilterSensitiveLog: (
|
|
1354
977
|
obj: BatchCheckLayerAvailabilityRequest
|
|
1355
978
|
) => any;
|
|
1356
|
-
|
|
1357
979
|
export declare const LayerFailureFilterSensitiveLog: (obj: LayerFailure) => any;
|
|
1358
|
-
|
|
1359
980
|
export declare const LayerFilterSensitiveLog: (obj: Layer) => any;
|
|
1360
|
-
|
|
1361
981
|
export declare const BatchCheckLayerAvailabilityResponseFilterSensitiveLog: (
|
|
1362
982
|
obj: BatchCheckLayerAvailabilityResponse
|
|
1363
983
|
) => any;
|
|
1364
|
-
|
|
1365
984
|
export declare const ImageIdentifierFilterSensitiveLog: (
|
|
1366
985
|
obj: ImageIdentifier
|
|
1367
986
|
) => any;
|
|
1368
|
-
|
|
1369
987
|
export declare const BatchDeleteImageRequestFilterSensitiveLog: (
|
|
1370
988
|
obj: BatchDeleteImageRequest
|
|
1371
989
|
) => any;
|
|
1372
|
-
|
|
1373
990
|
export declare const ImageFailureFilterSensitiveLog: (obj: ImageFailure) => any;
|
|
1374
|
-
|
|
1375
991
|
export declare const BatchDeleteImageResponseFilterSensitiveLog: (
|
|
1376
992
|
obj: BatchDeleteImageResponse
|
|
1377
993
|
) => any;
|
|
1378
|
-
|
|
1379
994
|
export declare const BatchGetImageRequestFilterSensitiveLog: (
|
|
1380
995
|
obj: BatchGetImageRequest
|
|
1381
996
|
) => any;
|
|
1382
|
-
|
|
1383
997
|
export declare const ImageFilterSensitiveLog: (obj: Image) => any;
|
|
1384
|
-
|
|
1385
998
|
export declare const BatchGetImageResponseFilterSensitiveLog: (
|
|
1386
999
|
obj: BatchGetImageResponse
|
|
1387
1000
|
) => any;
|
|
1388
|
-
|
|
1389
1001
|
export declare const BatchGetRepositoryScanningConfigurationRequestFilterSensitiveLog: (
|
|
1390
1002
|
obj: BatchGetRepositoryScanningConfigurationRequest
|
|
1391
1003
|
) => any;
|
|
1392
|
-
|
|
1393
1004
|
export declare const RepositoryScanningConfigurationFailureFilterSensitiveLog: (
|
|
1394
1005
|
obj: RepositoryScanningConfigurationFailure
|
|
1395
1006
|
) => any;
|
|
1396
|
-
|
|
1397
1007
|
export declare const ScanningRepositoryFilterFilterSensitiveLog: (
|
|
1398
1008
|
obj: ScanningRepositoryFilter
|
|
1399
1009
|
) => any;
|
|
1400
|
-
|
|
1401
1010
|
export declare const RepositoryScanningConfigurationFilterSensitiveLog: (
|
|
1402
1011
|
obj: RepositoryScanningConfiguration
|
|
1403
1012
|
) => any;
|
|
1404
|
-
|
|
1405
1013
|
export declare const BatchGetRepositoryScanningConfigurationResponseFilterSensitiveLog: (
|
|
1406
1014
|
obj: BatchGetRepositoryScanningConfigurationResponse
|
|
1407
1015
|
) => any;
|
|
1408
|
-
|
|
1409
1016
|
export declare const CompleteLayerUploadRequestFilterSensitiveLog: (
|
|
1410
1017
|
obj: CompleteLayerUploadRequest
|
|
1411
1018
|
) => any;
|
|
1412
|
-
|
|
1413
1019
|
export declare const CompleteLayerUploadResponseFilterSensitiveLog: (
|
|
1414
1020
|
obj: CompleteLayerUploadResponse
|
|
1415
1021
|
) => any;
|
|
1416
|
-
|
|
1417
1022
|
export declare const CreatePullThroughCacheRuleRequestFilterSensitiveLog: (
|
|
1418
1023
|
obj: CreatePullThroughCacheRuleRequest
|
|
1419
1024
|
) => any;
|
|
1420
|
-
|
|
1421
1025
|
export declare const CreatePullThroughCacheRuleResponseFilterSensitiveLog: (
|
|
1422
1026
|
obj: CreatePullThroughCacheRuleResponse
|
|
1423
1027
|
) => any;
|
|
1424
|
-
|
|
1425
1028
|
export declare const EncryptionConfigurationFilterSensitiveLog: (
|
|
1426
1029
|
obj: EncryptionConfiguration
|
|
1427
1030
|
) => any;
|
|
1428
|
-
|
|
1429
1031
|
export declare const ImageScanningConfigurationFilterSensitiveLog: (
|
|
1430
1032
|
obj: ImageScanningConfiguration
|
|
1431
1033
|
) => any;
|
|
1432
|
-
|
|
1433
1034
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1434
|
-
|
|
1435
1035
|
export declare const CreateRepositoryRequestFilterSensitiveLog: (
|
|
1436
1036
|
obj: CreateRepositoryRequest
|
|
1437
1037
|
) => any;
|
|
1438
|
-
|
|
1439
1038
|
export declare const RepositoryFilterSensitiveLog: (obj: Repository) => any;
|
|
1440
|
-
|
|
1441
1039
|
export declare const CreateRepositoryResponseFilterSensitiveLog: (
|
|
1442
1040
|
obj: CreateRepositoryResponse
|
|
1443
1041
|
) => any;
|
|
1444
|
-
|
|
1445
1042
|
export declare const DeleteLifecyclePolicyRequestFilterSensitiveLog: (
|
|
1446
1043
|
obj: DeleteLifecyclePolicyRequest
|
|
1447
1044
|
) => any;
|
|
1448
|
-
|
|
1449
1045
|
export declare const DeleteLifecyclePolicyResponseFilterSensitiveLog: (
|
|
1450
1046
|
obj: DeleteLifecyclePolicyResponse
|
|
1451
1047
|
) => any;
|
|
1452
|
-
|
|
1453
1048
|
export declare const DeletePullThroughCacheRuleRequestFilterSensitiveLog: (
|
|
1454
1049
|
obj: DeletePullThroughCacheRuleRequest
|
|
1455
1050
|
) => any;
|
|
1456
|
-
|
|
1457
1051
|
export declare const DeletePullThroughCacheRuleResponseFilterSensitiveLog: (
|
|
1458
1052
|
obj: DeletePullThroughCacheRuleResponse
|
|
1459
1053
|
) => any;
|
|
1460
|
-
|
|
1461
1054
|
export declare const DeleteRegistryPolicyRequestFilterSensitiveLog: (
|
|
1462
1055
|
obj: DeleteRegistryPolicyRequest
|
|
1463
1056
|
) => any;
|
|
1464
|
-
|
|
1465
1057
|
export declare const DeleteRegistryPolicyResponseFilterSensitiveLog: (
|
|
1466
1058
|
obj: DeleteRegistryPolicyResponse
|
|
1467
1059
|
) => any;
|
|
1468
|
-
|
|
1469
1060
|
export declare const DeleteRepositoryRequestFilterSensitiveLog: (
|
|
1470
1061
|
obj: DeleteRepositoryRequest
|
|
1471
1062
|
) => any;
|
|
1472
|
-
|
|
1473
1063
|
export declare const DeleteRepositoryResponseFilterSensitiveLog: (
|
|
1474
1064
|
obj: DeleteRepositoryResponse
|
|
1475
1065
|
) => any;
|
|
1476
|
-
|
|
1477
1066
|
export declare const DeleteRepositoryPolicyRequestFilterSensitiveLog: (
|
|
1478
1067
|
obj: DeleteRepositoryPolicyRequest
|
|
1479
1068
|
) => any;
|
|
1480
|
-
|
|
1481
1069
|
export declare const DeleteRepositoryPolicyResponseFilterSensitiveLog: (
|
|
1482
1070
|
obj: DeleteRepositoryPolicyResponse
|
|
1483
1071
|
) => any;
|
|
1484
|
-
|
|
1485
1072
|
export declare const DescribeImageReplicationStatusRequestFilterSensitiveLog: (
|
|
1486
1073
|
obj: DescribeImageReplicationStatusRequest
|
|
1487
1074
|
) => any;
|
|
1488
|
-
|
|
1489
1075
|
export declare const ImageReplicationStatusFilterSensitiveLog: (
|
|
1490
1076
|
obj: ImageReplicationStatus
|
|
1491
1077
|
) => any;
|
|
1492
|
-
|
|
1493
1078
|
export declare const DescribeImageReplicationStatusResponseFilterSensitiveLog: (
|
|
1494
1079
|
obj: DescribeImageReplicationStatusResponse
|
|
1495
1080
|
) => any;
|
|
1496
|
-
|
|
1497
1081
|
export declare const DescribeImagesFilterFilterSensitiveLog: (
|
|
1498
1082
|
obj: DescribeImagesFilter
|
|
1499
1083
|
) => any;
|
|
1500
|
-
|
|
1501
1084
|
export declare const DescribeImagesRequestFilterSensitiveLog: (
|
|
1502
1085
|
obj: DescribeImagesRequest
|
|
1503
1086
|
) => any;
|
|
1504
|
-
|
|
1505
1087
|
export declare const ImageScanFindingsSummaryFilterSensitiveLog: (
|
|
1506
1088
|
obj: ImageScanFindingsSummary
|
|
1507
1089
|
) => any;
|
|
1508
|
-
|
|
1509
1090
|
export declare const ImageScanStatusFilterSensitiveLog: (
|
|
1510
1091
|
obj: ImageScanStatus
|
|
1511
1092
|
) => any;
|
|
1512
|
-
|
|
1513
1093
|
export declare const ImageDetailFilterSensitiveLog: (obj: ImageDetail) => any;
|
|
1514
|
-
|
|
1515
1094
|
export declare const DescribeImagesResponseFilterSensitiveLog: (
|
|
1516
1095
|
obj: DescribeImagesResponse
|
|
1517
1096
|
) => any;
|
|
1518
|
-
|
|
1519
1097
|
export declare const DescribeImageScanFindingsRequestFilterSensitiveLog: (
|
|
1520
1098
|
obj: DescribeImageScanFindingsRequest
|
|
1521
1099
|
) => any;
|
|
1522
|
-
|
|
1523
1100
|
export declare const CvssScoreFilterSensitiveLog: (obj: CvssScore) => any;
|
|
1524
|
-
|
|
1525
1101
|
export declare const VulnerablePackageFilterSensitiveLog: (
|
|
1526
1102
|
obj: VulnerablePackage
|
|
1527
1103
|
) => any;
|
|
1528
|
-
|
|
1529
1104
|
export declare const PackageVulnerabilityDetailsFilterSensitiveLog: (
|
|
1530
1105
|
obj: PackageVulnerabilityDetails
|
|
1531
1106
|
) => any;
|
|
1532
|
-
|
|
1533
1107
|
export declare const RecommendationFilterSensitiveLog: (
|
|
1534
1108
|
obj: Recommendation
|
|
1535
1109
|
) => any;
|
|
1536
|
-
|
|
1537
1110
|
export declare const RemediationFilterSensitiveLog: (obj: Remediation) => any;
|
|
1538
|
-
|
|
1539
1111
|
export declare const AwsEcrContainerImageDetailsFilterSensitiveLog: (
|
|
1540
1112
|
obj: AwsEcrContainerImageDetails
|
|
1541
1113
|
) => any;
|
|
1542
|
-
|
|
1543
1114
|
export declare const ResourceDetailsFilterSensitiveLog: (
|
|
1544
1115
|
obj: ResourceDetails
|
|
1545
1116
|
) => any;
|
|
1546
|
-
|
|
1547
1117
|
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1548
|
-
|
|
1549
1118
|
export declare const CvssScoreAdjustmentFilterSensitiveLog: (
|
|
1550
1119
|
obj: CvssScoreAdjustment
|
|
1551
1120
|
) => any;
|
|
1552
|
-
|
|
1553
1121
|
export declare const CvssScoreDetailsFilterSensitiveLog: (
|
|
1554
1122
|
obj: CvssScoreDetails
|
|
1555
1123
|
) => any;
|
|
1556
|
-
|
|
1557
1124
|
export declare const ScoreDetailsFilterSensitiveLog: (obj: ScoreDetails) => any;
|
|
1558
|
-
|
|
1559
1125
|
export declare const EnhancedImageScanFindingFilterSensitiveLog: (
|
|
1560
1126
|
obj: EnhancedImageScanFinding
|
|
1561
1127
|
) => any;
|
|
1562
|
-
|
|
1563
1128
|
export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
|
|
1564
|
-
|
|
1565
1129
|
export declare const ImageScanFindingFilterSensitiveLog: (
|
|
1566
1130
|
obj: ImageScanFinding
|
|
1567
1131
|
) => any;
|
|
1568
|
-
|
|
1569
1132
|
export declare const ImageScanFindingsFilterSensitiveLog: (
|
|
1570
1133
|
obj: ImageScanFindings
|
|
1571
1134
|
) => any;
|
|
1572
|
-
|
|
1573
1135
|
export declare const DescribeImageScanFindingsResponseFilterSensitiveLog: (
|
|
1574
1136
|
obj: DescribeImageScanFindingsResponse
|
|
1575
1137
|
) => any;
|
|
1576
|
-
|
|
1577
1138
|
export declare const DescribePullThroughCacheRulesRequestFilterSensitiveLog: (
|
|
1578
1139
|
obj: DescribePullThroughCacheRulesRequest
|
|
1579
1140
|
) => any;
|
|
1580
|
-
|
|
1581
1141
|
export declare const PullThroughCacheRuleFilterSensitiveLog: (
|
|
1582
1142
|
obj: PullThroughCacheRule
|
|
1583
1143
|
) => any;
|
|
1584
|
-
|
|
1585
1144
|
export declare const DescribePullThroughCacheRulesResponseFilterSensitiveLog: (
|
|
1586
1145
|
obj: DescribePullThroughCacheRulesResponse
|
|
1587
1146
|
) => any;
|
|
1588
|
-
|
|
1589
1147
|
export declare const DescribeRegistryRequestFilterSensitiveLog: (
|
|
1590
1148
|
obj: DescribeRegistryRequest
|
|
1591
1149
|
) => any;
|
|
1592
|
-
|
|
1593
1150
|
export declare const ReplicationDestinationFilterSensitiveLog: (
|
|
1594
1151
|
obj: ReplicationDestination
|
|
1595
1152
|
) => any;
|
|
1596
|
-
|
|
1597
1153
|
export declare const RepositoryFilterFilterSensitiveLog: (
|
|
1598
1154
|
obj: RepositoryFilter
|
|
1599
1155
|
) => any;
|
|
1600
|
-
|
|
1601
1156
|
export declare const ReplicationRuleFilterSensitiveLog: (
|
|
1602
1157
|
obj: ReplicationRule
|
|
1603
1158
|
) => any;
|
|
1604
|
-
|
|
1605
1159
|
export declare const ReplicationConfigurationFilterSensitiveLog: (
|
|
1606
1160
|
obj: ReplicationConfiguration
|
|
1607
1161
|
) => any;
|
|
1608
|
-
|
|
1609
1162
|
export declare const DescribeRegistryResponseFilterSensitiveLog: (
|
|
1610
1163
|
obj: DescribeRegistryResponse
|
|
1611
1164
|
) => any;
|
|
1612
|
-
|
|
1613
1165
|
export declare const DescribeRepositoriesRequestFilterSensitiveLog: (
|
|
1614
1166
|
obj: DescribeRepositoriesRequest
|
|
1615
1167
|
) => any;
|
|
1616
|
-
|
|
1617
1168
|
export declare const DescribeRepositoriesResponseFilterSensitiveLog: (
|
|
1618
1169
|
obj: DescribeRepositoriesResponse
|
|
1619
1170
|
) => any;
|
|
1620
|
-
|
|
1621
1171
|
export declare const GetAuthorizationTokenRequestFilterSensitiveLog: (
|
|
1622
1172
|
obj: GetAuthorizationTokenRequest
|
|
1623
1173
|
) => any;
|
|
1624
|
-
|
|
1625
1174
|
export declare const AuthorizationDataFilterSensitiveLog: (
|
|
1626
1175
|
obj: AuthorizationData
|
|
1627
1176
|
) => any;
|
|
1628
|
-
|
|
1629
1177
|
export declare const GetAuthorizationTokenResponseFilterSensitiveLog: (
|
|
1630
1178
|
obj: GetAuthorizationTokenResponse
|
|
1631
1179
|
) => any;
|
|
1632
|
-
|
|
1633
1180
|
export declare const GetDownloadUrlForLayerRequestFilterSensitiveLog: (
|
|
1634
1181
|
obj: GetDownloadUrlForLayerRequest
|
|
1635
1182
|
) => any;
|
|
1636
|
-
|
|
1637
1183
|
export declare const GetDownloadUrlForLayerResponseFilterSensitiveLog: (
|
|
1638
1184
|
obj: GetDownloadUrlForLayerResponse
|
|
1639
1185
|
) => any;
|
|
1640
|
-
|
|
1641
1186
|
export declare const GetLifecyclePolicyRequestFilterSensitiveLog: (
|
|
1642
1187
|
obj: GetLifecyclePolicyRequest
|
|
1643
1188
|
) => any;
|
|
1644
|
-
|
|
1645
1189
|
export declare const GetLifecyclePolicyResponseFilterSensitiveLog: (
|
|
1646
1190
|
obj: GetLifecyclePolicyResponse
|
|
1647
1191
|
) => any;
|
|
1648
|
-
|
|
1649
1192
|
export declare const LifecyclePolicyPreviewFilterFilterSensitiveLog: (
|
|
1650
1193
|
obj: LifecyclePolicyPreviewFilter
|
|
1651
1194
|
) => any;
|
|
1652
|
-
|
|
1653
1195
|
export declare const GetLifecyclePolicyPreviewRequestFilterSensitiveLog: (
|
|
1654
1196
|
obj: GetLifecyclePolicyPreviewRequest
|
|
1655
1197
|
) => any;
|
|
1656
|
-
|
|
1657
1198
|
export declare const LifecyclePolicyRuleActionFilterSensitiveLog: (
|
|
1658
1199
|
obj: LifecyclePolicyRuleAction
|
|
1659
1200
|
) => any;
|
|
1660
|
-
|
|
1661
1201
|
export declare const LifecyclePolicyPreviewResultFilterSensitiveLog: (
|
|
1662
1202
|
obj: LifecyclePolicyPreviewResult
|
|
1663
1203
|
) => any;
|
|
1664
|
-
|
|
1665
1204
|
export declare const LifecyclePolicyPreviewSummaryFilterSensitiveLog: (
|
|
1666
1205
|
obj: LifecyclePolicyPreviewSummary
|
|
1667
1206
|
) => any;
|
|
1668
|
-
|
|
1669
1207
|
export declare const GetLifecyclePolicyPreviewResponseFilterSensitiveLog: (
|
|
1670
1208
|
obj: GetLifecyclePolicyPreviewResponse
|
|
1671
1209
|
) => any;
|
|
1672
|
-
|
|
1673
1210
|
export declare const GetRegistryPolicyRequestFilterSensitiveLog: (
|
|
1674
1211
|
obj: GetRegistryPolicyRequest
|
|
1675
1212
|
) => any;
|
|
1676
|
-
|
|
1677
1213
|
export declare const GetRegistryPolicyResponseFilterSensitiveLog: (
|
|
1678
1214
|
obj: GetRegistryPolicyResponse
|
|
1679
1215
|
) => any;
|
|
1680
|
-
|
|
1681
1216
|
export declare const GetRegistryScanningConfigurationRequestFilterSensitiveLog: (
|
|
1682
1217
|
obj: GetRegistryScanningConfigurationRequest
|
|
1683
1218
|
) => any;
|
|
1684
|
-
|
|
1685
1219
|
export declare const RegistryScanningRuleFilterSensitiveLog: (
|
|
1686
1220
|
obj: RegistryScanningRule
|
|
1687
1221
|
) => any;
|
|
1688
|
-
|
|
1689
1222
|
export declare const RegistryScanningConfigurationFilterSensitiveLog: (
|
|
1690
1223
|
obj: RegistryScanningConfiguration
|
|
1691
1224
|
) => any;
|
|
1692
|
-
|
|
1693
1225
|
export declare const GetRegistryScanningConfigurationResponseFilterSensitiveLog: (
|
|
1694
1226
|
obj: GetRegistryScanningConfigurationResponse
|
|
1695
1227
|
) => any;
|
|
1696
|
-
|
|
1697
1228
|
export declare const GetRepositoryPolicyRequestFilterSensitiveLog: (
|
|
1698
1229
|
obj: GetRepositoryPolicyRequest
|
|
1699
1230
|
) => any;
|
|
1700
|
-
|
|
1701
1231
|
export declare const GetRepositoryPolicyResponseFilterSensitiveLog: (
|
|
1702
1232
|
obj: GetRepositoryPolicyResponse
|
|
1703
1233
|
) => any;
|
|
1704
|
-
|
|
1705
1234
|
export declare const InitiateLayerUploadRequestFilterSensitiveLog: (
|
|
1706
1235
|
obj: InitiateLayerUploadRequest
|
|
1707
1236
|
) => any;
|
|
1708
|
-
|
|
1709
1237
|
export declare const InitiateLayerUploadResponseFilterSensitiveLog: (
|
|
1710
1238
|
obj: InitiateLayerUploadResponse
|
|
1711
1239
|
) => any;
|
|
1712
|
-
|
|
1713
1240
|
export declare const ListImagesFilterFilterSensitiveLog: (
|
|
1714
1241
|
obj: ListImagesFilter
|
|
1715
1242
|
) => any;
|
|
1716
|
-
|
|
1717
1243
|
export declare const ListImagesRequestFilterSensitiveLog: (
|
|
1718
1244
|
obj: ListImagesRequest
|
|
1719
1245
|
) => any;
|
|
1720
|
-
|
|
1721
1246
|
export declare const ListImagesResponseFilterSensitiveLog: (
|
|
1722
1247
|
obj: ListImagesResponse
|
|
1723
1248
|
) => any;
|
|
1724
|
-
|
|
1725
1249
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1726
1250
|
obj: ListTagsForResourceRequest
|
|
1727
1251
|
) => any;
|
|
1728
|
-
|
|
1729
1252
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1730
1253
|
obj: ListTagsForResourceResponse
|
|
1731
1254
|
) => any;
|
|
1732
|
-
|
|
1733
1255
|
export declare const PutImageRequestFilterSensitiveLog: (
|
|
1734
1256
|
obj: PutImageRequest
|
|
1735
1257
|
) => any;
|
|
1736
|
-
|
|
1737
1258
|
export declare const PutImageResponseFilterSensitiveLog: (
|
|
1738
1259
|
obj: PutImageResponse
|
|
1739
1260
|
) => any;
|
|
1740
|
-
|
|
1741
1261
|
export declare const PutImageScanningConfigurationRequestFilterSensitiveLog: (
|
|
1742
1262
|
obj: PutImageScanningConfigurationRequest
|
|
1743
1263
|
) => any;
|
|
1744
|
-
|
|
1745
1264
|
export declare const PutImageScanningConfigurationResponseFilterSensitiveLog: (
|
|
1746
1265
|
obj: PutImageScanningConfigurationResponse
|
|
1747
1266
|
) => any;
|
|
1748
|
-
|
|
1749
1267
|
export declare const PutImageTagMutabilityRequestFilterSensitiveLog: (
|
|
1750
1268
|
obj: PutImageTagMutabilityRequest
|
|
1751
1269
|
) => any;
|
|
1752
|
-
|
|
1753
1270
|
export declare const PutImageTagMutabilityResponseFilterSensitiveLog: (
|
|
1754
1271
|
obj: PutImageTagMutabilityResponse
|
|
1755
1272
|
) => any;
|
|
1756
|
-
|
|
1757
1273
|
export declare const PutLifecyclePolicyRequestFilterSensitiveLog: (
|
|
1758
1274
|
obj: PutLifecyclePolicyRequest
|
|
1759
1275
|
) => any;
|
|
1760
|
-
|
|
1761
1276
|
export declare const PutLifecyclePolicyResponseFilterSensitiveLog: (
|
|
1762
1277
|
obj: PutLifecyclePolicyResponse
|
|
1763
1278
|
) => any;
|
|
1764
|
-
|
|
1765
1279
|
export declare const PutRegistryPolicyRequestFilterSensitiveLog: (
|
|
1766
1280
|
obj: PutRegistryPolicyRequest
|
|
1767
1281
|
) => any;
|
|
1768
|
-
|
|
1769
1282
|
export declare const PutRegistryPolicyResponseFilterSensitiveLog: (
|
|
1770
1283
|
obj: PutRegistryPolicyResponse
|
|
1771
1284
|
) => any;
|
|
1772
|
-
|
|
1773
1285
|
export declare const PutRegistryScanningConfigurationRequestFilterSensitiveLog: (
|
|
1774
1286
|
obj: PutRegistryScanningConfigurationRequest
|
|
1775
1287
|
) => any;
|
|
1776
|
-
|
|
1777
1288
|
export declare const PutRegistryScanningConfigurationResponseFilterSensitiveLog: (
|
|
1778
1289
|
obj: PutRegistryScanningConfigurationResponse
|
|
1779
1290
|
) => any;
|
|
1780
|
-
|
|
1781
1291
|
export declare const PutReplicationConfigurationRequestFilterSensitiveLog: (
|
|
1782
1292
|
obj: PutReplicationConfigurationRequest
|
|
1783
1293
|
) => any;
|
|
1784
|
-
|
|
1785
1294
|
export declare const PutReplicationConfigurationResponseFilterSensitiveLog: (
|
|
1786
1295
|
obj: PutReplicationConfigurationResponse
|
|
1787
1296
|
) => any;
|
|
1788
|
-
|
|
1789
1297
|
export declare const SetRepositoryPolicyRequestFilterSensitiveLog: (
|
|
1790
1298
|
obj: SetRepositoryPolicyRequest
|
|
1791
1299
|
) => any;
|
|
1792
|
-
|
|
1793
1300
|
export declare const SetRepositoryPolicyResponseFilterSensitiveLog: (
|
|
1794
1301
|
obj: SetRepositoryPolicyResponse
|
|
1795
1302
|
) => any;
|
|
1796
|
-
|
|
1797
1303
|
export declare const StartImageScanRequestFilterSensitiveLog: (
|
|
1798
1304
|
obj: StartImageScanRequest
|
|
1799
1305
|
) => any;
|
|
1800
|
-
|
|
1801
1306
|
export declare const StartImageScanResponseFilterSensitiveLog: (
|
|
1802
1307
|
obj: StartImageScanResponse
|
|
1803
1308
|
) => any;
|
|
1804
|
-
|
|
1805
1309
|
export declare const StartLifecyclePolicyPreviewRequestFilterSensitiveLog: (
|
|
1806
1310
|
obj: StartLifecyclePolicyPreviewRequest
|
|
1807
1311
|
) => any;
|
|
1808
|
-
|
|
1809
1312
|
export declare const StartLifecyclePolicyPreviewResponseFilterSensitiveLog: (
|
|
1810
1313
|
obj: StartLifecyclePolicyPreviewResponse
|
|
1811
1314
|
) => any;
|
|
1812
|
-
|
|
1813
1315
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1814
1316
|
obj: TagResourceRequest
|
|
1815
1317
|
) => any;
|
|
1816
|
-
|
|
1817
1318
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1818
1319
|
obj: TagResourceResponse
|
|
1819
1320
|
) => any;
|
|
1820
|
-
|
|
1821
1321
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1822
1322
|
obj: UntagResourceRequest
|
|
1823
1323
|
) => any;
|
|
1824
|
-
|
|
1825
1324
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1826
1325
|
obj: UntagResourceResponse
|
|
1827
1326
|
) => any;
|
|
1828
|
-
|
|
1829
1327
|
export declare const UploadLayerPartRequestFilterSensitiveLog: (
|
|
1830
1328
|
obj: UploadLayerPartRequest
|
|
1831
1329
|
) => any;
|
|
1832
|
-
|
|
1833
1330
|
export declare const UploadLayerPartResponseFilterSensitiveLog: (
|
|
1834
1331
|
obj: UploadLayerPartResponse
|
|
1835
1332
|
) => any;
|