@aws-sdk/client-ecr-public 3.533.0 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/ECRPUBLIC.d.ts +6 -1
- package/dist-types/ECRPUBLICClient.d.ts +1 -1
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +2 -1
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +2 -1
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +2 -1
- package/dist-types/commands/CreateRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeImageTagsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRegistriesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +2 -1
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +2 -1
- package/dist-types/commands/GetRegistryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/InitiateLayerUploadCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutImageCommand.d.ts +2 -1
- package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/PutRepositoryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UploadLayerPartCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +214 -214
- package/dist-types/ts3.4/ECRPUBLIC.d.ts +5 -0
- package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeImageTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRegistriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRegistryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositoryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutImageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutRegistryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutRepositoryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ECRPUBLICServiceException as __BaseException } from "./ECRPUBLICServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>An authorization token data object that corresponds to a public registry.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface AuthorizationData {
|
|
8
8
|
/**
|
|
9
|
-
* @public
|
|
10
9
|
* <p>A base64-encoded string that contains authorization data for a public Amazon ECR registry.
|
|
11
10
|
* When the string is decoded, it's presented in the format <code>user:password</code> for
|
|
12
11
|
* public registry authentication using <code>docker login</code>.</p>
|
|
12
|
+
* @public
|
|
13
13
|
*/
|
|
14
14
|
authorizationToken?: string;
|
|
15
15
|
/**
|
|
16
|
-
* @public
|
|
17
16
|
* <p>The Unix time in seconds and milliseconds when the authorization token expires.
|
|
18
17
|
* Authorization tokens are valid for 12 hours.</p>
|
|
18
|
+
* @public
|
|
19
19
|
*/
|
|
20
20
|
expiresAt?: Date;
|
|
21
21
|
}
|
|
@@ -24,19 +24,19 @@ export interface AuthorizationData {
|
|
|
24
24
|
*/
|
|
25
25
|
export interface BatchCheckLayerAvailabilityRequest {
|
|
26
26
|
/**
|
|
27
|
-
* @public
|
|
28
27
|
* <p>The Amazon Web Services account ID, or registry alias, associated with the public registry that
|
|
29
28
|
* contains the image layers to check. If you do not specify a registry, the default public registry is assumed.</p>
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
registryId?: string;
|
|
32
32
|
/**
|
|
33
|
-
* @public
|
|
34
33
|
* <p>The name of the repository that's associated with the image layers to check.</p>
|
|
34
|
+
* @public
|
|
35
35
|
*/
|
|
36
36
|
repositoryName: string | undefined;
|
|
37
37
|
/**
|
|
38
|
-
* @public
|
|
39
38
|
* <p>The digests of the image layers to check.</p>
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
layerDigests: string[] | undefined;
|
|
42
42
|
}
|
|
@@ -53,23 +53,23 @@ export declare const LayerFailureCode: {
|
|
|
53
53
|
*/
|
|
54
54
|
export type LayerFailureCode = (typeof LayerFailureCode)[keyof typeof LayerFailureCode];
|
|
55
55
|
/**
|
|
56
|
-
* @public
|
|
57
56
|
* <p>An object that represents an Amazon ECR image layer failure.</p>
|
|
57
|
+
* @public
|
|
58
58
|
*/
|
|
59
59
|
export interface LayerFailure {
|
|
60
60
|
/**
|
|
61
|
-
* @public
|
|
62
61
|
* <p>The layer digest that's associated with the failure.</p>
|
|
62
|
+
* @public
|
|
63
63
|
*/
|
|
64
64
|
layerDigest?: string;
|
|
65
65
|
/**
|
|
66
|
-
* @public
|
|
67
66
|
* <p>The failure code that's associated with the failure.</p>
|
|
67
|
+
* @public
|
|
68
68
|
*/
|
|
69
69
|
failureCode?: LayerFailureCode;
|
|
70
70
|
/**
|
|
71
|
-
* @public
|
|
72
71
|
* <p>The reason for the failure.</p>
|
|
72
|
+
* @public
|
|
73
73
|
*/
|
|
74
74
|
failureReason?: string;
|
|
75
75
|
}
|
|
@@ -86,30 +86,30 @@ export declare const LayerAvailability: {
|
|
|
86
86
|
*/
|
|
87
87
|
export type LayerAvailability = (typeof LayerAvailability)[keyof typeof LayerAvailability];
|
|
88
88
|
/**
|
|
89
|
-
* @public
|
|
90
89
|
* <p>An object that represents an Amazon ECR image layer.</p>
|
|
90
|
+
* @public
|
|
91
91
|
*/
|
|
92
92
|
export interface Layer {
|
|
93
93
|
/**
|
|
94
|
-
* @public
|
|
95
94
|
* <p>The <code>sha256</code> digest of the image layer.</p>
|
|
95
|
+
* @public
|
|
96
96
|
*/
|
|
97
97
|
layerDigest?: string;
|
|
98
98
|
/**
|
|
99
|
-
* @public
|
|
100
99
|
* <p>The availability status of the image layer.</p>
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
layerAvailability?: LayerAvailability;
|
|
103
103
|
/**
|
|
104
|
-
* @public
|
|
105
104
|
* <p>The size, in bytes, of the image layer.</p>
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
layerSize?: number;
|
|
108
108
|
/**
|
|
109
|
-
* @public
|
|
110
109
|
* <p>The media type of the layer, such as
|
|
111
110
|
* <code>application/vnd.docker.image.rootfs.diff.tar.gzip</code> or
|
|
112
111
|
* <code>application/vnd.oci.image.layer.v1.tar+gzip</code>.</p>
|
|
112
|
+
* @public
|
|
113
113
|
*/
|
|
114
114
|
mediaType?: string;
|
|
115
115
|
}
|
|
@@ -118,21 +118,21 @@ export interface Layer {
|
|
|
118
118
|
*/
|
|
119
119
|
export interface BatchCheckLayerAvailabilityResponse {
|
|
120
120
|
/**
|
|
121
|
-
* @public
|
|
122
121
|
* <p>A list of image layer objects that correspond to the image layer references in the
|
|
123
122
|
* request.</p>
|
|
123
|
+
* @public
|
|
124
124
|
*/
|
|
125
125
|
layers?: Layer[];
|
|
126
126
|
/**
|
|
127
|
-
* @public
|
|
128
127
|
* <p>Any failures associated with the call.</p>
|
|
128
|
+
* @public
|
|
129
129
|
*/
|
|
130
130
|
failures?: LayerFailure[];
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
|
-
* @public
|
|
134
133
|
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
135
134
|
* request.</p>
|
|
135
|
+
* @public
|
|
136
136
|
*/
|
|
137
137
|
export declare class InvalidParameterException extends __BaseException {
|
|
138
138
|
readonly name: "InvalidParameterException";
|
|
@@ -143,8 +143,8 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
143
143
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
144
144
|
}
|
|
145
145
|
/**
|
|
146
|
-
* @public
|
|
147
146
|
* <p>The registry doesn't exist.</p>
|
|
147
|
+
* @public
|
|
148
148
|
*/
|
|
149
149
|
export declare class RegistryNotFoundException extends __BaseException {
|
|
150
150
|
readonly name: "RegistryNotFoundException";
|
|
@@ -155,9 +155,9 @@ export declare class RegistryNotFoundException extends __BaseException {
|
|
|
155
155
|
constructor(opts: __ExceptionOptionType<RegistryNotFoundException, __BaseException>);
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
|
-
* @public
|
|
159
158
|
* <p>The specified repository can't be found. Check the spelling of the specified repository
|
|
160
159
|
* and ensure that you're performing operations on the correct registry.</p>
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare class RepositoryNotFoundException extends __BaseException {
|
|
163
163
|
readonly name: "RepositoryNotFoundException";
|
|
@@ -168,8 +168,8 @@ export declare class RepositoryNotFoundException extends __BaseException {
|
|
|
168
168
|
constructor(opts: __ExceptionOptionType<RepositoryNotFoundException, __BaseException>);
|
|
169
169
|
}
|
|
170
170
|
/**
|
|
171
|
-
* @public
|
|
172
171
|
* <p>These errors are usually caused by a server-side issue.</p>
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
export declare class ServerException extends __BaseException {
|
|
175
175
|
readonly name: "ServerException";
|
|
@@ -180,8 +180,8 @@ export declare class ServerException extends __BaseException {
|
|
|
180
180
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* @public
|
|
184
183
|
* <p>The action isn't supported in this Region.</p>
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class UnsupportedCommandException extends __BaseException {
|
|
187
187
|
readonly name: "UnsupportedCommandException";
|
|
@@ -192,18 +192,18 @@ export declare class UnsupportedCommandException extends __BaseException {
|
|
|
192
192
|
constructor(opts: __ExceptionOptionType<UnsupportedCommandException, __BaseException>);
|
|
193
193
|
}
|
|
194
194
|
/**
|
|
195
|
-
* @public
|
|
196
195
|
* <p>An object with identifying information for an Amazon ECR image.</p>
|
|
196
|
+
* @public
|
|
197
197
|
*/
|
|
198
198
|
export interface ImageIdentifier {
|
|
199
199
|
/**
|
|
200
|
-
* @public
|
|
201
200
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
201
|
+
* @public
|
|
202
202
|
*/
|
|
203
203
|
imageDigest?: string;
|
|
204
204
|
/**
|
|
205
|
-
* @public
|
|
206
205
|
* <p>The tag that's used for the image.</p>
|
|
206
|
+
* @public
|
|
207
207
|
*/
|
|
208
208
|
imageTag?: string;
|
|
209
209
|
}
|
|
@@ -212,21 +212,21 @@ export interface ImageIdentifier {
|
|
|
212
212
|
*/
|
|
213
213
|
export interface BatchDeleteImageRequest {
|
|
214
214
|
/**
|
|
215
|
-
* @public
|
|
216
215
|
* <p>The Amazon Web Services account ID, or registry alias, that's associated with the registry that
|
|
217
216
|
* contains the image to delete. If you do not specify a registry, the default public registry is assumed.</p>
|
|
217
|
+
* @public
|
|
218
218
|
*/
|
|
219
219
|
registryId?: string;
|
|
220
220
|
/**
|
|
221
|
-
* @public
|
|
222
221
|
* <p>The repository in a public registry that contains the image to delete.</p>
|
|
222
|
+
* @public
|
|
223
223
|
*/
|
|
224
224
|
repositoryName: string | undefined;
|
|
225
225
|
/**
|
|
226
|
-
* @public
|
|
227
226
|
* <p>A list of image ID references that correspond to images to delete. The format of the
|
|
228
227
|
* <code>imageIds</code> reference is <code>imageTag=tag</code> or
|
|
229
228
|
* <code>imageDigest=digest</code>.</p>
|
|
229
|
+
* @public
|
|
230
230
|
*/
|
|
231
231
|
imageIds: ImageIdentifier[] | undefined;
|
|
232
232
|
}
|
|
@@ -248,23 +248,23 @@ export declare const ImageFailureCode: {
|
|
|
248
248
|
*/
|
|
249
249
|
export type ImageFailureCode = (typeof ImageFailureCode)[keyof typeof ImageFailureCode];
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>An object that represents an Amazon ECR image failure.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
export interface ImageFailure {
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>The image ID that's associated with the failure.</p>
|
|
257
|
+
* @public
|
|
258
258
|
*/
|
|
259
259
|
imageId?: ImageIdentifier;
|
|
260
260
|
/**
|
|
261
|
-
* @public
|
|
262
261
|
* <p>The code that's associated with the failure.</p>
|
|
262
|
+
* @public
|
|
263
263
|
*/
|
|
264
264
|
failureCode?: ImageFailureCode;
|
|
265
265
|
/**
|
|
266
|
-
* @public
|
|
267
266
|
* <p>The reason for the failure.</p>
|
|
267
|
+
* @public
|
|
268
268
|
*/
|
|
269
269
|
failureReason?: string;
|
|
270
270
|
}
|
|
@@ -273,13 +273,13 @@ export interface ImageFailure {
|
|
|
273
273
|
*/
|
|
274
274
|
export interface BatchDeleteImageResponse {
|
|
275
275
|
/**
|
|
276
|
-
* @public
|
|
277
276
|
* <p>The image IDs of the deleted images.</p>
|
|
277
|
+
* @public
|
|
278
278
|
*/
|
|
279
279
|
imageIds?: ImageIdentifier[];
|
|
280
280
|
/**
|
|
281
|
-
* @public
|
|
282
281
|
* <p>Any failures associated with the call.</p>
|
|
282
|
+
* @public
|
|
283
283
|
*/
|
|
284
284
|
failures?: ImageFailure[];
|
|
285
285
|
}
|
|
@@ -288,26 +288,26 @@ export interface BatchDeleteImageResponse {
|
|
|
288
288
|
*/
|
|
289
289
|
export interface CompleteLayerUploadRequest {
|
|
290
290
|
/**
|
|
291
|
-
* @public
|
|
292
291
|
* <p>The Amazon Web Services account ID, or registry alias, associated with the registry where layers are
|
|
293
292
|
* uploaded. If you do not specify a registry, the default public registry is assumed.</p>
|
|
293
|
+
* @public
|
|
294
294
|
*/
|
|
295
295
|
registryId?: string;
|
|
296
296
|
/**
|
|
297
|
-
* @public
|
|
298
297
|
* <p>The name of the repository in a public registry to associate with the image
|
|
299
298
|
* layer.</p>
|
|
299
|
+
* @public
|
|
300
300
|
*/
|
|
301
301
|
repositoryName: string | undefined;
|
|
302
302
|
/**
|
|
303
|
-
* @public
|
|
304
303
|
* <p>The upload ID from a previous <a>InitiateLayerUpload</a> operation to
|
|
305
304
|
* associate with the image layer.</p>
|
|
305
|
+
* @public
|
|
306
306
|
*/
|
|
307
307
|
uploadId: string | undefined;
|
|
308
308
|
/**
|
|
309
|
-
* @public
|
|
310
309
|
* <p>The <code>sha256</code> digest of the image layer.</p>
|
|
310
|
+
* @public
|
|
311
311
|
*/
|
|
312
312
|
layerDigests: string[] | undefined;
|
|
313
313
|
}
|
|
@@ -316,29 +316,29 @@ export interface CompleteLayerUploadRequest {
|
|
|
316
316
|
*/
|
|
317
317
|
export interface CompleteLayerUploadResponse {
|
|
318
318
|
/**
|
|
319
|
-
* @public
|
|
320
319
|
* <p>The public registry ID that's associated with the request.</p>
|
|
320
|
+
* @public
|
|
321
321
|
*/
|
|
322
322
|
registryId?: string;
|
|
323
323
|
/**
|
|
324
|
-
* @public
|
|
325
324
|
* <p>The repository name that's associated with the request.</p>
|
|
325
|
+
* @public
|
|
326
326
|
*/
|
|
327
327
|
repositoryName?: string;
|
|
328
328
|
/**
|
|
329
|
-
* @public
|
|
330
329
|
* <p>The upload ID that's associated with the layer.</p>
|
|
330
|
+
* @public
|
|
331
331
|
*/
|
|
332
332
|
uploadId?: string;
|
|
333
333
|
/**
|
|
334
|
-
* @public
|
|
335
334
|
* <p>The <code>sha256</code> digest of the image layer.</p>
|
|
335
|
+
* @public
|
|
336
336
|
*/
|
|
337
337
|
layerDigest?: string;
|
|
338
338
|
}
|
|
339
339
|
/**
|
|
340
|
-
* @public
|
|
341
340
|
* <p>The specified layer upload doesn't contain any layer parts.</p>
|
|
341
|
+
* @public
|
|
342
342
|
*/
|
|
343
343
|
export declare class EmptyUploadException extends __BaseException {
|
|
344
344
|
readonly name: "EmptyUploadException";
|
|
@@ -349,9 +349,9 @@ export declare class EmptyUploadException extends __BaseException {
|
|
|
349
349
|
constructor(opts: __ExceptionOptionType<EmptyUploadException, __BaseException>);
|
|
350
350
|
}
|
|
351
351
|
/**
|
|
352
|
-
* @public
|
|
353
352
|
* <p>The layer digest calculation performed by Amazon ECR when the image layer doesn't match the
|
|
354
353
|
* digest specified.</p>
|
|
354
|
+
* @public
|
|
355
355
|
*/
|
|
356
356
|
export declare class InvalidLayerException extends __BaseException {
|
|
357
357
|
readonly name: "InvalidLayerException";
|
|
@@ -362,8 +362,8 @@ export declare class InvalidLayerException extends __BaseException {
|
|
|
362
362
|
constructor(opts: __ExceptionOptionType<InvalidLayerException, __BaseException>);
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
|
-
* @public
|
|
366
365
|
* <p>The image layer already exists in the associated repository.</p>
|
|
366
|
+
* @public
|
|
367
367
|
*/
|
|
368
368
|
export declare class LayerAlreadyExistsException extends __BaseException {
|
|
369
369
|
readonly name: "LayerAlreadyExistsException";
|
|
@@ -374,8 +374,8 @@ export declare class LayerAlreadyExistsException extends __BaseException {
|
|
|
374
374
|
constructor(opts: __ExceptionOptionType<LayerAlreadyExistsException, __BaseException>);
|
|
375
375
|
}
|
|
376
376
|
/**
|
|
377
|
-
* @public
|
|
378
377
|
* <p>Layer parts must be at least 5 MiB in size.</p>
|
|
378
|
+
* @public
|
|
379
379
|
*/
|
|
380
380
|
export declare class LayerPartTooSmallException extends __BaseException {
|
|
381
381
|
readonly name: "LayerPartTooSmallException";
|
|
@@ -386,9 +386,9 @@ export declare class LayerPartTooSmallException extends __BaseException {
|
|
|
386
386
|
constructor(opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>);
|
|
387
387
|
}
|
|
388
388
|
/**
|
|
389
|
-
* @public
|
|
390
389
|
* <p>The upload can't be found, or the specified upload ID isn't valid for this
|
|
391
390
|
* repository.</p>
|
|
391
|
+
* @public
|
|
392
392
|
*/
|
|
393
393
|
export declare class UploadNotFoundException extends __BaseException {
|
|
394
394
|
readonly name: "UploadNotFoundException";
|
|
@@ -399,19 +399,18 @@ export declare class UploadNotFoundException extends __BaseException {
|
|
|
399
399
|
constructor(opts: __ExceptionOptionType<UploadNotFoundException, __BaseException>);
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
|
-
* @public
|
|
403
402
|
* <p>An object that contains the catalog data for a repository. This data is publicly visible
|
|
404
403
|
* in the Amazon ECR Public Gallery.</p>
|
|
404
|
+
* @public
|
|
405
405
|
*/
|
|
406
406
|
export interface RepositoryCatalogDataInput {
|
|
407
407
|
/**
|
|
408
|
-
* @public
|
|
409
408
|
* <p>A short description of the contents of the repository. This text appears in both the
|
|
410
409
|
* image details and also when searching for repositories on the Amazon ECR Public Gallery.</p>
|
|
410
|
+
* @public
|
|
411
411
|
*/
|
|
412
412
|
description?: string;
|
|
413
413
|
/**
|
|
414
|
-
* @public
|
|
415
414
|
* <p>The system architecture that the images in the repository are compatible with. On the
|
|
416
415
|
* Amazon ECR Public Gallery, the following supported architectures appear as badges on the
|
|
417
416
|
* repository and are used as search filters.</p>
|
|
@@ -442,10 +441,10 @@ export interface RepositoryCatalogDataInput {
|
|
|
442
441
|
* </p>
|
|
443
442
|
* </li>
|
|
444
443
|
* </ul>
|
|
444
|
+
* @public
|
|
445
445
|
*/
|
|
446
446
|
architectures?: string[];
|
|
447
447
|
/**
|
|
448
|
-
* @public
|
|
449
448
|
* <p>The operating systems that the images in the repository are compatible with. On the
|
|
450
449
|
* Amazon ECR Public Gallery, the following supported operating systems appear as badges on the
|
|
451
450
|
* repository and are used as search filters.</p>
|
|
@@ -466,48 +465,49 @@ export interface RepositoryCatalogDataInput {
|
|
|
466
465
|
* </p>
|
|
467
466
|
* </li>
|
|
468
467
|
* </ul>
|
|
468
|
+
* @public
|
|
469
469
|
*/
|
|
470
470
|
operatingSystems?: string[];
|
|
471
471
|
/**
|
|
472
|
-
* @public
|
|
473
472
|
* <p>The base64-encoded repository logo payload.</p>
|
|
474
473
|
* <note>
|
|
475
474
|
* <p>The repository logo is only publicly visible in the Amazon ECR Public Gallery for verified
|
|
476
475
|
* accounts.</p>
|
|
477
476
|
* </note>
|
|
477
|
+
* @public
|
|
478
478
|
*/
|
|
479
479
|
logoImageBlob?: Uint8Array;
|
|
480
480
|
/**
|
|
481
|
-
* @public
|
|
482
481
|
* <p>A detailed description of the contents of the repository. It's publicly visible in the
|
|
483
482
|
* Amazon ECR Public Gallery. The text must be in markdown format.</p>
|
|
483
|
+
* @public
|
|
484
484
|
*/
|
|
485
485
|
aboutText?: string;
|
|
486
486
|
/**
|
|
487
|
-
* @public
|
|
488
487
|
* <p>Detailed information about how to use the contents of the repository. It's publicly
|
|
489
488
|
* visible in the Amazon ECR Public Gallery. The usage text provides context, support information,
|
|
490
489
|
* and additional usage details for users of the repository. The text must be in markdown
|
|
491
490
|
* format.</p>
|
|
491
|
+
* @public
|
|
492
492
|
*/
|
|
493
493
|
usageText?: string;
|
|
494
494
|
}
|
|
495
495
|
/**
|
|
496
|
-
* @public
|
|
497
496
|
* <p>The metadata that you apply to a resource to help you categorize and organize them. Each
|
|
498
497
|
* tag consists of a key and an optional value. You define both. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
|
|
498
|
+
* @public
|
|
499
499
|
*/
|
|
500
500
|
export interface Tag {
|
|
501
501
|
/**
|
|
502
|
-
* @public
|
|
503
502
|
* <p>One part of a key-value pair that make up a tag. A <code>key</code> is a general label
|
|
504
503
|
* that acts like a category for more specific tag values.</p>
|
|
504
|
+
* @public
|
|
505
505
|
*/
|
|
506
506
|
Key?: string;
|
|
507
507
|
/**
|
|
508
|
-
* @public
|
|
509
508
|
* <p>The optional part of a key-value pair that make up a tag. A <code>value</code> acts as a
|
|
510
509
|
* descriptor within a tag category (key).</p>
|
|
510
|
+
* @public
|
|
511
511
|
*/
|
|
512
512
|
Value?: string;
|
|
513
513
|
}
|
|
@@ -516,109 +516,109 @@ export interface Tag {
|
|
|
516
516
|
*/
|
|
517
517
|
export interface CreateRepositoryRequest {
|
|
518
518
|
/**
|
|
519
|
-
* @public
|
|
520
519
|
* <p>The name to use for the repository. This appears publicly in the Amazon ECR Public Gallery.
|
|
521
520
|
* The repository name can be specified on its own (for example <code>nginx-web-app</code>) or
|
|
522
521
|
* prepended with a namespace to group the repository into a category (for example
|
|
523
522
|
* <code>project-a/nginx-web-app</code>).</p>
|
|
523
|
+
* @public
|
|
524
524
|
*/
|
|
525
525
|
repositoryName: string | undefined;
|
|
526
526
|
/**
|
|
527
|
-
* @public
|
|
528
527
|
* <p>The details about the repository that are publicly visible in the
|
|
529
528
|
* Amazon ECR Public Gallery.</p>
|
|
529
|
+
* @public
|
|
530
530
|
*/
|
|
531
531
|
catalogData?: RepositoryCatalogDataInput;
|
|
532
532
|
/**
|
|
533
|
-
* @public
|
|
534
533
|
* <p>The metadata that you apply to each repository to help categorize and organize your
|
|
535
534
|
* repositories. Each tag consists of a key and an optional value. You define both of them.
|
|
536
535
|
* Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
tags?: Tag[];
|
|
539
539
|
}
|
|
540
540
|
/**
|
|
541
|
-
* @public
|
|
542
541
|
* <p>The catalog data for a repository. This data is publicly visible in the
|
|
543
542
|
* Amazon ECR Public Gallery.</p>
|
|
543
|
+
* @public
|
|
544
544
|
*/
|
|
545
545
|
export interface RepositoryCatalogData {
|
|
546
546
|
/**
|
|
547
|
-
* @public
|
|
548
547
|
* <p>The short description of the repository.</p>
|
|
548
|
+
* @public
|
|
549
549
|
*/
|
|
550
550
|
description?: string;
|
|
551
551
|
/**
|
|
552
|
-
* @public
|
|
553
552
|
* <p>The architecture tags that are associated with the repository.</p>
|
|
554
553
|
* <note>
|
|
555
554
|
* <p>Only supported operating system tags appear publicly in the Amazon ECR Public Gallery. For
|
|
556
555
|
* more information, see <a>RepositoryCatalogDataInput</a>.</p>
|
|
557
556
|
* </note>
|
|
557
|
+
* @public
|
|
558
558
|
*/
|
|
559
559
|
architectures?: string[];
|
|
560
560
|
/**
|
|
561
|
-
* @public
|
|
562
561
|
* <p>The operating system tags that are associated with the repository.</p>
|
|
563
562
|
* <note>
|
|
564
563
|
* <p>Only supported operating system tags appear publicly in the Amazon ECR Public Gallery. For
|
|
565
564
|
* more information, see <a>RepositoryCatalogDataInput</a>.</p>
|
|
566
565
|
* </note>
|
|
566
|
+
* @public
|
|
567
567
|
*/
|
|
568
568
|
operatingSystems?: string[];
|
|
569
569
|
/**
|
|
570
|
-
* @public
|
|
571
570
|
* <p>The URL that contains the logo that's associated with the repository.</p>
|
|
571
|
+
* @public
|
|
572
572
|
*/
|
|
573
573
|
logoUrl?: string;
|
|
574
574
|
/**
|
|
575
|
-
* @public
|
|
576
575
|
* <p>The longform description of the contents of the repository. This text appears in the
|
|
577
576
|
* repository details on the Amazon ECR Public Gallery.</p>
|
|
577
|
+
* @public
|
|
578
578
|
*/
|
|
579
579
|
aboutText?: string;
|
|
580
580
|
/**
|
|
581
|
-
* @public
|
|
582
581
|
* <p>The longform usage details of the contents of the repository. The usage text provides
|
|
583
582
|
* context for users of the repository.</p>
|
|
583
|
+
* @public
|
|
584
584
|
*/
|
|
585
585
|
usageText?: string;
|
|
586
586
|
/**
|
|
587
|
-
* @public
|
|
588
587
|
* <p>Indicates whether the repository is certified by Amazon Web Services Marketplace.</p>
|
|
588
|
+
* @public
|
|
589
589
|
*/
|
|
590
590
|
marketplaceCertified?: boolean;
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
|
-
* @public
|
|
594
593
|
* <p>An object representing a repository.</p>
|
|
594
|
+
* @public
|
|
595
595
|
*/
|
|
596
596
|
export interface Repository {
|
|
597
597
|
/**
|
|
598
|
-
* @public
|
|
599
598
|
* <p>The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the <code>arn:aws:ecr</code> namespace, followed by the region of the repository, Amazon Web Services account ID of the repository owner, repository namespace, and repository name. For example, <code>arn:aws:ecr:region:012345678910:repository/test</code>.</p>
|
|
599
|
+
* @public
|
|
600
600
|
*/
|
|
601
601
|
repositoryArn?: string;
|
|
602
602
|
/**
|
|
603
|
-
* @public
|
|
604
603
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
605
604
|
* repository.</p>
|
|
605
|
+
* @public
|
|
606
606
|
*/
|
|
607
607
|
registryId?: string;
|
|
608
608
|
/**
|
|
609
|
-
* @public
|
|
610
609
|
* <p>The name of the repository.</p>
|
|
610
|
+
* @public
|
|
611
611
|
*/
|
|
612
612
|
repositoryName?: string;
|
|
613
613
|
/**
|
|
614
|
-
* @public
|
|
615
614
|
* <p>The URI for the repository. You can use this URI for container image <code>push</code>
|
|
616
615
|
* and <code>pull</code> operations.</p>
|
|
616
|
+
* @public
|
|
617
617
|
*/
|
|
618
618
|
repositoryUri?: string;
|
|
619
619
|
/**
|
|
620
|
-
* @public
|
|
621
620
|
* <p>The date and time, in JavaScript date format, when the repository was created.</p>
|
|
621
|
+
* @public
|
|
622
622
|
*/
|
|
623
623
|
createdAt?: Date;
|
|
624
624
|
}
|
|
@@ -627,20 +627,20 @@ export interface Repository {
|
|
|
627
627
|
*/
|
|
628
628
|
export interface CreateRepositoryResponse {
|
|
629
629
|
/**
|
|
630
|
-
* @public
|
|
631
630
|
* <p>The repository that was created.</p>
|
|
631
|
+
* @public
|
|
632
632
|
*/
|
|
633
633
|
repository?: Repository;
|
|
634
634
|
/**
|
|
635
|
-
* @public
|
|
636
635
|
* <p>The catalog data for a repository. This data is publicly visible in the
|
|
637
636
|
* Amazon ECR Public Gallery.</p>
|
|
637
|
+
* @public
|
|
638
638
|
*/
|
|
639
639
|
catalogData?: RepositoryCatalogData;
|
|
640
640
|
}
|
|
641
641
|
/**
|
|
642
|
-
* @public
|
|
643
642
|
* <p>An invalid parameter has been specified. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
|
|
643
|
+
* @public
|
|
644
644
|
*/
|
|
645
645
|
export declare class InvalidTagParameterException extends __BaseException {
|
|
646
646
|
readonly name: "InvalidTagParameterException";
|
|
@@ -651,10 +651,10 @@ export declare class InvalidTagParameterException extends __BaseException {
|
|
|
651
651
|
constructor(opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>);
|
|
652
652
|
}
|
|
653
653
|
/**
|
|
654
|
-
* @public
|
|
655
654
|
* <p>The operation didn't succeed because it would have exceeded a service limit for your
|
|
656
655
|
* account. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html">Amazon ECR Service Quotas</a> in the
|
|
657
656
|
* Amazon Elastic Container Registry User Guide.</p>
|
|
657
|
+
* @public
|
|
658
658
|
*/
|
|
659
659
|
export declare class LimitExceededException extends __BaseException {
|
|
660
660
|
readonly name: "LimitExceededException";
|
|
@@ -665,8 +665,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
665
665
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
666
666
|
}
|
|
667
667
|
/**
|
|
668
|
-
* @public
|
|
669
668
|
* <p>The specified repository already exists in the specified registry.</p>
|
|
669
|
+
* @public
|
|
670
670
|
*/
|
|
671
671
|
export declare class RepositoryAlreadyExistsException extends __BaseException {
|
|
672
672
|
readonly name: "RepositoryAlreadyExistsException";
|
|
@@ -677,9 +677,9 @@ export declare class RepositoryAlreadyExistsException extends __BaseException {
|
|
|
677
677
|
constructor(opts: __ExceptionOptionType<RepositoryAlreadyExistsException, __BaseException>);
|
|
678
678
|
}
|
|
679
679
|
/**
|
|
680
|
-
* @public
|
|
681
680
|
* <p>The list of tags on the repository is over the limit. The maximum number of tags that
|
|
682
681
|
* can be applied to a repository is 50.</p>
|
|
682
|
+
* @public
|
|
683
683
|
*/
|
|
684
684
|
export declare class TooManyTagsException extends __BaseException {
|
|
685
685
|
readonly name: "TooManyTagsException";
|
|
@@ -694,20 +694,20 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
694
694
|
*/
|
|
695
695
|
export interface DeleteRepositoryRequest {
|
|
696
696
|
/**
|
|
697
|
-
* @public
|
|
698
697
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
699
698
|
* repository to delete. If you do not specify a registry, the default public registry is assumed.</p>
|
|
699
|
+
* @public
|
|
700
700
|
*/
|
|
701
701
|
registryId?: string;
|
|
702
702
|
/**
|
|
703
|
-
* @public
|
|
704
703
|
* <p>The name of the repository to delete.</p>
|
|
704
|
+
* @public
|
|
705
705
|
*/
|
|
706
706
|
repositoryName: string | undefined;
|
|
707
707
|
/**
|
|
708
|
-
* @public
|
|
709
708
|
* <p> The force option can be used to delete a repository that contains images. If the force
|
|
710
709
|
* option is not used, the repository must be empty prior to deletion.</p>
|
|
710
|
+
* @public
|
|
711
711
|
*/
|
|
712
712
|
force?: boolean;
|
|
713
713
|
}
|
|
@@ -716,15 +716,15 @@ export interface DeleteRepositoryRequest {
|
|
|
716
716
|
*/
|
|
717
717
|
export interface DeleteRepositoryResponse {
|
|
718
718
|
/**
|
|
719
|
-
* @public
|
|
720
719
|
* <p>The repository that was deleted.</p>
|
|
720
|
+
* @public
|
|
721
721
|
*/
|
|
722
722
|
repository?: Repository;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
|
-
* @public
|
|
726
725
|
* <p>The specified repository contains images. To delete a repository that contains images,
|
|
727
726
|
* you must force the deletion with the <code>force</code> parameter.</p>
|
|
727
|
+
* @public
|
|
728
728
|
*/
|
|
729
729
|
export declare class RepositoryNotEmptyException extends __BaseException {
|
|
730
730
|
readonly name: "RepositoryNotEmptyException";
|
|
@@ -739,15 +739,15 @@ export declare class RepositoryNotEmptyException extends __BaseException {
|
|
|
739
739
|
*/
|
|
740
740
|
export interface DeleteRepositoryPolicyRequest {
|
|
741
741
|
/**
|
|
742
|
-
* @public
|
|
743
742
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
744
743
|
* repository policy to delete. If you do not specify a registry, the default public registry is assumed.</p>
|
|
744
|
+
* @public
|
|
745
745
|
*/
|
|
746
746
|
registryId?: string;
|
|
747
747
|
/**
|
|
748
|
-
* @public
|
|
749
748
|
* <p>The name of the repository that's associated with the repository policy to
|
|
750
749
|
* delete.</p>
|
|
750
|
+
* @public
|
|
751
751
|
*/
|
|
752
752
|
repositoryName: string | undefined;
|
|
753
753
|
}
|
|
@@ -756,25 +756,25 @@ export interface DeleteRepositoryPolicyRequest {
|
|
|
756
756
|
*/
|
|
757
757
|
export interface DeleteRepositoryPolicyResponse {
|
|
758
758
|
/**
|
|
759
|
-
* @public
|
|
760
759
|
* <p>The registry ID that's associated with the request.</p>
|
|
760
|
+
* @public
|
|
761
761
|
*/
|
|
762
762
|
registryId?: string;
|
|
763
763
|
/**
|
|
764
|
-
* @public
|
|
765
764
|
* <p>The repository name that's associated with the request.</p>
|
|
765
|
+
* @public
|
|
766
766
|
*/
|
|
767
767
|
repositoryName?: string;
|
|
768
768
|
/**
|
|
769
|
-
* @public
|
|
770
769
|
* <p>The JSON repository policy that was deleted from the repository.</p>
|
|
770
|
+
* @public
|
|
771
771
|
*/
|
|
772
772
|
policyText?: string;
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
|
-
* @public
|
|
776
775
|
* <p>The specified repository and registry combination doesn't have an associated repository
|
|
777
776
|
* policy.</p>
|
|
777
|
+
* @public
|
|
778
778
|
*/
|
|
779
779
|
export declare class RepositoryPolicyNotFoundException extends __BaseException {
|
|
780
780
|
readonly name: "RepositoryPolicyNotFoundException";
|
|
@@ -789,33 +789,32 @@ export declare class RepositoryPolicyNotFoundException extends __BaseException {
|
|
|
789
789
|
*/
|
|
790
790
|
export interface DescribeImagesRequest {
|
|
791
791
|
/**
|
|
792
|
-
* @public
|
|
793
792
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
794
793
|
* repository where images are described. If you do not specify a registry, the default public registry is assumed.</p>
|
|
794
|
+
* @public
|
|
795
795
|
*/
|
|
796
796
|
registryId?: string;
|
|
797
797
|
/**
|
|
798
|
-
* @public
|
|
799
798
|
* <p>The repository that contains the images to describe.</p>
|
|
799
|
+
* @public
|
|
800
800
|
*/
|
|
801
801
|
repositoryName: string | undefined;
|
|
802
802
|
/**
|
|
803
|
-
* @public
|
|
804
803
|
* <p>The list of image IDs for the requested repository.</p>
|
|
804
|
+
* @public
|
|
805
805
|
*/
|
|
806
806
|
imageIds?: ImageIdentifier[];
|
|
807
807
|
/**
|
|
808
|
-
* @public
|
|
809
808
|
* <p>The <code>nextToken</code> value that's returned from a previous paginated
|
|
810
809
|
* <code>DescribeImages</code> request where <code>maxResults</code> was used and the
|
|
811
810
|
* results exceeded the value of that parameter. Pagination continues from the end of the
|
|
812
811
|
* previous results that returned the <code>nextToken</code> value. If there are no more
|
|
813
812
|
* results to return, this value is <code>null</code>. If you specify images with
|
|
814
813
|
* <code>imageIds</code>, you can't use this option.</p>
|
|
814
|
+
* @public
|
|
815
815
|
*/
|
|
816
816
|
nextToken?: string;
|
|
817
817
|
/**
|
|
818
|
-
* @public
|
|
819
818
|
* <p>The maximum number of repository results that's returned by <code>DescribeImages</code>
|
|
820
819
|
* in paginated output. When this parameter is used, <code>DescribeImages</code> only returns
|
|
821
820
|
* <code>maxResults</code> results in a single page along with a <code>nextToken</code>
|
|
@@ -825,38 +824,38 @@ export interface DescribeImagesRequest {
|
|
|
825
824
|
* used, then <code>DescribeImages</code> returns up to 100 results and a
|
|
826
825
|
* <code>nextToken</code> value, if applicable. If you specify images with
|
|
827
826
|
* <code>imageIds</code>, you can't use this option.</p>
|
|
827
|
+
* @public
|
|
828
828
|
*/
|
|
829
829
|
maxResults?: number;
|
|
830
830
|
}
|
|
831
831
|
/**
|
|
832
|
-
* @public
|
|
833
832
|
* <p>An object that describes an image that's returned by a <a>DescribeImages</a>
|
|
834
833
|
* operation.</p>
|
|
834
|
+
* @public
|
|
835
835
|
*/
|
|
836
836
|
export interface ImageDetail {
|
|
837
837
|
/**
|
|
838
|
-
* @public
|
|
839
838
|
* <p>The Amazon Web Services account ID that's associated with the public registry where this image
|
|
840
839
|
* belongs.</p>
|
|
840
|
+
* @public
|
|
841
841
|
*/
|
|
842
842
|
registryId?: string;
|
|
843
843
|
/**
|
|
844
|
-
* @public
|
|
845
844
|
* <p>The name of the repository where this image belongs.</p>
|
|
845
|
+
* @public
|
|
846
846
|
*/
|
|
847
847
|
repositoryName?: string;
|
|
848
848
|
/**
|
|
849
|
-
* @public
|
|
850
849
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
850
|
+
* @public
|
|
851
851
|
*/
|
|
852
852
|
imageDigest?: string;
|
|
853
853
|
/**
|
|
854
|
-
* @public
|
|
855
854
|
* <p>The list of tags that's associated with this image.</p>
|
|
855
|
+
* @public
|
|
856
856
|
*/
|
|
857
857
|
imageTags?: string[];
|
|
858
858
|
/**
|
|
859
|
-
* @public
|
|
860
859
|
* <p>The size, in bytes, of the image in the repository.</p>
|
|
861
860
|
* <p>If the image is a manifest list, this is the max size of all manifests in the
|
|
862
861
|
* list.</p>
|
|
@@ -866,22 +865,23 @@ export interface ImageDetail {
|
|
|
866
865
|
* command shows the uncompressed image size, so it might return a larger image size than
|
|
867
866
|
* the image sizes that are returned by <a>DescribeImages</a>.</p>
|
|
868
867
|
* </note>
|
|
868
|
+
* @public
|
|
869
869
|
*/
|
|
870
870
|
imageSizeInBytes?: number;
|
|
871
871
|
/**
|
|
872
|
-
* @public
|
|
873
872
|
* <p>The date and time, expressed in standard JavaScript date format, that the current image
|
|
874
873
|
* was pushed to the repository at. </p>
|
|
874
|
+
* @public
|
|
875
875
|
*/
|
|
876
876
|
imagePushedAt?: Date;
|
|
877
877
|
/**
|
|
878
|
-
* @public
|
|
879
878
|
* <p>The media type of the image manifest.</p>
|
|
879
|
+
* @public
|
|
880
880
|
*/
|
|
881
881
|
imageManifestMediaType?: string;
|
|
882
882
|
/**
|
|
883
|
-
* @public
|
|
884
883
|
* <p>The artifact media type of the image.</p>
|
|
884
|
+
* @public
|
|
885
885
|
*/
|
|
886
886
|
artifactMediaType?: string;
|
|
887
887
|
}
|
|
@@ -890,23 +890,23 @@ export interface ImageDetail {
|
|
|
890
890
|
*/
|
|
891
891
|
export interface DescribeImagesResponse {
|
|
892
892
|
/**
|
|
893
|
-
* @public
|
|
894
893
|
* <p>A list of <a>ImageDetail</a> objects that contain data about the
|
|
895
894
|
* image.</p>
|
|
895
|
+
* @public
|
|
896
896
|
*/
|
|
897
897
|
imageDetails?: ImageDetail[];
|
|
898
898
|
/**
|
|
899
|
-
* @public
|
|
900
899
|
* <p>The <code>nextToken</code> value to include in a future <code>DescribeImages</code>
|
|
901
900
|
* request. When the results of a <code>DescribeImages</code> request exceed
|
|
902
901
|
* <code>maxResults</code>, you can use this value to retrieve the next page of results. If
|
|
903
902
|
* there are no more results to return, this value is <code>null</code>.</p>
|
|
903
|
+
* @public
|
|
904
904
|
*/
|
|
905
905
|
nextToken?: string;
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
|
-
* @public
|
|
909
908
|
* <p>The image requested doesn't exist in the specified repository.</p>
|
|
909
|
+
* @public
|
|
910
910
|
*/
|
|
911
911
|
export declare class ImageNotFoundException extends __BaseException {
|
|
912
912
|
readonly name: "ImageNotFoundException";
|
|
@@ -921,28 +921,27 @@ export declare class ImageNotFoundException extends __BaseException {
|
|
|
921
921
|
*/
|
|
922
922
|
export interface DescribeImageTagsRequest {
|
|
923
923
|
/**
|
|
924
|
-
* @public
|
|
925
924
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
926
925
|
* repository where images are described. If you do not specify a registry, the default public registry is assumed.</p>
|
|
926
|
+
* @public
|
|
927
927
|
*/
|
|
928
928
|
registryId?: string;
|
|
929
929
|
/**
|
|
930
|
-
* @public
|
|
931
930
|
* <p>The name of the repository that contains the image tag details to describe.</p>
|
|
931
|
+
* @public
|
|
932
932
|
*/
|
|
933
933
|
repositoryName: string | undefined;
|
|
934
934
|
/**
|
|
935
|
-
* @public
|
|
936
935
|
* <p>The <code>nextToken</code> value that's returned from a previous paginated
|
|
937
936
|
* <code>DescribeImageTags</code> request where <code>maxResults</code> was used and the
|
|
938
937
|
* results exceeded the value of that parameter. Pagination continues from the end of the
|
|
939
938
|
* previous results that returned the <code>nextToken</code> value. If there are no more
|
|
940
939
|
* results to return, this value is <code>null</code>. If you specify images with
|
|
941
940
|
* <code>imageIds</code>, you can't use this option.</p>
|
|
941
|
+
* @public
|
|
942
942
|
*/
|
|
943
943
|
nextToken?: string;
|
|
944
944
|
/**
|
|
945
|
-
* @public
|
|
946
945
|
* <p>The maximum number of repository results that's returned by
|
|
947
946
|
* <code>DescribeImageTags</code> in paginated output. When this parameter is used,
|
|
948
947
|
* <code>DescribeImageTags</code> only returns <code>maxResults</code> results in a single
|
|
@@ -953,21 +952,21 @@ export interface DescribeImageTagsRequest {
|
|
|
953
952
|
* returns up to 100 results and a <code>nextToken</code> value, if
|
|
954
953
|
* applicable. If you specify images with <code>imageIds</code>, you can't use this
|
|
955
954
|
* option.</p>
|
|
955
|
+
* @public
|
|
956
956
|
*/
|
|
957
957
|
maxResults?: number;
|
|
958
958
|
}
|
|
959
959
|
/**
|
|
960
|
-
* @public
|
|
961
960
|
* <p>An object that describes the image tag details that are returned by a <a>DescribeImageTags</a> action.</p>
|
|
961
|
+
* @public
|
|
962
962
|
*/
|
|
963
963
|
export interface ReferencedImageDetail {
|
|
964
964
|
/**
|
|
965
|
-
* @public
|
|
966
965
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
966
|
+
* @public
|
|
967
967
|
*/
|
|
968
968
|
imageDigest?: string;
|
|
969
969
|
/**
|
|
970
|
-
* @public
|
|
971
970
|
* <p>The size, in bytes, of the image in the repository.</p>
|
|
972
971
|
* <p>If the image is a manifest list, this is the max size of all manifests in the
|
|
973
972
|
* list.</p>
|
|
@@ -977,43 +976,44 @@ export interface ReferencedImageDetail {
|
|
|
977
976
|
* command shows the uncompressed image size, so it might return a larger image size than
|
|
978
977
|
* the image sizes that are returned by <a>DescribeImages</a>.</p>
|
|
979
978
|
* </note>
|
|
979
|
+
* @public
|
|
980
980
|
*/
|
|
981
981
|
imageSizeInBytes?: number;
|
|
982
982
|
/**
|
|
983
|
-
* @public
|
|
984
983
|
* <p>The date and time, expressed in standard JavaScript date format, which the current image
|
|
985
984
|
* tag was pushed to the repository at.</p>
|
|
985
|
+
* @public
|
|
986
986
|
*/
|
|
987
987
|
imagePushedAt?: Date;
|
|
988
988
|
/**
|
|
989
|
-
* @public
|
|
990
989
|
* <p>The media type of the image manifest.</p>
|
|
990
|
+
* @public
|
|
991
991
|
*/
|
|
992
992
|
imageManifestMediaType?: string;
|
|
993
993
|
/**
|
|
994
|
-
* @public
|
|
995
994
|
* <p>The artifact media type of the image.</p>
|
|
995
|
+
* @public
|
|
996
996
|
*/
|
|
997
997
|
artifactMediaType?: string;
|
|
998
998
|
}
|
|
999
999
|
/**
|
|
1000
|
-
* @public
|
|
1001
1000
|
* <p>An object that represents the image tag details for an image.</p>
|
|
1001
|
+
* @public
|
|
1002
1002
|
*/
|
|
1003
1003
|
export interface ImageTagDetail {
|
|
1004
1004
|
/**
|
|
1005
|
-
* @public
|
|
1006
1005
|
* <p>The tag that's associated with the image.</p>
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/
|
|
1008
1008
|
imageTag?: string;
|
|
1009
1009
|
/**
|
|
1010
|
-
* @public
|
|
1011
1010
|
* <p>The time stamp that indicates when the image tag was created.</p>
|
|
1011
|
+
* @public
|
|
1012
1012
|
*/
|
|
1013
1013
|
createdAt?: Date;
|
|
1014
1014
|
/**
|
|
1015
|
-
* @public
|
|
1016
1015
|
* <p>An object that describes the details of an image.</p>
|
|
1016
|
+
* @public
|
|
1017
1017
|
*/
|
|
1018
1018
|
imageDetail?: ReferencedImageDetail;
|
|
1019
1019
|
}
|
|
@@ -1022,16 +1022,16 @@ export interface ImageTagDetail {
|
|
|
1022
1022
|
*/
|
|
1023
1023
|
export interface DescribeImageTagsResponse {
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>The image tag details for the images in the requested repository.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
imageTagDetails?: ImageTagDetail[];
|
|
1029
1029
|
/**
|
|
1030
|
-
* @public
|
|
1031
1030
|
* <p>The <code>nextToken</code> value to include in a future <code>DescribeImageTags</code>
|
|
1032
1031
|
* request. When the results of a <code>DescribeImageTags</code> request exceed
|
|
1033
1032
|
* <code>maxResults</code>, you can use this value to retrieve the next page of results. If
|
|
1034
1033
|
* there are no more results to return, this value is <code>null</code>.</p>
|
|
1034
|
+
* @public
|
|
1035
1035
|
*/
|
|
1036
1036
|
nextToken?: string;
|
|
1037
1037
|
}
|
|
@@ -1040,7 +1040,6 @@ export interface DescribeImageTagsResponse {
|
|
|
1040
1040
|
*/
|
|
1041
1041
|
export interface DescribeRegistriesRequest {
|
|
1042
1042
|
/**
|
|
1043
|
-
* @public
|
|
1044
1043
|
* <p>The <code>nextToken</code> value that's returned from a previous paginated
|
|
1045
1044
|
* <code>DescribeRegistries</code> request where <code>maxResults</code> was used and the
|
|
1046
1045
|
* results exceeded the value of that parameter. Pagination continues from the end of the
|
|
@@ -1049,10 +1048,10 @@ export interface DescribeRegistriesRequest {
|
|
|
1049
1048
|
* <note>
|
|
1050
1049
|
* <p>This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.</p>
|
|
1051
1050
|
* </note>
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
nextToken?: string;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* <p>The maximum number of repository results that's returned by
|
|
1057
1056
|
* <code>DescribeRegistries</code> in paginated output. When this parameter is used,
|
|
1058
1057
|
* <code>DescribeRegistries</code> only returns <code>maxResults</code> results in a single
|
|
@@ -1062,6 +1061,7 @@ export interface DescribeRegistriesRequest {
|
|
|
1062
1061
|
* 1000. If this parameter isn't used, then <code>DescribeRegistries</code>
|
|
1063
1062
|
* returns up to 100 results and a <code>nextToken</code> value, if
|
|
1064
1063
|
* applicable.</p>
|
|
1064
|
+
* @public
|
|
1065
1065
|
*/
|
|
1066
1066
|
maxResults?: number;
|
|
1067
1067
|
}
|
|
@@ -1079,25 +1079,24 @@ export declare const RegistryAliasStatus: {
|
|
|
1079
1079
|
*/
|
|
1080
1080
|
export type RegistryAliasStatus = (typeof RegistryAliasStatus)[keyof typeof RegistryAliasStatus];
|
|
1081
1081
|
/**
|
|
1082
|
-
* @public
|
|
1083
1082
|
* <p>An object representing the aliases for a public registry. A public registry is given an
|
|
1084
1083
|
* alias when it's created. However, a custom alias can be set using the Amazon ECR console. For
|
|
1085
1084
|
* more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html">Registries</a> in the
|
|
1086
1085
|
* <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
1086
|
+
* @public
|
|
1087
1087
|
*/
|
|
1088
1088
|
export interface RegistryAlias {
|
|
1089
1089
|
/**
|
|
1090
|
-
* @public
|
|
1091
1090
|
* <p>The name of the registry alias.</p>
|
|
1091
|
+
* @public
|
|
1092
1092
|
*/
|
|
1093
1093
|
name: string | undefined;
|
|
1094
1094
|
/**
|
|
1095
|
-
* @public
|
|
1096
1095
|
* <p>The status of the registry alias.</p>
|
|
1096
|
+
* @public
|
|
1097
1097
|
*/
|
|
1098
1098
|
status: RegistryAliasStatus | undefined;
|
|
1099
1099
|
/**
|
|
1100
|
-
* @public
|
|
1101
1100
|
* <p>Indicates whether the registry alias is the primary alias for the registry. If true, the
|
|
1102
1101
|
* alias is the primary registry alias and is displayed in both the repository URL and the
|
|
1103
1102
|
* image URI used in the <code>docker pull</code> commands on the Amazon ECR Public Gallery.</p>
|
|
@@ -1105,48 +1104,49 @@ export interface RegistryAlias {
|
|
|
1105
1104
|
* <p>A registry alias that isn't the primary registry alias can be used in the repository
|
|
1106
1105
|
* URI in a <code>docker pull</code> command.</p>
|
|
1107
1106
|
* </note>
|
|
1107
|
+
* @public
|
|
1108
1108
|
*/
|
|
1109
1109
|
primaryRegistryAlias: boolean | undefined;
|
|
1110
1110
|
/**
|
|
1111
|
-
* @public
|
|
1112
1111
|
* <p>Indicates whether the registry alias is the default alias for the registry. When the
|
|
1113
1112
|
* first public repository is created, your public registry is assigned a default registry
|
|
1114
1113
|
* alias.</p>
|
|
1114
|
+
* @public
|
|
1115
1115
|
*/
|
|
1116
1116
|
defaultRegistryAlias: boolean | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
/**
|
|
1119
|
-
* @public
|
|
1120
1119
|
* <p>The details of a public registry.</p>
|
|
1120
|
+
* @public
|
|
1121
1121
|
*/
|
|
1122
1122
|
export interface Registry {
|
|
1123
1123
|
/**
|
|
1124
|
-
* @public
|
|
1125
1124
|
* <p>The Amazon Web Services account ID that's associated with the registry.
|
|
1126
1125
|
* If you do not specify a registry, the default public registry is assumed.</p>
|
|
1126
|
+
* @public
|
|
1127
1127
|
*/
|
|
1128
1128
|
registryId: string | undefined;
|
|
1129
1129
|
/**
|
|
1130
|
-
* @public
|
|
1131
1130
|
* <p>The Amazon Resource Name (ARN) of the public registry.</p>
|
|
1131
|
+
* @public
|
|
1132
1132
|
*/
|
|
1133
1133
|
registryArn: string | undefined;
|
|
1134
1134
|
/**
|
|
1135
|
-
* @public
|
|
1136
1135
|
* <p>The URI of a public registry. The URI contains a universal prefix and the registry
|
|
1137
1136
|
* alias.</p>
|
|
1137
|
+
* @public
|
|
1138
1138
|
*/
|
|
1139
1139
|
registryUri: string | undefined;
|
|
1140
1140
|
/**
|
|
1141
|
-
* @public
|
|
1142
1141
|
* <p>Indicates whether the account is a verified Amazon Web Services Marketplace vendor. If an account is verified,
|
|
1143
1142
|
* each public repository receives a verified account badge on the
|
|
1144
1143
|
* Amazon ECR Public Gallery.</p>
|
|
1144
|
+
* @public
|
|
1145
1145
|
*/
|
|
1146
1146
|
verified: boolean | undefined;
|
|
1147
1147
|
/**
|
|
1148
|
-
* @public
|
|
1149
1148
|
* <p>An array of objects that represents the aliases for a public registry.</p>
|
|
1149
|
+
* @public
|
|
1150
1150
|
*/
|
|
1151
1151
|
aliases: RegistryAlias[] | undefined;
|
|
1152
1152
|
}
|
|
@@ -1155,17 +1155,17 @@ export interface Registry {
|
|
|
1155
1155
|
*/
|
|
1156
1156
|
export interface DescribeRegistriesResponse {
|
|
1157
1157
|
/**
|
|
1158
|
-
* @public
|
|
1159
1158
|
* <p>An object that contains the details for a public registry.</p>
|
|
1159
|
+
* @public
|
|
1160
1160
|
*/
|
|
1161
1161
|
registries: Registry[] | undefined;
|
|
1162
1162
|
/**
|
|
1163
|
-
* @public
|
|
1164
1163
|
* <p>The <code>nextToken</code> value to include in a future
|
|
1165
1164
|
* <code>DescribeRepositories</code> request. If the results of a
|
|
1166
1165
|
* <code>DescribeRepositories</code> request exceed <code>maxResults</code>, you can use
|
|
1167
1166
|
* this value to retrieve the next page of results. If there are no more results, this value
|
|
1168
1167
|
* is <code>null</code>.</p>
|
|
1168
|
+
* @public
|
|
1169
1169
|
*/
|
|
1170
1170
|
nextToken?: string;
|
|
1171
1171
|
}
|
|
@@ -1174,19 +1174,18 @@ export interface DescribeRegistriesResponse {
|
|
|
1174
1174
|
*/
|
|
1175
1175
|
export interface DescribeRepositoriesRequest {
|
|
1176
1176
|
/**
|
|
1177
|
-
* @public
|
|
1178
1177
|
* <p>The Amazon Web Services account ID that's associated with the registry that contains the repositories
|
|
1179
1178
|
* to be described. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1179
|
+
* @public
|
|
1180
1180
|
*/
|
|
1181
1181
|
registryId?: string;
|
|
1182
1182
|
/**
|
|
1183
|
-
* @public
|
|
1184
1183
|
* <p>A list of repositories to describe. If this parameter is omitted, then all repositories
|
|
1185
1184
|
* in a registry are described.</p>
|
|
1185
|
+
* @public
|
|
1186
1186
|
*/
|
|
1187
1187
|
repositoryNames?: string[];
|
|
1188
1188
|
/**
|
|
1189
|
-
* @public
|
|
1190
1189
|
* <p>The <code>nextToken</code> value that's returned from a previous paginated
|
|
1191
1190
|
* <code>DescribeRepositories</code> request where <code>maxResults</code> was used and the
|
|
1192
1191
|
* results exceeded the value of that parameter. Pagination continues from the end of the
|
|
@@ -1196,10 +1195,10 @@ export interface DescribeRepositoriesRequest {
|
|
|
1196
1195
|
* <note>
|
|
1197
1196
|
* <p>This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.</p>
|
|
1198
1197
|
* </note>
|
|
1198
|
+
* @public
|
|
1199
1199
|
*/
|
|
1200
1200
|
nextToken?: string;
|
|
1201
1201
|
/**
|
|
1202
|
-
* @public
|
|
1203
1202
|
* <p>The maximum number of repository results that's returned by
|
|
1204
1203
|
* <code>DescribeRepositories</code> in paginated output. When this parameter is used,
|
|
1205
1204
|
* <code>DescribeRepositories</code> only returns <code>maxResults</code> results in a
|
|
@@ -1210,6 +1209,7 @@ export interface DescribeRepositoriesRequest {
|
|
|
1210
1209
|
* returns up to 100 results and a <code>nextToken</code> value, if
|
|
1211
1210
|
* applicable. If you specify repositories with <code>repositoryNames</code>, you can't use
|
|
1212
1211
|
* this option.</p>
|
|
1212
|
+
* @public
|
|
1213
1213
|
*/
|
|
1214
1214
|
maxResults?: number;
|
|
1215
1215
|
}
|
|
@@ -1218,17 +1218,17 @@ export interface DescribeRepositoriesRequest {
|
|
|
1218
1218
|
*/
|
|
1219
1219
|
export interface DescribeRepositoriesResponse {
|
|
1220
1220
|
/**
|
|
1221
|
-
* @public
|
|
1222
1221
|
* <p>A list of repository objects corresponding to valid repositories.</p>
|
|
1222
|
+
* @public
|
|
1223
1223
|
*/
|
|
1224
1224
|
repositories?: Repository[];
|
|
1225
1225
|
/**
|
|
1226
|
-
* @public
|
|
1227
1226
|
* <p>The <code>nextToken</code> value to include in a future
|
|
1228
1227
|
* <code>DescribeRepositories</code> request. When the results of a
|
|
1229
1228
|
* <code>DescribeRepositories</code> request exceed <code>maxResults</code>, this value can
|
|
1230
1229
|
* be used to retrieve the next page of results. If there are no more results to return, this
|
|
1231
1230
|
* value is <code>null</code>.</p>
|
|
1231
|
+
* @public
|
|
1232
1232
|
*/
|
|
1233
1233
|
nextToken?: string;
|
|
1234
1234
|
}
|
|
@@ -1242,8 +1242,8 @@ export interface GetAuthorizationTokenRequest {
|
|
|
1242
1242
|
*/
|
|
1243
1243
|
export interface GetAuthorizationTokenResponse {
|
|
1244
1244
|
/**
|
|
1245
|
-
* @public
|
|
1246
1245
|
* <p>An authorization token data object that corresponds to a public registry.</p>
|
|
1246
|
+
* @public
|
|
1247
1247
|
*/
|
|
1248
1248
|
authorizationData?: AuthorizationData;
|
|
1249
1249
|
}
|
|
@@ -1253,17 +1253,17 @@ export interface GetAuthorizationTokenResponse {
|
|
|
1253
1253
|
export interface GetRegistryCatalogDataRequest {
|
|
1254
1254
|
}
|
|
1255
1255
|
/**
|
|
1256
|
-
* @public
|
|
1257
1256
|
* <p>The metadata for a public registry.</p>
|
|
1257
|
+
* @public
|
|
1258
1258
|
*/
|
|
1259
1259
|
export interface RegistryCatalogData {
|
|
1260
1260
|
/**
|
|
1261
|
-
* @public
|
|
1262
1261
|
* <p>The display name for a public registry. This appears on the Amazon ECR Public Gallery.</p>
|
|
1263
1262
|
* <important>
|
|
1264
1263
|
* <p>Only accounts that have the verified account badge can have a registry display
|
|
1265
1264
|
* name.</p>
|
|
1266
1265
|
* </important>
|
|
1266
|
+
* @public
|
|
1267
1267
|
*/
|
|
1268
1268
|
displayName?: string;
|
|
1269
1269
|
}
|
|
@@ -1272,8 +1272,8 @@ export interface RegistryCatalogData {
|
|
|
1272
1272
|
*/
|
|
1273
1273
|
export interface GetRegistryCatalogDataResponse {
|
|
1274
1274
|
/**
|
|
1275
|
-
* @public
|
|
1276
1275
|
* <p>The catalog metadata for the public registry.</p>
|
|
1276
|
+
* @public
|
|
1277
1277
|
*/
|
|
1278
1278
|
registryCatalogData: RegistryCatalogData | undefined;
|
|
1279
1279
|
}
|
|
@@ -1282,14 +1282,14 @@ export interface GetRegistryCatalogDataResponse {
|
|
|
1282
1282
|
*/
|
|
1283
1283
|
export interface GetRepositoryCatalogDataRequest {
|
|
1284
1284
|
/**
|
|
1285
|
-
* @public
|
|
1286
1285
|
* <p>The Amazon Web Services account ID that's associated with the registry that contains the repositories
|
|
1287
1286
|
* to be described. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1287
|
+
* @public
|
|
1288
1288
|
*/
|
|
1289
1289
|
registryId?: string;
|
|
1290
1290
|
/**
|
|
1291
|
-
* @public
|
|
1292
1291
|
* <p>The name of the repository to retrieve the catalog metadata for.</p>
|
|
1292
|
+
* @public
|
|
1293
1293
|
*/
|
|
1294
1294
|
repositoryName: string | undefined;
|
|
1295
1295
|
}
|
|
@@ -1298,14 +1298,14 @@ export interface GetRepositoryCatalogDataRequest {
|
|
|
1298
1298
|
*/
|
|
1299
1299
|
export interface GetRepositoryCatalogDataResponse {
|
|
1300
1300
|
/**
|
|
1301
|
-
* @public
|
|
1302
1301
|
* <p>The catalog metadata for the repository.</p>
|
|
1302
|
+
* @public
|
|
1303
1303
|
*/
|
|
1304
1304
|
catalogData?: RepositoryCatalogData;
|
|
1305
1305
|
}
|
|
1306
1306
|
/**
|
|
1307
|
-
* @public
|
|
1308
1307
|
* <p>The repository catalog data doesn't exist.</p>
|
|
1308
|
+
* @public
|
|
1309
1309
|
*/
|
|
1310
1310
|
export declare class RepositoryCatalogDataNotFoundException extends __BaseException {
|
|
1311
1311
|
readonly name: "RepositoryCatalogDataNotFoundException";
|
|
@@ -1320,14 +1320,14 @@ export declare class RepositoryCatalogDataNotFoundException extends __BaseExcept
|
|
|
1320
1320
|
*/
|
|
1321
1321
|
export interface GetRepositoryPolicyRequest {
|
|
1322
1322
|
/**
|
|
1323
|
-
* @public
|
|
1324
1323
|
* <p>The Amazon Web Services account ID that's associated with the public registry that contains the
|
|
1325
1324
|
* repository. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1325
|
+
* @public
|
|
1326
1326
|
*/
|
|
1327
1327
|
registryId?: string;
|
|
1328
1328
|
/**
|
|
1329
|
-
* @public
|
|
1330
1329
|
* <p>The name of the repository with the policy to retrieve.</p>
|
|
1330
|
+
* @public
|
|
1331
1331
|
*/
|
|
1332
1332
|
repositoryName: string | undefined;
|
|
1333
1333
|
}
|
|
@@ -1336,57 +1336,57 @@ export interface GetRepositoryPolicyRequest {
|
|
|
1336
1336
|
*/
|
|
1337
1337
|
export interface GetRepositoryPolicyResponse {
|
|
1338
1338
|
/**
|
|
1339
|
-
* @public
|
|
1340
1339
|
* <p>The registry ID that's associated with the request.</p>
|
|
1340
|
+
* @public
|
|
1341
1341
|
*/
|
|
1342
1342
|
registryId?: string;
|
|
1343
1343
|
/**
|
|
1344
|
-
* @public
|
|
1345
1344
|
* <p>The repository name that's associated with the request.</p>
|
|
1345
|
+
* @public
|
|
1346
1346
|
*/
|
|
1347
1347
|
repositoryName?: string;
|
|
1348
1348
|
/**
|
|
1349
|
-
* @public
|
|
1350
1349
|
* <p>The repository policy text that's associated with the repository. The policy text will
|
|
1351
1350
|
* be in JSON format.</p>
|
|
1351
|
+
* @public
|
|
1352
1352
|
*/
|
|
1353
1353
|
policyText?: string;
|
|
1354
1354
|
}
|
|
1355
1355
|
/**
|
|
1356
|
-
* @public
|
|
1357
1356
|
* <p>An object that represents an Amazon ECR image.</p>
|
|
1357
|
+
* @public
|
|
1358
1358
|
*/
|
|
1359
1359
|
export interface Image {
|
|
1360
1360
|
/**
|
|
1361
|
-
* @public
|
|
1362
1361
|
* <p>The Amazon Web Services account ID that's associated with the registry containing the image.</p>
|
|
1362
|
+
* @public
|
|
1363
1363
|
*/
|
|
1364
1364
|
registryId?: string;
|
|
1365
1365
|
/**
|
|
1366
|
-
* @public
|
|
1367
1366
|
* <p>The name of the repository that's associated with the image.</p>
|
|
1367
|
+
* @public
|
|
1368
1368
|
*/
|
|
1369
1369
|
repositoryName?: string;
|
|
1370
1370
|
/**
|
|
1371
|
-
* @public
|
|
1372
1371
|
* <p>An object that contains the image tag and image digest associated with an image.</p>
|
|
1372
|
+
* @public
|
|
1373
1373
|
*/
|
|
1374
1374
|
imageId?: ImageIdentifier;
|
|
1375
1375
|
/**
|
|
1376
|
-
* @public
|
|
1377
1376
|
* <p>The image manifest that's associated with the image.</p>
|
|
1377
|
+
* @public
|
|
1378
1378
|
*/
|
|
1379
1379
|
imageManifest?: string;
|
|
1380
1380
|
/**
|
|
1381
|
-
* @public
|
|
1382
1381
|
* <p>The manifest media type of the image.</p>
|
|
1382
|
+
* @public
|
|
1383
1383
|
*/
|
|
1384
1384
|
imageManifestMediaType?: string;
|
|
1385
1385
|
}
|
|
1386
1386
|
/**
|
|
1387
|
-
* @public
|
|
1388
1387
|
* <p>The specified image has already been pushed, and there were no changes to the manifest
|
|
1389
1388
|
* or image tag after the last push.</p>
|
|
1389
|
+
* @public
|
|
1390
1390
|
*/
|
|
1391
1391
|
export declare class ImageAlreadyExistsException extends __BaseException {
|
|
1392
1392
|
readonly name: "ImageAlreadyExistsException";
|
|
@@ -1397,9 +1397,9 @@ export declare class ImageAlreadyExistsException extends __BaseException {
|
|
|
1397
1397
|
constructor(opts: __ExceptionOptionType<ImageAlreadyExistsException, __BaseException>);
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
|
-
* @public
|
|
1401
1400
|
* <p>The specified image digest doesn't match the digest that Amazon ECR calculated for the
|
|
1402
1401
|
* image.</p>
|
|
1402
|
+
* @public
|
|
1403
1403
|
*/
|
|
1404
1404
|
export declare class ImageDigestDoesNotMatchException extends __BaseException {
|
|
1405
1405
|
readonly name: "ImageDigestDoesNotMatchException";
|
|
@@ -1410,9 +1410,9 @@ export declare class ImageDigestDoesNotMatchException extends __BaseException {
|
|
|
1410
1410
|
constructor(opts: __ExceptionOptionType<ImageDigestDoesNotMatchException, __BaseException>);
|
|
1411
1411
|
}
|
|
1412
1412
|
/**
|
|
1413
|
-
* @public
|
|
1414
1413
|
* <p>The specified image is tagged with a tag that already exists. The repository is
|
|
1415
1414
|
* configured for tag immutability.</p>
|
|
1415
|
+
* @public
|
|
1416
1416
|
*/
|
|
1417
1417
|
export declare class ImageTagAlreadyExistsException extends __BaseException {
|
|
1418
1418
|
readonly name: "ImageTagAlreadyExistsException";
|
|
@@ -1427,14 +1427,14 @@ export declare class ImageTagAlreadyExistsException extends __BaseException {
|
|
|
1427
1427
|
*/
|
|
1428
1428
|
export interface InitiateLayerUploadRequest {
|
|
1429
1429
|
/**
|
|
1430
|
-
* @public
|
|
1431
1430
|
* <p>The Amazon Web Services account ID, or registry alias, that's associated with the registry to which
|
|
1432
1431
|
* you intend to upload layers. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1432
|
+
* @public
|
|
1433
1433
|
*/
|
|
1434
1434
|
registryId?: string;
|
|
1435
1435
|
/**
|
|
1436
|
-
* @public
|
|
1437
1436
|
* <p>The name of the repository that you want to upload layers to.</p>
|
|
1437
|
+
* @public
|
|
1438
1438
|
*/
|
|
1439
1439
|
repositoryName: string | undefined;
|
|
1440
1440
|
}
|
|
@@ -1443,42 +1443,42 @@ export interface InitiateLayerUploadRequest {
|
|
|
1443
1443
|
*/
|
|
1444
1444
|
export interface InitiateLayerUploadResponse {
|
|
1445
1445
|
/**
|
|
1446
|
-
* @public
|
|
1447
1446
|
* <p>The upload ID for the layer upload. This parameter is passed to further <a>UploadLayerPart</a> and <a>CompleteLayerUpload</a> operations.</p>
|
|
1447
|
+
* @public
|
|
1448
1448
|
*/
|
|
1449
1449
|
uploadId?: string;
|
|
1450
1450
|
/**
|
|
1451
|
-
* @public
|
|
1452
1451
|
* <p>The size, in bytes, that Amazon ECR expects future layer part uploads to be.</p>
|
|
1452
|
+
* @public
|
|
1453
1453
|
*/
|
|
1454
1454
|
partSize?: number;
|
|
1455
1455
|
}
|
|
1456
1456
|
/**
|
|
1457
|
-
* @public
|
|
1458
1457
|
* <p>The layer part size isn't valid, or the first byte specified isn't consecutive to the
|
|
1459
1458
|
* last byte of a previous layer part upload.</p>
|
|
1459
|
+
* @public
|
|
1460
1460
|
*/
|
|
1461
1461
|
export declare class InvalidLayerPartException extends __BaseException {
|
|
1462
1462
|
readonly name: "InvalidLayerPartException";
|
|
1463
1463
|
readonly $fault: "client";
|
|
1464
1464
|
/**
|
|
1465
|
-
* @public
|
|
1466
1465
|
* <p>The Amazon Web Services account ID that's associated with the layer part.</p>
|
|
1466
|
+
* @public
|
|
1467
1467
|
*/
|
|
1468
1468
|
registryId?: string;
|
|
1469
1469
|
/**
|
|
1470
|
-
* @public
|
|
1471
1470
|
* <p>The name of the repository.</p>
|
|
1471
|
+
* @public
|
|
1472
1472
|
*/
|
|
1473
1473
|
repositoryName?: string;
|
|
1474
1474
|
/**
|
|
1475
|
-
* @public
|
|
1476
1475
|
* <p>The upload ID that's associated with the layer part.</p>
|
|
1476
|
+
* @public
|
|
1477
1477
|
*/
|
|
1478
1478
|
uploadId?: string;
|
|
1479
1479
|
/**
|
|
1480
|
-
* @public
|
|
1481
1480
|
* <p>The position of the last byte of the layer part.</p>
|
|
1481
|
+
* @public
|
|
1482
1482
|
*/
|
|
1483
1483
|
lastValidByteReceived?: number;
|
|
1484
1484
|
/**
|
|
@@ -1487,9 +1487,9 @@ export declare class InvalidLayerPartException extends __BaseException {
|
|
|
1487
1487
|
constructor(opts: __ExceptionOptionType<InvalidLayerPartException, __BaseException>);
|
|
1488
1488
|
}
|
|
1489
1489
|
/**
|
|
1490
|
-
* @public
|
|
1491
1490
|
* <p>The specified layers can't be found, or the specified layer isn't valid for this
|
|
1492
1491
|
* repository.</p>
|
|
1492
|
+
* @public
|
|
1493
1493
|
*/
|
|
1494
1494
|
export declare class LayersNotFoundException extends __BaseException {
|
|
1495
1495
|
readonly name: "LayersNotFoundException";
|
|
@@ -1504,9 +1504,9 @@ export declare class LayersNotFoundException extends __BaseException {
|
|
|
1504
1504
|
*/
|
|
1505
1505
|
export interface ListTagsForResourceRequest {
|
|
1506
1506
|
/**
|
|
1507
|
-
* @public
|
|
1508
1507
|
* <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for. Currently, the
|
|
1509
1508
|
* supported resource is an Amazon ECR Public repository.</p>
|
|
1509
|
+
* @public
|
|
1510
1510
|
*/
|
|
1511
1511
|
resourceArn: string | undefined;
|
|
1512
1512
|
}
|
|
@@ -1515,8 +1515,8 @@ export interface ListTagsForResourceRequest {
|
|
|
1515
1515
|
*/
|
|
1516
1516
|
export interface ListTagsForResourceResponse {
|
|
1517
1517
|
/**
|
|
1518
|
-
* @public
|
|
1519
1518
|
* <p>The tags for the resource.</p>
|
|
1519
|
+
* @public
|
|
1520
1520
|
*/
|
|
1521
1521
|
tags?: Tag[];
|
|
1522
1522
|
}
|
|
@@ -1525,37 +1525,37 @@ export interface ListTagsForResourceResponse {
|
|
|
1525
1525
|
*/
|
|
1526
1526
|
export interface PutImageRequest {
|
|
1527
1527
|
/**
|
|
1528
|
-
* @public
|
|
1529
1528
|
* <p>The Amazon Web Services account ID, or registry alias, that's associated with the public registry that
|
|
1530
1529
|
* contains the repository where the image is put. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1530
|
+
* @public
|
|
1531
1531
|
*/
|
|
1532
1532
|
registryId?: string;
|
|
1533
1533
|
/**
|
|
1534
|
-
* @public
|
|
1535
1534
|
* <p>The name of the repository where the image is put.</p>
|
|
1535
|
+
* @public
|
|
1536
1536
|
*/
|
|
1537
1537
|
repositoryName: string | undefined;
|
|
1538
1538
|
/**
|
|
1539
|
-
* @public
|
|
1540
1539
|
* <p>The image manifest that corresponds to the image to be uploaded.</p>
|
|
1540
|
+
* @public
|
|
1541
1541
|
*/
|
|
1542
1542
|
imageManifest: string | undefined;
|
|
1543
1543
|
/**
|
|
1544
|
-
* @public
|
|
1545
1544
|
* <p>The media type of the image manifest. If you push an image manifest that doesn't contain
|
|
1546
1545
|
* the <code>mediaType</code> field, you must specify the <code>imageManifestMediaType</code>
|
|
1547
1546
|
* in the request.</p>
|
|
1547
|
+
* @public
|
|
1548
1548
|
*/
|
|
1549
1549
|
imageManifestMediaType?: string;
|
|
1550
1550
|
/**
|
|
1551
|
-
* @public
|
|
1552
1551
|
* <p>The tag to associate with the image. This parameter is required for images that use the
|
|
1553
1552
|
* Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.</p>
|
|
1553
|
+
* @public
|
|
1554
1554
|
*/
|
|
1555
1555
|
imageTag?: string;
|
|
1556
1556
|
/**
|
|
1557
|
-
* @public
|
|
1558
1557
|
* <p>The image digest of the image manifest that corresponds to the image.</p>
|
|
1558
|
+
* @public
|
|
1559
1559
|
*/
|
|
1560
1560
|
imageDigest?: string;
|
|
1561
1561
|
}
|
|
@@ -1564,14 +1564,14 @@ export interface PutImageRequest {
|
|
|
1564
1564
|
*/
|
|
1565
1565
|
export interface PutImageResponse {
|
|
1566
1566
|
/**
|
|
1567
|
-
* @public
|
|
1568
1567
|
* <p>Details of the image uploaded.</p>
|
|
1568
|
+
* @public
|
|
1569
1569
|
*/
|
|
1570
1570
|
image?: Image;
|
|
1571
1571
|
}
|
|
1572
1572
|
/**
|
|
1573
|
-
* @public
|
|
1574
1573
|
* <p>The manifest list is referencing an image that doesn't exist.</p>
|
|
1574
|
+
* @public
|
|
1575
1575
|
*/
|
|
1576
1576
|
export declare class ReferencedImagesNotFoundException extends __BaseException {
|
|
1577
1577
|
readonly name: "ReferencedImagesNotFoundException";
|
|
@@ -1586,13 +1586,13 @@ export declare class ReferencedImagesNotFoundException extends __BaseException {
|
|
|
1586
1586
|
*/
|
|
1587
1587
|
export interface PutRegistryCatalogDataRequest {
|
|
1588
1588
|
/**
|
|
1589
|
-
* @public
|
|
1590
1589
|
* <p>The display name for a public registry. The display name is shown as the repository
|
|
1591
1590
|
* author in the Amazon ECR Public Gallery.</p>
|
|
1592
1591
|
* <note>
|
|
1593
1592
|
* <p>The registry display name is only publicly visible in the Amazon ECR Public Gallery for
|
|
1594
1593
|
* verified accounts.</p>
|
|
1595
1594
|
* </note>
|
|
1595
|
+
* @public
|
|
1596
1596
|
*/
|
|
1597
1597
|
displayName?: string;
|
|
1598
1598
|
}
|
|
@@ -1601,8 +1601,8 @@ export interface PutRegistryCatalogDataRequest {
|
|
|
1601
1601
|
*/
|
|
1602
1602
|
export interface PutRegistryCatalogDataResponse {
|
|
1603
1603
|
/**
|
|
1604
|
-
* @public
|
|
1605
1604
|
* <p>The catalog data for the public registry.</p>
|
|
1605
|
+
* @public
|
|
1606
1606
|
*/
|
|
1607
1607
|
registryCatalogData: RegistryCatalogData | undefined;
|
|
1608
1608
|
}
|
|
@@ -1611,20 +1611,20 @@ export interface PutRegistryCatalogDataResponse {
|
|
|
1611
1611
|
*/
|
|
1612
1612
|
export interface PutRepositoryCatalogDataRequest {
|
|
1613
1613
|
/**
|
|
1614
|
-
* @public
|
|
1615
1614
|
* <p>The Amazon Web Services account ID that's associated with the public registry the repository is in.
|
|
1616
1615
|
* If you do not specify a registry, the default public registry is assumed.</p>
|
|
1616
|
+
* @public
|
|
1617
1617
|
*/
|
|
1618
1618
|
registryId?: string;
|
|
1619
1619
|
/**
|
|
1620
|
-
* @public
|
|
1621
1620
|
* <p>The name of the repository to create or update the catalog data for.</p>
|
|
1621
|
+
* @public
|
|
1622
1622
|
*/
|
|
1623
1623
|
repositoryName: string | undefined;
|
|
1624
1624
|
/**
|
|
1625
|
-
* @public
|
|
1626
1625
|
* <p>An object containing the catalog data for a repository. This data is publicly visible in
|
|
1627
1626
|
* the Amazon ECR Public Gallery.</p>
|
|
1627
|
+
* @public
|
|
1628
1628
|
*/
|
|
1629
1629
|
catalogData: RepositoryCatalogDataInput | undefined;
|
|
1630
1630
|
}
|
|
@@ -1633,8 +1633,8 @@ export interface PutRepositoryCatalogDataRequest {
|
|
|
1633
1633
|
*/
|
|
1634
1634
|
export interface PutRepositoryCatalogDataResponse {
|
|
1635
1635
|
/**
|
|
1636
|
-
* @public
|
|
1637
1636
|
* <p>The catalog data for the repository.</p>
|
|
1637
|
+
* @public
|
|
1638
1638
|
*/
|
|
1639
1639
|
catalogData?: RepositoryCatalogData;
|
|
1640
1640
|
}
|
|
@@ -1643,28 +1643,28 @@ export interface PutRepositoryCatalogDataResponse {
|
|
|
1643
1643
|
*/
|
|
1644
1644
|
export interface SetRepositoryPolicyRequest {
|
|
1645
1645
|
/**
|
|
1646
|
-
* @public
|
|
1647
1646
|
* <p>The Amazon Web Services account ID that's associated with the registry that contains the repository.
|
|
1648
1647
|
* If you do not specify a registry, the default public registry is assumed.</p>
|
|
1648
|
+
* @public
|
|
1649
1649
|
*/
|
|
1650
1650
|
registryId?: string;
|
|
1651
1651
|
/**
|
|
1652
|
-
* @public
|
|
1653
1652
|
* <p>The name of the repository to receive the policy.</p>
|
|
1653
|
+
* @public
|
|
1654
1654
|
*/
|
|
1655
1655
|
repositoryName: string | undefined;
|
|
1656
1656
|
/**
|
|
1657
|
-
* @public
|
|
1658
1657
|
* <p>The JSON repository policy text to apply to the repository. For more information, see
|
|
1659
1658
|
* <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html">Amazon ECR Repository
|
|
1660
1659
|
* Policies</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
1660
|
+
* @public
|
|
1661
1661
|
*/
|
|
1662
1662
|
policyText: string | undefined;
|
|
1663
1663
|
/**
|
|
1664
|
-
* @public
|
|
1665
1664
|
* <p>If the policy that you want to set on a repository policy would prevent you from setting
|
|
1666
1665
|
* another policy in the future, you must force the <a>SetRepositoryPolicy</a>
|
|
1667
1666
|
* operation. This prevents accidental repository lockouts.</p>
|
|
1667
|
+
* @public
|
|
1668
1668
|
*/
|
|
1669
1669
|
force?: boolean;
|
|
1670
1670
|
}
|
|
@@ -1673,18 +1673,18 @@ export interface SetRepositoryPolicyRequest {
|
|
|
1673
1673
|
*/
|
|
1674
1674
|
export interface SetRepositoryPolicyResponse {
|
|
1675
1675
|
/**
|
|
1676
|
-
* @public
|
|
1677
1676
|
* <p>The registry ID that's associated with the request.</p>
|
|
1677
|
+
* @public
|
|
1678
1678
|
*/
|
|
1679
1679
|
registryId?: string;
|
|
1680
1680
|
/**
|
|
1681
|
-
* @public
|
|
1682
1681
|
* <p>The repository name that's associated with the request.</p>
|
|
1682
|
+
* @public
|
|
1683
1683
|
*/
|
|
1684
1684
|
repositoryName?: string;
|
|
1685
1685
|
/**
|
|
1686
|
-
* @public
|
|
1687
1686
|
* <p>The JSON repository policy text that's applied to the repository.</p>
|
|
1687
|
+
* @public
|
|
1688
1688
|
*/
|
|
1689
1689
|
policyText?: string;
|
|
1690
1690
|
}
|
|
@@ -1693,15 +1693,15 @@ export interface SetRepositoryPolicyResponse {
|
|
|
1693
1693
|
*/
|
|
1694
1694
|
export interface TagResourceRequest {
|
|
1695
1695
|
/**
|
|
1696
|
-
* @public
|
|
1697
1696
|
* <p>The Amazon Resource Name (ARN) of the resource to add tags to. Currently, the supported
|
|
1698
1697
|
* resource is an Amazon ECR Public repository.</p>
|
|
1698
|
+
* @public
|
|
1699
1699
|
*/
|
|
1700
1700
|
resourceArn: string | undefined;
|
|
1701
1701
|
/**
|
|
1702
|
-
* @public
|
|
1703
1702
|
* <p>The tags to add to the resource. A tag is an array of key-value pairs.
|
|
1704
1703
|
* Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
|
|
1704
|
+
* @public
|
|
1705
1705
|
*/
|
|
1706
1706
|
tags: Tag[] | undefined;
|
|
1707
1707
|
}
|
|
@@ -1715,14 +1715,14 @@ export interface TagResourceResponse {
|
|
|
1715
1715
|
*/
|
|
1716
1716
|
export interface UntagResourceRequest {
|
|
1717
1717
|
/**
|
|
1718
|
-
* @public
|
|
1719
1718
|
* <p>The Amazon Resource Name (ARN) of the resource to delete tags from. Currently, the supported resource is
|
|
1720
1719
|
* an Amazon ECR Public repository.</p>
|
|
1720
|
+
* @public
|
|
1721
1721
|
*/
|
|
1722
1722
|
resourceArn: string | undefined;
|
|
1723
1723
|
/**
|
|
1724
|
-
* @public
|
|
1725
1724
|
* <p>The keys of the tags to be removed.</p>
|
|
1725
|
+
* @public
|
|
1726
1726
|
*/
|
|
1727
1727
|
tagKeys: string[] | undefined;
|
|
1728
1728
|
}
|
|
@@ -1736,35 +1736,35 @@ export interface UntagResourceResponse {
|
|
|
1736
1736
|
*/
|
|
1737
1737
|
export interface UploadLayerPartRequest {
|
|
1738
1738
|
/**
|
|
1739
|
-
* @public
|
|
1740
1739
|
* <p>The Amazon Web Services account ID, or registry alias, that's associated with the registry that you're
|
|
1741
1740
|
* uploading layer parts to. If you do not specify a registry, the default public registry is assumed.</p>
|
|
1741
|
+
* @public
|
|
1742
1742
|
*/
|
|
1743
1743
|
registryId?: string;
|
|
1744
1744
|
/**
|
|
1745
|
-
* @public
|
|
1746
1745
|
* <p>The name of the repository that you're uploading layer parts to.</p>
|
|
1746
|
+
* @public
|
|
1747
1747
|
*/
|
|
1748
1748
|
repositoryName: string | undefined;
|
|
1749
1749
|
/**
|
|
1750
|
-
* @public
|
|
1751
1750
|
* <p>The upload ID from a previous <a>InitiateLayerUpload</a> operation to
|
|
1752
1751
|
* associate with the layer part upload.</p>
|
|
1752
|
+
* @public
|
|
1753
1753
|
*/
|
|
1754
1754
|
uploadId: string | undefined;
|
|
1755
1755
|
/**
|
|
1756
|
-
* @public
|
|
1757
1756
|
* <p>The position of the first byte of the layer part witin the overall image layer.</p>
|
|
1757
|
+
* @public
|
|
1758
1758
|
*/
|
|
1759
1759
|
partFirstByte: number | undefined;
|
|
1760
1760
|
/**
|
|
1761
|
-
* @public
|
|
1762
1761
|
* <p>The position of the last byte of the layer part within the overall image layer.</p>
|
|
1762
|
+
* @public
|
|
1763
1763
|
*/
|
|
1764
1764
|
partLastByte: number | undefined;
|
|
1765
1765
|
/**
|
|
1766
|
-
* @public
|
|
1767
1766
|
* <p>The base64-encoded layer part payload.</p>
|
|
1767
|
+
* @public
|
|
1768
1768
|
*/
|
|
1769
1769
|
layerPartBlob: Uint8Array | undefined;
|
|
1770
1770
|
}
|
|
@@ -1773,23 +1773,23 @@ export interface UploadLayerPartRequest {
|
|
|
1773
1773
|
*/
|
|
1774
1774
|
export interface UploadLayerPartResponse {
|
|
1775
1775
|
/**
|
|
1776
|
-
* @public
|
|
1777
1776
|
* <p>The registry ID that's associated with the request.</p>
|
|
1777
|
+
* @public
|
|
1778
1778
|
*/
|
|
1779
1779
|
registryId?: string;
|
|
1780
1780
|
/**
|
|
1781
|
-
* @public
|
|
1782
1781
|
* <p>The repository name that's associated with the request.</p>
|
|
1782
|
+
* @public
|
|
1783
1783
|
*/
|
|
1784
1784
|
repositoryName?: string;
|
|
1785
1785
|
/**
|
|
1786
|
-
* @public
|
|
1787
1786
|
* <p>The upload ID that's associated with the request.</p>
|
|
1787
|
+
* @public
|
|
1788
1788
|
*/
|
|
1789
1789
|
uploadId?: string;
|
|
1790
1790
|
/**
|
|
1791
|
-
* @public
|
|
1792
1791
|
* <p>The integer value of the last byte that's received in the request.</p>
|
|
1792
|
+
* @public
|
|
1793
1793
|
*/
|
|
1794
1794
|
lastByteReceived?: number;
|
|
1795
1795
|
}
|