@aws-sdk/client-ecr 3.686.0 → 3.691.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/models/models_0.d.ts +383 -383
- package/dist-types/ts3.4/models/models_0.d.ts +389 -383
- package/package.json +7 -7
|
@@ -9,7 +9,7 @@ export interface BatchCheckLayerAvailabilityRequest {
|
|
|
9
9
|
* check. If you do not specify a registry, the default registry is assumed.</p>
|
|
10
10
|
* @public
|
|
11
11
|
*/
|
|
12
|
-
registryId?: string;
|
|
12
|
+
registryId?: string | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* <p>The name of the repository that is associated with the image layers to check.</p>
|
|
15
15
|
* @public
|
|
@@ -42,17 +42,17 @@ export interface LayerFailure {
|
|
|
42
42
|
* <p>The layer digest associated with the failure.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
layerDigest?: string;
|
|
45
|
+
layerDigest?: string | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The failure code associated with the failure.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
failureCode?: LayerFailureCode;
|
|
50
|
+
failureCode?: LayerFailureCode | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>The reason for the failure.</p>
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
failureReason?: string;
|
|
55
|
+
failureReason?: string | undefined;
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
58
|
* @public
|
|
@@ -75,24 +75,24 @@ export interface Layer {
|
|
|
75
75
|
* <p>The <code>sha256</code> digest of the image layer.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
layerDigest?: string;
|
|
78
|
+
layerDigest?: string | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>The availability status of the image layer.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
layerAvailability?: LayerAvailability;
|
|
83
|
+
layerAvailability?: LayerAvailability | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The size, in bytes, of the image layer.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
layerSize?: number;
|
|
88
|
+
layerSize?: number | undefined;
|
|
89
89
|
/**
|
|
90
90
|
* <p>The media type of the layer, such as
|
|
91
91
|
* <code>application/vnd.docker.image.rootfs.diff.tar.gzip</code> or
|
|
92
92
|
* <code>application/vnd.oci.image.layer.v1.tar+gzip</code>.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
mediaType?: string;
|
|
95
|
+
mediaType?: string | undefined;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @public
|
|
@@ -103,12 +103,12 @@ export interface BatchCheckLayerAvailabilityResponse {
|
|
|
103
103
|
* request.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
layers?: Layer[];
|
|
106
|
+
layers?: Layer[] | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>Any failures associated with the call.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
failures?: LayerFailure[];
|
|
111
|
+
failures?: LayerFailure[] | undefined;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
@@ -157,12 +157,12 @@ export interface ImageIdentifier {
|
|
|
157
157
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
imageDigest?: string;
|
|
160
|
+
imageDigest?: string | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The tag used for the image.</p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
imageTag?: string;
|
|
165
|
+
imageTag?: string | undefined;
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* <p>Deletes specified images within a specified repository. Images are specified with
|
|
@@ -175,7 +175,7 @@ export interface BatchDeleteImageRequest {
|
|
|
175
175
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
176
176
|
* @public
|
|
177
177
|
*/
|
|
178
|
-
registryId?: string;
|
|
178
|
+
registryId?: string | undefined;
|
|
179
179
|
/**
|
|
180
180
|
* <p>The repository that contains the image to delete.</p>
|
|
181
181
|
* @public
|
|
@@ -218,17 +218,17 @@ export interface ImageFailure {
|
|
|
218
218
|
* <p>The image ID associated with the failure.</p>
|
|
219
219
|
* @public
|
|
220
220
|
*/
|
|
221
|
-
imageId?: ImageIdentifier;
|
|
221
|
+
imageId?: ImageIdentifier | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* <p>The code associated with the failure.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
failureCode?: ImageFailureCode;
|
|
226
|
+
failureCode?: ImageFailureCode | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>The reason for the failure.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
failureReason?: string;
|
|
231
|
+
failureReason?: string | undefined;
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* @public
|
|
@@ -238,12 +238,12 @@ export interface BatchDeleteImageResponse {
|
|
|
238
238
|
* <p>The image IDs of the deleted images.</p>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
imageIds?: ImageIdentifier[];
|
|
241
|
+
imageIds?: ImageIdentifier[] | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* <p>Any failures associated with the call.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
failures?: ImageFailure[];
|
|
246
|
+
failures?: ImageFailure[] | undefined;
|
|
247
247
|
}
|
|
248
248
|
/**
|
|
249
249
|
* @public
|
|
@@ -254,7 +254,7 @@ export interface BatchGetImageRequest {
|
|
|
254
254
|
* describe. If you do not specify a registry, the default registry is assumed.</p>
|
|
255
255
|
* @public
|
|
256
256
|
*/
|
|
257
|
-
registryId?: string;
|
|
257
|
+
registryId?: string | undefined;
|
|
258
258
|
/**
|
|
259
259
|
* <p>The repository that contains the images to describe.</p>
|
|
260
260
|
* @public
|
|
@@ -275,7 +275,7 @@ export interface BatchGetImageRequest {
|
|
|
275
275
|
* </p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
acceptedMediaTypes?: string[];
|
|
278
|
+
acceptedMediaTypes?: string[] | undefined;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
281
|
* <p>An object representing an Amazon ECR image.</p>
|
|
@@ -286,27 +286,27 @@ export interface Image {
|
|
|
286
286
|
* <p>The Amazon Web Services account ID associated with the registry containing the image.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
registryId?: string;
|
|
289
|
+
registryId?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>The name of the repository associated with the image.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
repositoryName?: string;
|
|
294
|
+
repositoryName?: string | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>An object containing the image tag and image digest associated with an image.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
imageId?: ImageIdentifier;
|
|
299
|
+
imageId?: ImageIdentifier | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>The image manifest associated with the image.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
imageManifest?: string;
|
|
304
|
+
imageManifest?: string | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>The manifest media type of the image.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
imageManifestMediaType?: string;
|
|
309
|
+
imageManifestMediaType?: string | undefined;
|
|
310
310
|
}
|
|
311
311
|
/**
|
|
312
312
|
* @public
|
|
@@ -316,12 +316,12 @@ export interface BatchGetImageResponse {
|
|
|
316
316
|
* <p>A list of image objects corresponding to the image references in the request.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
images?: Image[];
|
|
319
|
+
images?: Image[] | undefined;
|
|
320
320
|
/**
|
|
321
321
|
* <p>Any failures associated with the call.</p>
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
failures?: ImageFailure[];
|
|
324
|
+
failures?: ImageFailure[] | undefined;
|
|
325
325
|
}
|
|
326
326
|
/**
|
|
327
327
|
* <p>The operation did not succeed because it would have exceeded a service limit for your
|
|
@@ -382,17 +382,17 @@ export interface RepositoryScanningConfigurationFailure {
|
|
|
382
382
|
* <p>The name of the repository.</p>
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
repositoryName?: string;
|
|
385
|
+
repositoryName?: string | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* <p>The failure code.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
failureCode?: ScanningConfigurationFailureCode;
|
|
390
|
+
failureCode?: ScanningConfigurationFailureCode | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>The reason for the failure.</p>
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
|
-
failureReason?: string;
|
|
395
|
+
failureReason?: string | undefined;
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
398
398
|
* @public
|
|
@@ -445,27 +445,27 @@ export interface RepositoryScanningConfiguration {
|
|
|
445
445
|
* <p>The ARN of the repository.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
repositoryArn?: string;
|
|
448
|
+
repositoryArn?: string | undefined;
|
|
449
449
|
/**
|
|
450
450
|
* <p>The name of the repository.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
repositoryName?: string;
|
|
453
|
+
repositoryName?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>Whether or not scan on push is configured for the repository.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
scanOnPush?: boolean;
|
|
458
|
+
scanOnPush?: boolean | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The scan frequency for the repository.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
scanFrequency?: ScanFrequency;
|
|
463
|
+
scanFrequency?: ScanFrequency | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The scan filters applied to the repository.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
appliedScanFilters?: ScanningRepositoryFilter[];
|
|
468
|
+
appliedScanFilters?: ScanningRepositoryFilter[] | undefined;
|
|
469
469
|
}
|
|
470
470
|
/**
|
|
471
471
|
* @public
|
|
@@ -475,12 +475,12 @@ export interface BatchGetRepositoryScanningConfigurationResponse {
|
|
|
475
475
|
* <p>The scanning configuration for the requested repositories.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
scanningConfigurations?: RepositoryScanningConfiguration[];
|
|
478
|
+
scanningConfigurations?: RepositoryScanningConfiguration[] | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>Any failures associated with the call.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
failures?: RepositoryScanningConfigurationFailure[];
|
|
483
|
+
failures?: RepositoryScanningConfigurationFailure[] | undefined;
|
|
484
484
|
}
|
|
485
485
|
/**
|
|
486
486
|
* <p>There was an exception validating this request.</p>
|
|
@@ -503,7 +503,7 @@ export interface CompleteLayerUploadRequest {
|
|
|
503
503
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
registryId?: string;
|
|
506
|
+
registryId?: string | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>The name of the repository to associate with the image layer.</p>
|
|
509
509
|
* @public
|
|
@@ -529,22 +529,22 @@ export interface CompleteLayerUploadResponse {
|
|
|
529
529
|
* <p>The registry ID associated with the request.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
registryId?: string;
|
|
532
|
+
registryId?: string | undefined;
|
|
533
533
|
/**
|
|
534
534
|
* <p>The repository name associated with the request.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
repositoryName?: string;
|
|
537
|
+
repositoryName?: string | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>The upload ID associated with the layer.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
uploadId?: string;
|
|
542
|
+
uploadId?: string | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>The <code>sha256</code> digest of the image layer.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
layerDigest?: string;
|
|
547
|
+
layerDigest?: string | undefined;
|
|
548
548
|
}
|
|
549
549
|
/**
|
|
550
550
|
* <p>The specified layer upload does not contain any layer parts.</p>
|
|
@@ -582,7 +582,7 @@ export declare class KmsException extends __BaseException {
|
|
|
582
582
|
* <p>The error code returned by KMS.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
kmsError?: string;
|
|
585
|
+
kmsError?: string | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* @internal
|
|
588
588
|
*/
|
|
@@ -692,18 +692,18 @@ export interface CreatePullThroughCacheRuleRequest {
|
|
|
692
692
|
* rule for. If you do not specify a registry, the default registry is assumed.</p>
|
|
693
693
|
* @public
|
|
694
694
|
*/
|
|
695
|
-
registryId?: string;
|
|
695
|
+
registryId?: string | undefined;
|
|
696
696
|
/**
|
|
697
697
|
* <p>The name of the upstream registry.</p>
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
upstreamRegistry?: UpstreamRegistry;
|
|
700
|
+
upstreamRegistry?: UpstreamRegistry | undefined;
|
|
701
701
|
/**
|
|
702
702
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that identifies the credentials to authenticate
|
|
703
703
|
* to the upstream registry.</p>
|
|
704
704
|
* @public
|
|
705
705
|
*/
|
|
706
|
-
credentialArn?: string;
|
|
706
|
+
credentialArn?: string | undefined;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
709
|
* @public
|
|
@@ -713,34 +713,34 @@ export interface CreatePullThroughCacheRuleResponse {
|
|
|
713
713
|
* <p>The Amazon ECR repository prefix associated with the pull through cache rule.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
ecrRepositoryPrefix?: string;
|
|
716
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* <p>The upstream registry URL associated with the pull through cache rule.</p>
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
upstreamRegistryUrl?: string;
|
|
721
|
+
upstreamRegistryUrl?: string | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* <p>The date and time, in JavaScript date format, when the pull through cache rule was
|
|
724
724
|
* created.</p>
|
|
725
725
|
* @public
|
|
726
726
|
*/
|
|
727
|
-
createdAt?: Date;
|
|
727
|
+
createdAt?: Date | undefined;
|
|
728
728
|
/**
|
|
729
729
|
* <p>The registry ID associated with the request.</p>
|
|
730
730
|
* @public
|
|
731
731
|
*/
|
|
732
|
-
registryId?: string;
|
|
732
|
+
registryId?: string | undefined;
|
|
733
733
|
/**
|
|
734
734
|
* <p>The name of the upstream registry associated with the pull through cache rule.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
upstreamRegistry?: UpstreamRegistry;
|
|
737
|
+
upstreamRegistry?: UpstreamRegistry | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache
|
|
740
740
|
* rule.</p>
|
|
741
741
|
* @public
|
|
742
742
|
*/
|
|
743
|
-
credentialArn?: string;
|
|
743
|
+
credentialArn?: string | undefined;
|
|
744
744
|
}
|
|
745
745
|
/**
|
|
746
746
|
* <p>A pull through cache rule with these settings already exists for the private
|
|
@@ -859,7 +859,7 @@ export interface EncryptionConfiguration {
|
|
|
859
859
|
* Amazon Web Services managed KMS key for Amazon ECR will be used.</p>
|
|
860
860
|
* @public
|
|
861
861
|
*/
|
|
862
|
-
kmsKey?: string;
|
|
862
|
+
kmsKey?: string | undefined;
|
|
863
863
|
}
|
|
864
864
|
/**
|
|
865
865
|
* <p>The image scanning configuration for a repository.</p>
|
|
@@ -873,7 +873,7 @@ export interface ImageScanningConfiguration {
|
|
|
873
873
|
* not be scanned unless a scan is manually started with the <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/API_StartImageScan.html">API_StartImageScan</a> API.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
scanOnPush?: boolean;
|
|
876
|
+
scanOnPush?: boolean | undefined;
|
|
877
877
|
}
|
|
878
878
|
/**
|
|
879
879
|
* @public
|
|
@@ -915,7 +915,7 @@ export interface CreateRepositoryRequest {
|
|
|
915
915
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
916
916
|
* @public
|
|
917
917
|
*/
|
|
918
|
-
registryId?: string;
|
|
918
|
+
registryId?: string | undefined;
|
|
919
919
|
/**
|
|
920
920
|
* <p>The name to use for the repository. The repository name may be specified on its own
|
|
921
921
|
* (such as <code>nginx-web-app</code>) or it can be prepended with a namespace to group
|
|
@@ -932,7 +932,7 @@ export interface CreateRepositoryRequest {
|
|
|
932
932
|
* a maximum length of 256 characters.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
|
-
tags?: Tag[];
|
|
935
|
+
tags?: Tag[] | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* <p>The tag mutability setting for the repository. If this parameter is omitted, the
|
|
938
938
|
* default setting of <code>MUTABLE</code> will be used which will allow image tags to be
|
|
@@ -940,19 +940,19 @@ export interface CreateRepositoryRequest {
|
|
|
940
940
|
* repository will be immutable which will prevent them from being overwritten.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
imageTagMutability?: ImageTagMutability;
|
|
943
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* <p>The image scanning configuration for the repository. This determines whether images
|
|
946
946
|
* are scanned for known vulnerabilities after being pushed to the repository.</p>
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
|
-
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
949
|
+
imageScanningConfiguration?: ImageScanningConfiguration | undefined;
|
|
950
950
|
/**
|
|
951
951
|
* <p>The encryption configuration for the repository. This determines how the contents of
|
|
952
952
|
* your repository are encrypted at rest.</p>
|
|
953
953
|
* @public
|
|
954
954
|
*/
|
|
955
|
-
encryptionConfiguration?: EncryptionConfiguration;
|
|
955
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
956
956
|
}
|
|
957
957
|
/**
|
|
958
958
|
* <p>An object representing a repository.</p>
|
|
@@ -965,44 +965,44 @@ export interface Repository {
|
|
|
965
965
|
* For example, <code>arn:aws:ecr:region:012345678910:repository-namespace/repository-name</code>.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
repositoryArn?: string;
|
|
968
|
+
repositoryArn?: string | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* <p>The Amazon Web Services account ID associated with the registry that contains the repository.</p>
|
|
971
971
|
* @public
|
|
972
972
|
*/
|
|
973
|
-
registryId?: string;
|
|
973
|
+
registryId?: string | undefined;
|
|
974
974
|
/**
|
|
975
975
|
* <p>The name of the repository.</p>
|
|
976
976
|
* @public
|
|
977
977
|
*/
|
|
978
|
-
repositoryName?: string;
|
|
978
|
+
repositoryName?: string | undefined;
|
|
979
979
|
/**
|
|
980
980
|
* <p>The URI for the repository. You can use this URI for container image <code>push</code>
|
|
981
981
|
* and <code>pull</code> operations.</p>
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
repositoryUri?: string;
|
|
984
|
+
repositoryUri?: string | undefined;
|
|
985
985
|
/**
|
|
986
986
|
* <p>The date and time, in JavaScript date format, when the repository was created.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
createdAt?: Date;
|
|
989
|
+
createdAt?: Date | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>The tag mutability setting for the repository.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
imageTagMutability?: ImageTagMutability;
|
|
994
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>The image scanning configuration for a repository.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
999
|
+
imageScanningConfiguration?: ImageScanningConfiguration | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>The encryption configuration for the repository. This determines how the contents of
|
|
1002
1002
|
* your repository are encrypted at rest.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
encryptionConfiguration?: EncryptionConfiguration;
|
|
1005
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
/**
|
|
1008
1008
|
* @public
|
|
@@ -1012,7 +1012,7 @@ export interface CreateRepositoryResponse {
|
|
|
1012
1012
|
* <p>The repository that was created.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
repository?: Repository;
|
|
1015
|
+
repository?: Repository | undefined;
|
|
1016
1016
|
}
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>An invalid parameter has been specified. Tag keys can have a maximum character length of 128 characters, and tag values can have
|
|
@@ -1094,7 +1094,7 @@ export interface EncryptionConfigurationForRepositoryCreationTemplate {
|
|
|
1094
1094
|
* key for Amazon ECR will be used.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
kmsKey?: string;
|
|
1097
|
+
kmsKey?: string | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
1100
|
* @public
|
|
@@ -1122,20 +1122,20 @@ export interface CreateRepositoryCreationTemplateRequest {
|
|
|
1122
1122
|
* <p>A description for the repository creation template.</p>
|
|
1123
1123
|
* @public
|
|
1124
1124
|
*/
|
|
1125
|
-
description?: string;
|
|
1125
|
+
description?: string | undefined;
|
|
1126
1126
|
/**
|
|
1127
1127
|
* <p>The encryption configuration to use for repositories created using the
|
|
1128
1128
|
* template.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate;
|
|
1131
|
+
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>The metadata to apply to the repository to help you categorize and organize. Each tag
|
|
1134
1134
|
* consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have
|
|
1135
1135
|
* a maximum length of 256 characters.</p>
|
|
1136
1136
|
* @public
|
|
1137
1137
|
*/
|
|
1138
|
-
resourceTags?: Tag[];
|
|
1138
|
+
resourceTags?: Tag[] | undefined;
|
|
1139
1139
|
/**
|
|
1140
1140
|
* <p>The tag mutability setting for the repository. If this parameter is omitted, the
|
|
1141
1141
|
* default setting of <code>MUTABLE</code> will be used which will allow image tags to be
|
|
@@ -1143,19 +1143,19 @@ export interface CreateRepositoryCreationTemplateRequest {
|
|
|
1143
1143
|
* repository will be immutable which will prevent them from being overwritten.</p>
|
|
1144
1144
|
* @public
|
|
1145
1145
|
*/
|
|
1146
|
-
imageTagMutability?: ImageTagMutability;
|
|
1146
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
1147
1147
|
/**
|
|
1148
1148
|
* <p>The repository policy to apply to repositories created using the template. A
|
|
1149
1149
|
* repository policy is a permissions policy associated with a repository to control access
|
|
1150
1150
|
* permissions. </p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
repositoryPolicy?: string;
|
|
1153
|
+
repositoryPolicy?: string | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* <p>The lifecycle policy to use for repositories created using the template.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
lifecyclePolicy?: string;
|
|
1158
|
+
lifecyclePolicy?: string | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>A list of enumerable strings representing the Amazon ECR repository creation scenarios that
|
|
1161
1161
|
* this template will apply towards. The two supported scenarios are
|
|
@@ -1171,7 +1171,7 @@ export interface CreateRepositoryCreationTemplateRequest {
|
|
|
1171
1171
|
* service-linked role for the repository creation template.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
customRoleArn?: string;
|
|
1174
|
+
customRoleArn?: string | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>The details of the repository creation template associated with the request.</p>
|
|
@@ -1183,24 +1183,24 @@ export interface RepositoryCreationTemplate {
|
|
|
1183
1183
|
* template.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
prefix?: string;
|
|
1186
|
+
prefix?: string | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>The description associated with the repository creation template.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
description?: string;
|
|
1191
|
+
description?: string | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>The encryption configuration associated with the repository creation template.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate;
|
|
1196
|
+
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>The metadata to apply to the repository to help you categorize and organize. Each tag
|
|
1199
1199
|
* consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have
|
|
1200
1200
|
* a maximum length of 256 characters.</p>
|
|
1201
1201
|
* @public
|
|
1202
1202
|
*/
|
|
1203
|
-
resourceTags?: Tag[];
|
|
1203
|
+
resourceTags?: Tag[] | undefined;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>The tag mutability setting for the repository. If this parameter is omitted, the
|
|
1206
1206
|
* default setting of MUTABLE will be used which will allow image tags to be overwritten.
|
|
@@ -1208,45 +1208,45 @@ export interface RepositoryCreationTemplate {
|
|
|
1208
1208
|
* will prevent them from being overwritten.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
imageTagMutability?: ImageTagMutability;
|
|
1211
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>he repository policy to apply to repositories created using the template. A repository
|
|
1214
1214
|
* policy is a permissions policy associated with a repository to control access
|
|
1215
1215
|
* permissions. </p>
|
|
1216
1216
|
* @public
|
|
1217
1217
|
*/
|
|
1218
|
-
repositoryPolicy?: string;
|
|
1218
|
+
repositoryPolicy?: string | undefined;
|
|
1219
1219
|
/**
|
|
1220
1220
|
* <p>The lifecycle policy to use for repositories created using the template.</p>
|
|
1221
1221
|
* @public
|
|
1222
1222
|
*/
|
|
1223
|
-
lifecyclePolicy?: string;
|
|
1223
|
+
lifecyclePolicy?: string | undefined;
|
|
1224
1224
|
/**
|
|
1225
1225
|
* <p>A list of enumerable Strings representing the repository creation scenarios that this
|
|
1226
1226
|
* template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and
|
|
1227
1227
|
* REPLICATION</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
appliedFor?: RCTAppliedFor[];
|
|
1230
|
+
appliedFor?: RCTAppliedFor[] | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role
|
|
1233
1233
|
* when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the
|
|
1234
1234
|
* service-linked role for the repository creation template.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
customRoleArn?: string;
|
|
1237
|
+
customRoleArn?: string | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>The date and time, in JavaScript date format, when the repository creation template
|
|
1240
1240
|
* was created.</p>
|
|
1241
1241
|
* @public
|
|
1242
1242
|
*/
|
|
1243
|
-
createdAt?: Date;
|
|
1243
|
+
createdAt?: Date | undefined;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* <p>The date and time, in JavaScript date format, when the repository creation template
|
|
1246
1246
|
* was last updated.</p>
|
|
1247
1247
|
* @public
|
|
1248
1248
|
*/
|
|
1249
|
-
updatedAt?: Date;
|
|
1249
|
+
updatedAt?: Date | undefined;
|
|
1250
1250
|
}
|
|
1251
1251
|
/**
|
|
1252
1252
|
* @public
|
|
@@ -1256,12 +1256,12 @@ export interface CreateRepositoryCreationTemplateResponse {
|
|
|
1256
1256
|
* <p>The registry ID associated with the request.</p>
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
registryId?: string;
|
|
1259
|
+
registryId?: string | undefined;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* <p>The details of the repository creation template associated with the request.</p>
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
repositoryCreationTemplate?: RepositoryCreationTemplate;
|
|
1264
|
+
repositoryCreationTemplate?: RepositoryCreationTemplate | undefined;
|
|
1265
1265
|
}
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>The repository creation template already exists. Specify a unique prefix and try
|
|
@@ -1285,7 +1285,7 @@ export interface DeleteLifecyclePolicyRequest {
|
|
|
1285
1285
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
registryId?: string;
|
|
1288
|
+
registryId?: string | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>The name of the repository.</p>
|
|
1291
1291
|
* @public
|
|
@@ -1300,22 +1300,22 @@ export interface DeleteLifecyclePolicyResponse {
|
|
|
1300
1300
|
* <p>The registry ID associated with the request.</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
registryId?: string;
|
|
1303
|
+
registryId?: string | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* <p>The repository name associated with the request.</p>
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
repositoryName?: string;
|
|
1308
|
+
repositoryName?: string | undefined;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* <p>The JSON lifecycle policy text.</p>
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
|
-
lifecyclePolicyText?: string;
|
|
1313
|
+
lifecyclePolicyText?: string | undefined;
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
lastEvaluatedAt?: Date;
|
|
1318
|
+
lastEvaluatedAt?: Date | undefined;
|
|
1319
1319
|
}
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>The lifecycle policy could not be found, and no policy is set to the
|
|
@@ -1345,7 +1345,7 @@ export interface DeletePullThroughCacheRuleRequest {
|
|
|
1345
1345
|
* rule. If you do not specify a registry, the default registry is assumed.</p>
|
|
1346
1346
|
* @public
|
|
1347
1347
|
*/
|
|
1348
|
-
registryId?: string;
|
|
1348
|
+
registryId?: string | undefined;
|
|
1349
1349
|
}
|
|
1350
1350
|
/**
|
|
1351
1351
|
* @public
|
|
@@ -1355,28 +1355,28 @@ export interface DeletePullThroughCacheRuleResponse {
|
|
|
1355
1355
|
* <p>The Amazon ECR repository prefix associated with the request.</p>
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
ecrRepositoryPrefix?: string;
|
|
1358
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
1359
1359
|
/**
|
|
1360
1360
|
* <p>The upstream registry URL associated with the pull through cache rule.</p>
|
|
1361
1361
|
* @public
|
|
1362
1362
|
*/
|
|
1363
|
-
upstreamRegistryUrl?: string;
|
|
1363
|
+
upstreamRegistryUrl?: string | undefined;
|
|
1364
1364
|
/**
|
|
1365
1365
|
* <p>The timestamp associated with the pull through cache rule.</p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
createdAt?: Date;
|
|
1368
|
+
createdAt?: Date | undefined;
|
|
1369
1369
|
/**
|
|
1370
1370
|
* <p>The registry ID associated with the request.</p>
|
|
1371
1371
|
* @public
|
|
1372
1372
|
*/
|
|
1373
|
-
registryId?: string;
|
|
1373
|
+
registryId?: string | undefined;
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache
|
|
1376
1376
|
* rule.</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
credentialArn?: string;
|
|
1379
|
+
credentialArn?: string | undefined;
|
|
1380
1380
|
}
|
|
1381
1381
|
/**
|
|
1382
1382
|
* <p>The pull through cache rule was not found. Specify a valid pull through cache rule and
|
|
@@ -1404,12 +1404,12 @@ export interface DeleteRegistryPolicyResponse {
|
|
|
1404
1404
|
* <p>The registry ID associated with the request.</p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
registryId?: string;
|
|
1407
|
+
registryId?: string | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* <p>The contents of the registry permissions policy that was deleted.</p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
policyText?: string;
|
|
1412
|
+
policyText?: string | undefined;
|
|
1413
1413
|
}
|
|
1414
1414
|
/**
|
|
1415
1415
|
* <p>The registry doesn't have an associated registry policy.</p>
|
|
@@ -1432,7 +1432,7 @@ export interface DeleteRepositoryRequest {
|
|
|
1432
1432
|
* delete. If you do not specify a registry, the default registry is assumed.</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
registryId?: string;
|
|
1435
|
+
registryId?: string | undefined;
|
|
1436
1436
|
/**
|
|
1437
1437
|
* <p>The name of the repository to delete.</p>
|
|
1438
1438
|
* @public
|
|
@@ -1443,7 +1443,7 @@ export interface DeleteRepositoryRequest {
|
|
|
1443
1443
|
* false, the repository must be empty before attempting to delete it.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
force?: boolean;
|
|
1446
|
+
force?: boolean | undefined;
|
|
1447
1447
|
}
|
|
1448
1448
|
/**
|
|
1449
1449
|
* @public
|
|
@@ -1453,7 +1453,7 @@ export interface DeleteRepositoryResponse {
|
|
|
1453
1453
|
* <p>The repository that was deleted.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
repository?: Repository;
|
|
1456
|
+
repository?: Repository | undefined;
|
|
1457
1457
|
}
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <p>The specified repository contains images. To delete a repository that contains images,
|
|
@@ -1487,12 +1487,12 @@ export interface DeleteRepositoryCreationTemplateResponse {
|
|
|
1487
1487
|
* <p>The registry ID associated with the request.</p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
registryId?: string;
|
|
1490
|
+
registryId?: string | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>The details of the repository creation template that was deleted.</p>
|
|
1493
1493
|
* @public
|
|
1494
1494
|
*/
|
|
1495
|
-
repositoryCreationTemplate?: RepositoryCreationTemplate;
|
|
1495
|
+
repositoryCreationTemplate?: RepositoryCreationTemplate | undefined;
|
|
1496
1496
|
}
|
|
1497
1497
|
/**
|
|
1498
1498
|
* <p>The specified repository creation template can't be found. Verify the registry ID and
|
|
@@ -1516,7 +1516,7 @@ export interface DeleteRepositoryPolicyRequest {
|
|
|
1516
1516
|
* to delete. If you do not specify a registry, the default registry is assumed.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
registryId?: string;
|
|
1519
|
+
registryId?: string | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>The name of the repository that is associated with the repository policy to
|
|
1522
1522
|
* delete.</p>
|
|
@@ -1532,17 +1532,17 @@ export interface DeleteRepositoryPolicyResponse {
|
|
|
1532
1532
|
* <p>The registry ID associated with the request.</p>
|
|
1533
1533
|
* @public
|
|
1534
1534
|
*/
|
|
1535
|
-
registryId?: string;
|
|
1535
|
+
registryId?: string | undefined;
|
|
1536
1536
|
/**
|
|
1537
1537
|
* <p>The repository name associated with the request.</p>
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
|
-
repositoryName?: string;
|
|
1540
|
+
repositoryName?: string | undefined;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* <p>The JSON repository policy that was deleted from the repository.</p>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
policyText?: string;
|
|
1545
|
+
policyText?: string | undefined;
|
|
1546
1546
|
}
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>The specified repository and registry combination does not have an associated
|
|
@@ -1575,7 +1575,7 @@ export interface DescribeImageReplicationStatusRequest {
|
|
|
1575
1575
|
* <p>The Amazon Web Services account ID associated with the registry. If you do not specify a registry, the default registry is assumed.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
registryId?: string;
|
|
1578
|
+
registryId?: string | undefined;
|
|
1579
1579
|
}
|
|
1580
1580
|
/**
|
|
1581
1581
|
* @public
|
|
@@ -1599,22 +1599,22 @@ export interface ImageReplicationStatus {
|
|
|
1599
1599
|
* <p>The destination Region for the image replication.</p>
|
|
1600
1600
|
* @public
|
|
1601
1601
|
*/
|
|
1602
|
-
region?: string;
|
|
1602
|
+
region?: string | undefined;
|
|
1603
1603
|
/**
|
|
1604
1604
|
* <p>The Amazon Web Services account ID associated with the registry to which the image belongs.</p>
|
|
1605
1605
|
* @public
|
|
1606
1606
|
*/
|
|
1607
|
-
registryId?: string;
|
|
1607
|
+
registryId?: string | undefined;
|
|
1608
1608
|
/**
|
|
1609
1609
|
* <p>The image replication status.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
status?: ReplicationStatus;
|
|
1612
|
+
status?: ReplicationStatus | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>The failure code for a replication that has failed.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
failureCode?: string;
|
|
1617
|
+
failureCode?: string | undefined;
|
|
1618
1618
|
}
|
|
1619
1619
|
/**
|
|
1620
1620
|
* @public
|
|
@@ -1624,17 +1624,17 @@ export interface DescribeImageReplicationStatusResponse {
|
|
|
1624
1624
|
* <p>The repository name associated with the request.</p>
|
|
1625
1625
|
* @public
|
|
1626
1626
|
*/
|
|
1627
|
-
repositoryName?: string;
|
|
1627
|
+
repositoryName?: string | undefined;
|
|
1628
1628
|
/**
|
|
1629
1629
|
* <p>An object with identifying information for an image in an Amazon ECR repository.</p>
|
|
1630
1630
|
* @public
|
|
1631
1631
|
*/
|
|
1632
|
-
imageId?: ImageIdentifier;
|
|
1632
|
+
imageId?: ImageIdentifier | undefined;
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>The replication status details for the images in the specified repository.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
replicationStatuses?: ImageReplicationStatus[];
|
|
1637
|
+
replicationStatuses?: ImageReplicationStatus[] | undefined;
|
|
1638
1638
|
}
|
|
1639
1639
|
/**
|
|
1640
1640
|
* <p>The image requested does not exist in the specified repository.</p>
|
|
@@ -1673,7 +1673,7 @@ export interface DescribeImagesFilter {
|
|
|
1673
1673
|
* <code>UNTAGGED</code>.</p>
|
|
1674
1674
|
* @public
|
|
1675
1675
|
*/
|
|
1676
|
-
tagStatus?: TagStatus;
|
|
1676
|
+
tagStatus?: TagStatus | undefined;
|
|
1677
1677
|
}
|
|
1678
1678
|
/**
|
|
1679
1679
|
* @public
|
|
@@ -1684,7 +1684,7 @@ export interface DescribeImagesRequest {
|
|
|
1684
1684
|
* which to describe images. If you do not specify a registry, the default registry is assumed.</p>
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
registryId?: string;
|
|
1687
|
+
registryId?: string | undefined;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* <p>The repository that contains the images to describe.</p>
|
|
1690
1690
|
* @public
|
|
@@ -1694,7 +1694,7 @@ export interface DescribeImagesRequest {
|
|
|
1694
1694
|
* <p>The list of image IDs for the requested repository.</p>
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
|
-
imageIds?: ImageIdentifier[];
|
|
1697
|
+
imageIds?: ImageIdentifier[] | undefined;
|
|
1698
1698
|
/**
|
|
1699
1699
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
1700
1700
|
* <code>DescribeImages</code> request where <code>maxResults</code> was used and the
|
|
@@ -1704,7 +1704,7 @@ export interface DescribeImagesRequest {
|
|
|
1704
1704
|
* used when you specify images with <code>imageIds</code>.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
nextToken?: string;
|
|
1707
|
+
nextToken?: string | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <p>The maximum number of repository results returned by <code>DescribeImages</code> in
|
|
1710
1710
|
* paginated output. When this parameter is used, <code>DescribeImages</code> only returns
|
|
@@ -1717,13 +1717,13 @@ export interface DescribeImagesRequest {
|
|
|
1717
1717
|
* option cannot be used when you specify images with <code>imageIds</code>.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
maxResults?: number;
|
|
1720
|
+
maxResults?: number | undefined;
|
|
1721
1721
|
/**
|
|
1722
1722
|
* <p>The filter key and value with which to filter your <code>DescribeImages</code>
|
|
1723
1723
|
* results.</p>
|
|
1724
1724
|
* @public
|
|
1725
1725
|
*/
|
|
1726
|
-
filter?: DescribeImagesFilter;
|
|
1726
|
+
filter?: DescribeImagesFilter | undefined;
|
|
1727
1727
|
}
|
|
1728
1728
|
/**
|
|
1729
1729
|
* @public
|
|
@@ -1750,17 +1750,17 @@ export interface ImageScanFindingsSummary {
|
|
|
1750
1750
|
* <p>The time of the last completed image scan.</p>
|
|
1751
1751
|
* @public
|
|
1752
1752
|
*/
|
|
1753
|
-
imageScanCompletedAt?: Date;
|
|
1753
|
+
imageScanCompletedAt?: Date | undefined;
|
|
1754
1754
|
/**
|
|
1755
1755
|
* <p>The time when the vulnerability data was last scanned.</p>
|
|
1756
1756
|
* @public
|
|
1757
1757
|
*/
|
|
1758
|
-
vulnerabilitySourceUpdatedAt?: Date;
|
|
1758
|
+
vulnerabilitySourceUpdatedAt?: Date | undefined;
|
|
1759
1759
|
/**
|
|
1760
1760
|
* <p>The image vulnerability counts, sorted by severity.</p>
|
|
1761
1761
|
* @public
|
|
1762
1762
|
*/
|
|
1763
|
-
findingSeverityCounts?: Partial<Record<FindingSeverity, number
|
|
1763
|
+
findingSeverityCounts?: Partial<Record<FindingSeverity, number>> | undefined;
|
|
1764
1764
|
}
|
|
1765
1765
|
/**
|
|
1766
1766
|
* @public
|
|
@@ -1789,12 +1789,12 @@ export interface ImageScanStatus {
|
|
|
1789
1789
|
* <p>The current state of an image scan.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
status?: ScanStatus;
|
|
1792
|
+
status?: ScanStatus | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* <p>The description of the image scan status.</p>
|
|
1795
1795
|
* @public
|
|
1796
1796
|
*/
|
|
1797
|
-
description?: string;
|
|
1797
|
+
description?: string | undefined;
|
|
1798
1798
|
}
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>An object that describes an image returned by a <a>DescribeImages</a>
|
|
@@ -1806,22 +1806,22 @@ export interface ImageDetail {
|
|
|
1806
1806
|
* <p>The Amazon Web Services account ID associated with the registry to which this image belongs.</p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
registryId?: string;
|
|
1809
|
+
registryId?: string | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>The name of the repository to which this image belongs.</p>
|
|
1812
1812
|
* @public
|
|
1813
1813
|
*/
|
|
1814
|
-
repositoryName?: string;
|
|
1814
|
+
repositoryName?: string | undefined;
|
|
1815
1815
|
/**
|
|
1816
1816
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
imageDigest?: string;
|
|
1819
|
+
imageDigest?: string | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>The list of tags associated with this image.</p>
|
|
1822
1822
|
* @public
|
|
1823
1823
|
*/
|
|
1824
|
-
imageTags?: string[];
|
|
1824
|
+
imageTags?: string[] | undefined;
|
|
1825
1825
|
/**
|
|
1826
1826
|
* <p>The size, in bytes, of the image in the repository.</p>
|
|
1827
1827
|
* <p>If the image is a manifest list, this will be the max size of all manifests in the
|
|
@@ -1834,33 +1834,33 @@ export interface ImageDetail {
|
|
|
1834
1834
|
* </note>
|
|
1835
1835
|
* @public
|
|
1836
1836
|
*/
|
|
1837
|
-
imageSizeInBytes?: number;
|
|
1837
|
+
imageSizeInBytes?: number | undefined;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* <p>The date and time, expressed in standard JavaScript date format, at which the current
|
|
1840
1840
|
* image was pushed to the repository. </p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
imagePushedAt?: Date;
|
|
1843
|
+
imagePushedAt?: Date | undefined;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p>The current state of the scan.</p>
|
|
1846
1846
|
* @public
|
|
1847
1847
|
*/
|
|
1848
|
-
imageScanStatus?: ImageScanStatus;
|
|
1848
|
+
imageScanStatus?: ImageScanStatus | undefined;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* <p>A summary of the last completed image scan.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
imageScanFindingsSummary?: ImageScanFindingsSummary;
|
|
1853
|
+
imageScanFindingsSummary?: ImageScanFindingsSummary | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>The media type of the image manifest.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
imageManifestMediaType?: string;
|
|
1858
|
+
imageManifestMediaType?: string | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The artifact media type of the image.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
artifactMediaType?: string;
|
|
1863
|
+
artifactMediaType?: string | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The date and time, expressed in standard JavaScript date format, when Amazon ECR recorded
|
|
1866
1866
|
* the last image pull.</p>
|
|
@@ -1874,7 +1874,7 @@ export interface ImageDetail {
|
|
|
1874
1874
|
* </note>
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
lastRecordedPullTime?: Date;
|
|
1877
|
+
lastRecordedPullTime?: Date | undefined;
|
|
1878
1878
|
}
|
|
1879
1879
|
/**
|
|
1880
1880
|
* @public
|
|
@@ -1885,7 +1885,7 @@ export interface DescribeImagesResponse {
|
|
|
1885
1885
|
* image.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
imageDetails?: ImageDetail[];
|
|
1888
|
+
imageDetails?: ImageDetail[] | undefined;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>The <code>nextToken</code> value to include in a future <code>DescribeImages</code>
|
|
1891
1891
|
* request. When the results of a <code>DescribeImages</code> request exceed
|
|
@@ -1894,7 +1894,7 @@ export interface DescribeImagesResponse {
|
|
|
1894
1894
|
* return.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
nextToken?: string;
|
|
1897
|
+
nextToken?: string | undefined;
|
|
1898
1898
|
}
|
|
1899
1899
|
/**
|
|
1900
1900
|
* @public
|
|
@@ -1905,7 +1905,7 @@ export interface DescribeImageScanFindingsRequest {
|
|
|
1905
1905
|
* which to describe the image scan findings for. If you do not specify a registry, the default registry is assumed.</p>
|
|
1906
1906
|
* @public
|
|
1907
1907
|
*/
|
|
1908
|
-
registryId?: string;
|
|
1908
|
+
registryId?: string | undefined;
|
|
1909
1909
|
/**
|
|
1910
1910
|
* <p>The repository for the image for which to describe the scan findings.</p>
|
|
1911
1911
|
* @public
|
|
@@ -1924,7 +1924,7 @@ export interface DescribeImageScanFindingsRequest {
|
|
|
1924
1924
|
* is null when there are no more results to return.</p>
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
nextToken?: string;
|
|
1927
|
+
nextToken?: string | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p>The maximum number of image scan results returned by
|
|
1930
1930
|
* <code>DescribeImageScanFindings</code> in paginated output. When this parameter is
|
|
@@ -1937,7 +1937,7 @@ export interface DescribeImageScanFindingsRequest {
|
|
|
1937
1937
|
* results and a <code>nextToken</code> value, if applicable.</p>
|
|
1938
1938
|
* @public
|
|
1939
1939
|
*/
|
|
1940
|
-
maxResults?: number;
|
|
1940
|
+
maxResults?: number | undefined;
|
|
1941
1941
|
}
|
|
1942
1942
|
/**
|
|
1943
1943
|
* <p>The CVSS score for a finding.</p>
|
|
@@ -1948,22 +1948,22 @@ export interface CvssScore {
|
|
|
1948
1948
|
* <p>The base CVSS score used for the finding.</p>
|
|
1949
1949
|
* @public
|
|
1950
1950
|
*/
|
|
1951
|
-
baseScore?: number;
|
|
1951
|
+
baseScore?: number | undefined;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* <p>The vector string of the CVSS score.</p>
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
scoringVector?: string;
|
|
1956
|
+
scoringVector?: string | undefined;
|
|
1957
1957
|
/**
|
|
1958
1958
|
* <p>The source of the CVSS score.</p>
|
|
1959
1959
|
* @public
|
|
1960
1960
|
*/
|
|
1961
|
-
source?: string;
|
|
1961
|
+
source?: string | undefined;
|
|
1962
1962
|
/**
|
|
1963
1963
|
* <p>The version of CVSS used for the score.</p>
|
|
1964
1964
|
* @public
|
|
1965
1965
|
*/
|
|
1966
|
-
version?: string;
|
|
1966
|
+
version?: string | undefined;
|
|
1967
1967
|
}
|
|
1968
1968
|
/**
|
|
1969
1969
|
* <p>Information on the vulnerable package identified by a finding.</p>
|
|
@@ -1974,47 +1974,47 @@ export interface VulnerablePackage {
|
|
|
1974
1974
|
* <p>The architecture of the vulnerable package.</p>
|
|
1975
1975
|
* @public
|
|
1976
1976
|
*/
|
|
1977
|
-
arch?: string;
|
|
1977
|
+
arch?: string | undefined;
|
|
1978
1978
|
/**
|
|
1979
1979
|
* <p>The epoch of the vulnerable package.</p>
|
|
1980
1980
|
* @public
|
|
1981
1981
|
*/
|
|
1982
|
-
epoch?: number;
|
|
1982
|
+
epoch?: number | undefined;
|
|
1983
1983
|
/**
|
|
1984
1984
|
* <p>The file path of the vulnerable package.</p>
|
|
1985
1985
|
* @public
|
|
1986
1986
|
*/
|
|
1987
|
-
filePath?: string;
|
|
1987
|
+
filePath?: string | undefined;
|
|
1988
1988
|
/**
|
|
1989
1989
|
* <p>The name of the vulnerable package.</p>
|
|
1990
1990
|
* @public
|
|
1991
1991
|
*/
|
|
1992
|
-
name?: string;
|
|
1992
|
+
name?: string | undefined;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* <p>The package manager of the vulnerable package.</p>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
packageManager?: string;
|
|
1997
|
+
packageManager?: string | undefined;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* <p>The release of the vulnerable package.</p>
|
|
2000
2000
|
* @public
|
|
2001
2001
|
*/
|
|
2002
|
-
release?: string;
|
|
2002
|
+
release?: string | undefined;
|
|
2003
2003
|
/**
|
|
2004
2004
|
* <p>The source layer hash of the vulnerable package.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
sourceLayerHash?: string;
|
|
2007
|
+
sourceLayerHash?: string | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>The version of the vulnerable package.</p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
version?: string;
|
|
2012
|
+
version?: string | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>The version of the package that contains the vulnerability fix.</p>
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
fixedInVersion?: string;
|
|
2017
|
+
fixedInVersion?: string | undefined;
|
|
2018
2018
|
}
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>Information about a package vulnerability finding.</p>
|
|
@@ -2025,53 +2025,53 @@ export interface PackageVulnerabilityDetails {
|
|
|
2025
2025
|
* <p>An object that contains details about the CVSS score of a finding.</p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
cvss?: CvssScore[];
|
|
2028
|
+
cvss?: CvssScore[] | undefined;
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>One or more URLs that contain details about this vulnerability type.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
referenceUrls?: string[];
|
|
2033
|
+
referenceUrls?: string[] | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>One or more vulnerabilities related to the one identified in this finding.</p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
relatedVulnerabilities?: string[];
|
|
2038
|
+
relatedVulnerabilities?: string[] | undefined;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* <p>The source of the vulnerability information.</p>
|
|
2041
2041
|
* @public
|
|
2042
2042
|
*/
|
|
2043
|
-
source?: string;
|
|
2043
|
+
source?: string | undefined;
|
|
2044
2044
|
/**
|
|
2045
2045
|
* <p>A URL to the source of the vulnerability information.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
sourceUrl?: string;
|
|
2048
|
+
sourceUrl?: string | undefined;
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>The date and time that this vulnerability was first added to the vendor's
|
|
2051
2051
|
* database.</p>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
vendorCreatedAt?: Date;
|
|
2054
|
+
vendorCreatedAt?: Date | undefined;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* <p>The severity the vendor has given to this vulnerability type.</p>
|
|
2057
2057
|
* @public
|
|
2058
2058
|
*/
|
|
2059
|
-
vendorSeverity?: string;
|
|
2059
|
+
vendorSeverity?: string | undefined;
|
|
2060
2060
|
/**
|
|
2061
2061
|
* <p>The date and time the vendor last updated this vulnerability in their database.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
vendorUpdatedAt?: Date;
|
|
2064
|
+
vendorUpdatedAt?: Date | undefined;
|
|
2065
2065
|
/**
|
|
2066
2066
|
* <p>The ID given to this vulnerability.</p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
vulnerabilityId?: string;
|
|
2069
|
+
vulnerabilityId?: string | undefined;
|
|
2070
2070
|
/**
|
|
2071
2071
|
* <p>The packages impacted by this vulnerability.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
vulnerablePackages?: VulnerablePackage[];
|
|
2074
|
+
vulnerablePackages?: VulnerablePackage[] | undefined;
|
|
2075
2075
|
}
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>Details about the recommended course of action to remediate the finding.</p>
|
|
@@ -2082,12 +2082,12 @@ export interface Recommendation {
|
|
|
2082
2082
|
* <p>The URL address to the CVE remediation recommendations.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
url?: string;
|
|
2085
|
+
url?: string | undefined;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The recommended course of action to remediate the finding.</p>
|
|
2088
2088
|
* @public
|
|
2089
2089
|
*/
|
|
2090
|
-
text?: string;
|
|
2090
|
+
text?: string | undefined;
|
|
2091
2091
|
}
|
|
2092
2092
|
/**
|
|
2093
2093
|
* <p>Information on how to remediate a finding.</p>
|
|
@@ -2099,7 +2099,7 @@ export interface Remediation {
|
|
|
2099
2099
|
* remediate the finding.</p>
|
|
2100
2100
|
* @public
|
|
2101
2101
|
*/
|
|
2102
|
-
recommendation?: Recommendation;
|
|
2102
|
+
recommendation?: Recommendation | undefined;
|
|
2103
2103
|
}
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>The image details of the Amazon ECR container image.</p>
|
|
@@ -2110,42 +2110,42 @@ export interface AwsEcrContainerImageDetails {
|
|
|
2110
2110
|
* <p>The architecture of the Amazon ECR container image.</p>
|
|
2111
2111
|
* @public
|
|
2112
2112
|
*/
|
|
2113
|
-
architecture?: string;
|
|
2113
|
+
architecture?: string | undefined;
|
|
2114
2114
|
/**
|
|
2115
2115
|
* <p>The image author of the Amazon ECR container image.</p>
|
|
2116
2116
|
* @public
|
|
2117
2117
|
*/
|
|
2118
|
-
author?: string;
|
|
2118
|
+
author?: string | undefined;
|
|
2119
2119
|
/**
|
|
2120
2120
|
* <p>The image hash of the Amazon ECR container image.</p>
|
|
2121
2121
|
* @public
|
|
2122
2122
|
*/
|
|
2123
|
-
imageHash?: string;
|
|
2123
|
+
imageHash?: string | undefined;
|
|
2124
2124
|
/**
|
|
2125
2125
|
* <p>The image tags attached to the Amazon ECR container image.</p>
|
|
2126
2126
|
* @public
|
|
2127
2127
|
*/
|
|
2128
|
-
imageTags?: string[];
|
|
2128
|
+
imageTags?: string[] | undefined;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p>The platform of the Amazon ECR container image.</p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
platform?: string;
|
|
2133
|
+
platform?: string | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>The date and time the Amazon ECR container image was pushed.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
pushedAt?: Date;
|
|
2138
|
+
pushedAt?: Date | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>The registry the Amazon ECR container image belongs to.</p>
|
|
2141
2141
|
* @public
|
|
2142
2142
|
*/
|
|
2143
|
-
registry?: string;
|
|
2143
|
+
registry?: string | undefined;
|
|
2144
2144
|
/**
|
|
2145
2145
|
* <p>The name of the repository the Amazon ECR container image resides in.</p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
repositoryName?: string;
|
|
2148
|
+
repositoryName?: string | undefined;
|
|
2149
2149
|
}
|
|
2150
2150
|
/**
|
|
2151
2151
|
* <p>Contains details about the resource involved in the finding.</p>
|
|
@@ -2157,7 +2157,7 @@ export interface ResourceDetails {
|
|
|
2157
2157
|
* finding.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
awsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
2160
|
+
awsEcrContainerImage?: AwsEcrContainerImageDetails | undefined;
|
|
2161
2161
|
}
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>Details about the resource involved in a finding.</p>
|
|
@@ -2168,22 +2168,22 @@ export interface Resource {
|
|
|
2168
2168
|
* <p>An object that contains details about the resource involved in a finding.</p>
|
|
2169
2169
|
* @public
|
|
2170
2170
|
*/
|
|
2171
|
-
details?: ResourceDetails;
|
|
2171
|
+
details?: ResourceDetails | undefined;
|
|
2172
2172
|
/**
|
|
2173
2173
|
* <p>The ID of the resource.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
id?: string;
|
|
2176
|
+
id?: string | undefined;
|
|
2177
2177
|
/**
|
|
2178
2178
|
* <p>The tags attached to the resource.</p>
|
|
2179
2179
|
* @public
|
|
2180
2180
|
*/
|
|
2181
|
-
tags?: Record<string, string
|
|
2181
|
+
tags?: Record<string, string> | undefined;
|
|
2182
2182
|
/**
|
|
2183
2183
|
* <p>The type of resource.</p>
|
|
2184
2184
|
* @public
|
|
2185
2185
|
*/
|
|
2186
|
-
type?: string;
|
|
2186
|
+
type?: string | undefined;
|
|
2187
2187
|
}
|
|
2188
2188
|
/**
|
|
2189
2189
|
* <p>Details on adjustments Amazon Inspector made to the CVSS score for a finding.</p>
|
|
@@ -2194,12 +2194,12 @@ export interface CvssScoreAdjustment {
|
|
|
2194
2194
|
* <p>The metric used to adjust the CVSS score.</p>
|
|
2195
2195
|
* @public
|
|
2196
2196
|
*/
|
|
2197
|
-
metric?: string;
|
|
2197
|
+
metric?: string | undefined;
|
|
2198
2198
|
/**
|
|
2199
2199
|
* <p>The reason the CVSS score has been adjustment.</p>
|
|
2200
2200
|
* @public
|
|
2201
2201
|
*/
|
|
2202
|
-
reason?: string;
|
|
2202
|
+
reason?: string | undefined;
|
|
2203
2203
|
}
|
|
2204
2204
|
/**
|
|
2205
2205
|
* <p>Information about the CVSS score.</p>
|
|
@@ -2210,27 +2210,27 @@ export interface CvssScoreDetails {
|
|
|
2210
2210
|
* <p>An object that contains details about adjustment Amazon Inspector made to the CVSS score.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
adjustments?: CvssScoreAdjustment[];
|
|
2213
|
+
adjustments?: CvssScoreAdjustment[] | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>The CVSS score.</p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
score?: number;
|
|
2218
|
+
score?: number | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>The source for the CVSS score.</p>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
scoreSource?: string;
|
|
2223
|
+
scoreSource?: string | undefined;
|
|
2224
2224
|
/**
|
|
2225
2225
|
* <p>The vector for the CVSS score.</p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
scoringVector?: string;
|
|
2228
|
+
scoringVector?: string | undefined;
|
|
2229
2229
|
/**
|
|
2230
2230
|
* <p>The CVSS version used in scoring.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
version?: string;
|
|
2233
|
+
version?: string | undefined;
|
|
2234
2234
|
}
|
|
2235
2235
|
/**
|
|
2236
2236
|
* <p>Information about the Amazon Inspector score given to a finding.</p>
|
|
@@ -2241,7 +2241,7 @@ export interface ScoreDetails {
|
|
|
2241
2241
|
* <p>An object that contains details about the CVSS score given to a finding.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
cvss?: CvssScoreDetails;
|
|
2244
|
+
cvss?: CvssScoreDetails | undefined;
|
|
2245
2245
|
}
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>The details of an enhanced image scan. This is returned when enhanced scanning is
|
|
@@ -2253,77 +2253,77 @@ export interface EnhancedImageScanFinding {
|
|
|
2253
2253
|
* <p>The Amazon Web Services account ID associated with the image.</p>
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
awsAccountId?: string;
|
|
2256
|
+
awsAccountId?: string | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* <p>The description of the finding.</p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
description?: string;
|
|
2261
|
+
description?: string | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>The Amazon Resource Number (ARN) of the finding.</p>
|
|
2264
2264
|
* @public
|
|
2265
2265
|
*/
|
|
2266
|
-
findingArn?: string;
|
|
2266
|
+
findingArn?: string | undefined;
|
|
2267
2267
|
/**
|
|
2268
2268
|
* <p>The date and time that the finding was first observed.</p>
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
firstObservedAt?: Date;
|
|
2271
|
+
firstObservedAt?: Date | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* <p>The date and time that the finding was last observed.</p>
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
lastObservedAt?: Date;
|
|
2276
|
+
lastObservedAt?: Date | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>An object that contains the details of a package vulnerability finding.</p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
2281
|
+
packageVulnerabilityDetails?: PackageVulnerabilityDetails | undefined;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* <p>An object that contains the details about how to remediate a finding.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
remediation?: Remediation;
|
|
2286
|
+
remediation?: Remediation | undefined;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>Contains information on the resources involved in a finding.</p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
resources?: Resource[];
|
|
2291
|
+
resources?: Resource[] | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>The Amazon Inspector score given to the finding.</p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
score?: number;
|
|
2296
|
+
score?: number | undefined;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>An object that contains details of the Amazon Inspector score.</p>
|
|
2299
2299
|
* @public
|
|
2300
2300
|
*/
|
|
2301
|
-
scoreDetails?: ScoreDetails;
|
|
2301
|
+
scoreDetails?: ScoreDetails | undefined;
|
|
2302
2302
|
/**
|
|
2303
2303
|
* <p>The severity of the finding.</p>
|
|
2304
2304
|
* @public
|
|
2305
2305
|
*/
|
|
2306
|
-
severity?: string;
|
|
2306
|
+
severity?: string | undefined;
|
|
2307
2307
|
/**
|
|
2308
2308
|
* <p>The status of the finding.</p>
|
|
2309
2309
|
* @public
|
|
2310
2310
|
*/
|
|
2311
|
-
status?: string;
|
|
2311
|
+
status?: string | undefined;
|
|
2312
2312
|
/**
|
|
2313
2313
|
* <p>The title of the finding.</p>
|
|
2314
2314
|
* @public
|
|
2315
2315
|
*/
|
|
2316
|
-
title?: string;
|
|
2316
|
+
title?: string | undefined;
|
|
2317
2317
|
/**
|
|
2318
2318
|
* <p>The type of the finding.</p>
|
|
2319
2319
|
* @public
|
|
2320
2320
|
*/
|
|
2321
|
-
type?: string;
|
|
2321
|
+
type?: string | undefined;
|
|
2322
2322
|
/**
|
|
2323
2323
|
* <p>The date and time the finding was last updated at.</p>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
updatedAt?: Date;
|
|
2326
|
+
updatedAt?: Date | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p>Details on whether a fix is available through a version update. This value can be
|
|
2329
2329
|
* <code>YES</code>, <code>NO</code>, or <code>PARTIAL</code>. A <code>PARTIAL</code>
|
|
@@ -2331,12 +2331,12 @@ export interface EnhancedImageScanFinding {
|
|
|
2331
2331
|
* available through updated versions.</p>
|
|
2332
2332
|
* @public
|
|
2333
2333
|
*/
|
|
2334
|
-
fixAvailable?: string;
|
|
2334
|
+
fixAvailable?: string | undefined;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* <p>If a finding discovered in your environment has an exploit available.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
exploitAvailable?: string;
|
|
2339
|
+
exploitAvailable?: string | undefined;
|
|
2340
2340
|
}
|
|
2341
2341
|
/**
|
|
2342
2342
|
* <p>This data type is used in the <a>ImageScanFinding</a> data type.</p>
|
|
@@ -2352,7 +2352,7 @@ export interface Attribute {
|
|
|
2352
2352
|
* <p>The value assigned to the attribute key.</p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
|
-
value?: string;
|
|
2355
|
+
value?: string | undefined;
|
|
2356
2356
|
}
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>Contains information about an image scan finding.</p>
|
|
@@ -2363,27 +2363,27 @@ export interface ImageScanFinding {
|
|
|
2363
2363
|
* <p>The name associated with the finding, usually a CVE number.</p>
|
|
2364
2364
|
* @public
|
|
2365
2365
|
*/
|
|
2366
|
-
name?: string;
|
|
2366
|
+
name?: string | undefined;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* <p>The description of the finding.</p>
|
|
2369
2369
|
* @public
|
|
2370
2370
|
*/
|
|
2371
|
-
description?: string;
|
|
2371
|
+
description?: string | undefined;
|
|
2372
2372
|
/**
|
|
2373
2373
|
* <p>A link containing additional details about the security vulnerability.</p>
|
|
2374
2374
|
* @public
|
|
2375
2375
|
*/
|
|
2376
|
-
uri?: string;
|
|
2376
|
+
uri?: string | undefined;
|
|
2377
2377
|
/**
|
|
2378
2378
|
* <p>The finding severity.</p>
|
|
2379
2379
|
* @public
|
|
2380
2380
|
*/
|
|
2381
|
-
severity?: FindingSeverity;
|
|
2381
|
+
severity?: FindingSeverity | undefined;
|
|
2382
2382
|
/**
|
|
2383
2383
|
* <p>A collection of attributes of the host from which the finding is generated.</p>
|
|
2384
2384
|
* @public
|
|
2385
2385
|
*/
|
|
2386
|
-
attributes?: Attribute[];
|
|
2386
|
+
attributes?: Attribute[] | undefined;
|
|
2387
2387
|
}
|
|
2388
2388
|
/**
|
|
2389
2389
|
* <p>The details of an image scan.</p>
|
|
@@ -2394,27 +2394,27 @@ export interface ImageScanFindings {
|
|
|
2394
2394
|
* <p>The time of the last completed image scan.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
imageScanCompletedAt?: Date;
|
|
2397
|
+
imageScanCompletedAt?: Date | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>The time when the vulnerability data was last scanned.</p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
vulnerabilitySourceUpdatedAt?: Date;
|
|
2402
|
+
vulnerabilitySourceUpdatedAt?: Date | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>The image vulnerability counts, sorted by severity.</p>
|
|
2405
2405
|
* @public
|
|
2406
2406
|
*/
|
|
2407
|
-
findingSeverityCounts?: Partial<Record<FindingSeverity, number
|
|
2407
|
+
findingSeverityCounts?: Partial<Record<FindingSeverity, number>> | undefined;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* <p>The findings from the image scan.</p>
|
|
2410
2410
|
* @public
|
|
2411
2411
|
*/
|
|
2412
|
-
findings?: ImageScanFinding[];
|
|
2412
|
+
findings?: ImageScanFinding[] | undefined;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* <p>Details about the enhanced scan findings from Amazon Inspector.</p>
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
enhancedFindings?: EnhancedImageScanFinding[];
|
|
2417
|
+
enhancedFindings?: EnhancedImageScanFinding[] | undefined;
|
|
2418
2418
|
}
|
|
2419
2419
|
/**
|
|
2420
2420
|
* @public
|
|
@@ -2424,27 +2424,27 @@ export interface DescribeImageScanFindingsResponse {
|
|
|
2424
2424
|
* <p>The registry ID associated with the request.</p>
|
|
2425
2425
|
* @public
|
|
2426
2426
|
*/
|
|
2427
|
-
registryId?: string;
|
|
2427
|
+
registryId?: string | undefined;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* <p>The repository name associated with the request.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
repositoryName?: string;
|
|
2432
|
+
repositoryName?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>An object with identifying information for an image in an Amazon ECR repository.</p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
imageId?: ImageIdentifier;
|
|
2437
|
+
imageId?: ImageIdentifier | undefined;
|
|
2438
2438
|
/**
|
|
2439
2439
|
* <p>The current state of the scan.</p>
|
|
2440
2440
|
* @public
|
|
2441
2441
|
*/
|
|
2442
|
-
imageScanStatus?: ImageScanStatus;
|
|
2442
|
+
imageScanStatus?: ImageScanStatus | undefined;
|
|
2443
2443
|
/**
|
|
2444
2444
|
* <p>The information contained in the image scan findings.</p>
|
|
2445
2445
|
* @public
|
|
2446
2446
|
*/
|
|
2447
|
-
imageScanFindings?: ImageScanFindings;
|
|
2447
|
+
imageScanFindings?: ImageScanFindings | undefined;
|
|
2448
2448
|
/**
|
|
2449
2449
|
* <p>The <code>nextToken</code> value to include in a future
|
|
2450
2450
|
* <code>DescribeImageScanFindings</code> request. When the results of a
|
|
@@ -2453,7 +2453,7 @@ export interface DescribeImageScanFindingsResponse {
|
|
|
2453
2453
|
* are no more results to return.</p>
|
|
2454
2454
|
* @public
|
|
2455
2455
|
*/
|
|
2456
|
-
nextToken?: string;
|
|
2456
|
+
nextToken?: string | undefined;
|
|
2457
2457
|
}
|
|
2458
2458
|
/**
|
|
2459
2459
|
* <p>The specified image scan could not be found. Ensure that image scanning is enabled on
|
|
@@ -2477,14 +2477,14 @@ export interface DescribePullThroughCacheRulesRequest {
|
|
|
2477
2477
|
* rules for. If you do not specify a registry, the default registry is assumed.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
registryId?: string;
|
|
2480
|
+
registryId?: string | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>The Amazon ECR repository prefixes associated with the pull through cache rules to return.
|
|
2483
2483
|
* If no repository prefix value is specified, all pull through cache rules are
|
|
2484
2484
|
* returned.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
ecrRepositoryPrefixes?: string[];
|
|
2487
|
+
ecrRepositoryPrefixes?: string[] | undefined;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
2490
2490
|
* <code>DescribePullThroughCacheRulesRequest</code> request where
|
|
@@ -2494,7 +2494,7 @@ export interface DescribePullThroughCacheRulesRequest {
|
|
|
2494
2494
|
* return.</p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
nextToken?: string;
|
|
2497
|
+
nextToken?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p>The maximum number of pull through cache rules returned by
|
|
2500
2500
|
* <code>DescribePullThroughCacheRulesRequest</code> in paginated output. When this
|
|
@@ -2507,7 +2507,7 @@ export interface DescribePullThroughCacheRulesRequest {
|
|
|
2507
2507
|
* to 100 results and a <code>nextToken</code> value, if applicable.</p>
|
|
2508
2508
|
* @public
|
|
2509
2509
|
*/
|
|
2510
|
-
maxResults?: number;
|
|
2510
|
+
maxResults?: number | undefined;
|
|
2511
2511
|
}
|
|
2512
2512
|
/**
|
|
2513
2513
|
* <p>The details of a pull through cache rule.</p>
|
|
@@ -2518,40 +2518,40 @@ export interface PullThroughCacheRule {
|
|
|
2518
2518
|
* <p>The Amazon ECR repository prefix associated with the pull through cache rule.</p>
|
|
2519
2519
|
* @public
|
|
2520
2520
|
*/
|
|
2521
|
-
ecrRepositoryPrefix?: string;
|
|
2521
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
2522
2522
|
/**
|
|
2523
2523
|
* <p>The upstream registry URL associated with the pull through cache rule.</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
upstreamRegistryUrl?: string;
|
|
2526
|
+
upstreamRegistryUrl?: string | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p>The date and time the pull through cache was created.</p>
|
|
2529
2529
|
* @public
|
|
2530
2530
|
*/
|
|
2531
|
-
createdAt?: Date;
|
|
2531
|
+
createdAt?: Date | undefined;
|
|
2532
2532
|
/**
|
|
2533
2533
|
* <p>The Amazon Web Services account ID associated with the registry the pull through cache rule is
|
|
2534
2534
|
* associated with.</p>
|
|
2535
2535
|
* @public
|
|
2536
2536
|
*/
|
|
2537
|
-
registryId?: string;
|
|
2537
|
+
registryId?: string | undefined;
|
|
2538
2538
|
/**
|
|
2539
2539
|
* <p>The ARN of the Secrets Manager secret associated with the pull through cache rule.</p>
|
|
2540
2540
|
* @public
|
|
2541
2541
|
*/
|
|
2542
|
-
credentialArn?: string;
|
|
2542
|
+
credentialArn?: string | undefined;
|
|
2543
2543
|
/**
|
|
2544
2544
|
* <p>The name of the upstream source registry associated with the pull through cache
|
|
2545
2545
|
* rule.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
upstreamRegistry?: UpstreamRegistry;
|
|
2548
|
+
upstreamRegistry?: UpstreamRegistry | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* <p>The date and time, in JavaScript date format, when the pull through cache rule was
|
|
2551
2551
|
* last updated.</p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
updatedAt?: Date;
|
|
2554
|
+
updatedAt?: Date | undefined;
|
|
2555
2555
|
}
|
|
2556
2556
|
/**
|
|
2557
2557
|
* @public
|
|
@@ -2561,7 +2561,7 @@ export interface DescribePullThroughCacheRulesResponse {
|
|
|
2561
2561
|
* <p>The details of the pull through cache rules.</p>
|
|
2562
2562
|
* @public
|
|
2563
2563
|
*/
|
|
2564
|
-
pullThroughCacheRules?: PullThroughCacheRule[];
|
|
2564
|
+
pullThroughCacheRules?: PullThroughCacheRule[] | undefined;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* <p>The <code>nextToken</code> value to include in a future
|
|
2567
2567
|
* <code>DescribePullThroughCacheRulesRequest</code> request. When the results of a
|
|
@@ -2570,7 +2570,7 @@ export interface DescribePullThroughCacheRulesResponse {
|
|
|
2570
2570
|
* results. This value is null when there are no more results to return.</p>
|
|
2571
2571
|
* @public
|
|
2572
2572
|
*/
|
|
2573
|
-
nextToken?: string;
|
|
2573
|
+
nextToken?: string | undefined;
|
|
2574
2574
|
}
|
|
2575
2575
|
/**
|
|
2576
2576
|
* @public
|
|
@@ -2645,7 +2645,7 @@ export interface ReplicationRule {
|
|
|
2645
2645
|
* repositories in a private registry are replicated.</p>
|
|
2646
2646
|
* @public
|
|
2647
2647
|
*/
|
|
2648
|
-
repositoryFilters?: RepositoryFilter[];
|
|
2648
|
+
repositoryFilters?: RepositoryFilter[] | undefined;
|
|
2649
2649
|
}
|
|
2650
2650
|
/**
|
|
2651
2651
|
* <p>The replication configuration for a registry.</p>
|
|
@@ -2667,12 +2667,12 @@ export interface DescribeRegistryResponse {
|
|
|
2667
2667
|
* <p>The registry ID associated with the request.</p>
|
|
2668
2668
|
* @public
|
|
2669
2669
|
*/
|
|
2670
|
-
registryId?: string;
|
|
2670
|
+
registryId?: string | undefined;
|
|
2671
2671
|
/**
|
|
2672
2672
|
* <p>The replication configuration for the registry.</p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
replicationConfiguration?: ReplicationConfiguration;
|
|
2675
|
+
replicationConfiguration?: ReplicationConfiguration | undefined;
|
|
2676
2676
|
}
|
|
2677
2677
|
/**
|
|
2678
2678
|
* @public
|
|
@@ -2683,13 +2683,13 @@ export interface DescribeRepositoriesRequest {
|
|
|
2683
2683
|
* described. If you do not specify a registry, the default registry is assumed.</p>
|
|
2684
2684
|
* @public
|
|
2685
2685
|
*/
|
|
2686
|
-
registryId?: string;
|
|
2686
|
+
registryId?: string | undefined;
|
|
2687
2687
|
/**
|
|
2688
2688
|
* <p>A list of repositories to describe. If this parameter is omitted, then all
|
|
2689
2689
|
* repositories in a registry are described.</p>
|
|
2690
2690
|
* @public
|
|
2691
2691
|
*/
|
|
2692
|
-
repositoryNames?: string[];
|
|
2692
|
+
repositoryNames?: string[] | undefined;
|
|
2693
2693
|
/**
|
|
2694
2694
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
2695
2695
|
* <code>DescribeRepositories</code> request where <code>maxResults</code> was used and
|
|
@@ -2703,7 +2703,7 @@ export interface DescribeRepositoriesRequest {
|
|
|
2703
2703
|
* </note>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
nextToken?: string;
|
|
2706
|
+
nextToken?: string | undefined;
|
|
2707
2707
|
/**
|
|
2708
2708
|
* <p>The maximum number of repository results returned by <code>DescribeRepositories</code>
|
|
2709
2709
|
* in paginated output. When this parameter is used, <code>DescribeRepositories</code> only
|
|
@@ -2717,7 +2717,7 @@ export interface DescribeRepositoriesRequest {
|
|
|
2717
2717
|
* specify repositories with <code>repositoryNames</code>.</p>
|
|
2718
2718
|
* @public
|
|
2719
2719
|
*/
|
|
2720
|
-
maxResults?: number;
|
|
2720
|
+
maxResults?: number | undefined;
|
|
2721
2721
|
}
|
|
2722
2722
|
/**
|
|
2723
2723
|
* @public
|
|
@@ -2727,7 +2727,7 @@ export interface DescribeRepositoriesResponse {
|
|
|
2727
2727
|
* <p>A list of repository objects corresponding to valid repositories.</p>
|
|
2728
2728
|
* @public
|
|
2729
2729
|
*/
|
|
2730
|
-
repositories?: Repository[];
|
|
2730
|
+
repositories?: Repository[] | undefined;
|
|
2731
2731
|
/**
|
|
2732
2732
|
* <p>The <code>nextToken</code> value to include in a future
|
|
2733
2733
|
* <code>DescribeRepositories</code> request. When the results of a
|
|
@@ -2736,7 +2736,7 @@ export interface DescribeRepositoriesResponse {
|
|
|
2736
2736
|
* there are no more results to return.</p>
|
|
2737
2737
|
* @public
|
|
2738
2738
|
*/
|
|
2739
|
-
nextToken?: string;
|
|
2739
|
+
nextToken?: string | undefined;
|
|
2740
2740
|
}
|
|
2741
2741
|
/**
|
|
2742
2742
|
* @public
|
|
@@ -2748,7 +2748,7 @@ export interface DescribeRepositoryCreationTemplatesRequest {
|
|
|
2748
2748
|
* returned.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
prefixes?: string[];
|
|
2751
|
+
prefixes?: string[] | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
2754
2754
|
* <code>DescribeRepositoryCreationTemplates</code> request where
|
|
@@ -2762,7 +2762,7 @@ export interface DescribeRepositoryCreationTemplatesRequest {
|
|
|
2762
2762
|
* </note>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
nextToken?: string;
|
|
2765
|
+
nextToken?: string | undefined;
|
|
2766
2766
|
/**
|
|
2767
2767
|
* <p>The maximum number of repository results returned by
|
|
2768
2768
|
* <code>DescribeRepositoryCreationTemplatesRequest</code> in paginated output. When
|
|
@@ -2777,7 +2777,7 @@ export interface DescribeRepositoryCreationTemplatesRequest {
|
|
|
2777
2777
|
* 100 results and a <code>nextToken</code> value, if applicable.</p>
|
|
2778
2778
|
* @public
|
|
2779
2779
|
*/
|
|
2780
|
-
maxResults?: number;
|
|
2780
|
+
maxResults?: number | undefined;
|
|
2781
2781
|
}
|
|
2782
2782
|
/**
|
|
2783
2783
|
* @public
|
|
@@ -2787,12 +2787,12 @@ export interface DescribeRepositoryCreationTemplatesResponse {
|
|
|
2787
2787
|
* <p>The registry ID associated with the request.</p>
|
|
2788
2788
|
* @public
|
|
2789
2789
|
*/
|
|
2790
|
-
registryId?: string;
|
|
2790
|
+
registryId?: string | undefined;
|
|
2791
2791
|
/**
|
|
2792
2792
|
* <p>The details of the repository creation templates.</p>
|
|
2793
2793
|
* @public
|
|
2794
2794
|
*/
|
|
2795
|
-
repositoryCreationTemplates?: RepositoryCreationTemplate[];
|
|
2795
|
+
repositoryCreationTemplates?: RepositoryCreationTemplate[] | undefined;
|
|
2796
2796
|
/**
|
|
2797
2797
|
* <p>The <code>nextToken</code> value to include in a future
|
|
2798
2798
|
* <code>DescribeRepositoryCreationTemplates</code> request. When the results of a
|
|
@@ -2802,7 +2802,7 @@ export interface DescribeRepositoryCreationTemplatesResponse {
|
|
|
2802
2802
|
* return.</p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
nextToken?: string;
|
|
2805
|
+
nextToken?: string | undefined;
|
|
2806
2806
|
}
|
|
2807
2807
|
/**
|
|
2808
2808
|
* @public
|
|
@@ -2822,13 +2822,13 @@ export interface GetAccountSettingResponse {
|
|
|
2822
2822
|
* <p>Retrieves the basic scan type version name.</p>
|
|
2823
2823
|
* @public
|
|
2824
2824
|
*/
|
|
2825
|
-
name?: string;
|
|
2825
|
+
name?: string | undefined;
|
|
2826
2826
|
/**
|
|
2827
2827
|
* <p>Retrieves the value that specifies what basic scan type is being used:
|
|
2828
2828
|
* <code>AWS_NATIVE</code> or <code>CLAIR</code>.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
value?: string;
|
|
2831
|
+
value?: string | undefined;
|
|
2832
2832
|
}
|
|
2833
2833
|
/**
|
|
2834
2834
|
* @public
|
|
@@ -2841,7 +2841,7 @@ export interface GetAuthorizationTokenRequest {
|
|
|
2841
2841
|
* AuthorizationData objects. If you do not specify a registry, the default registry is assumed.</p>
|
|
2842
2842
|
* @public
|
|
2843
2843
|
*/
|
|
2844
|
-
registryIds?: string[];
|
|
2844
|
+
registryIds?: string[] | undefined;
|
|
2845
2845
|
}
|
|
2846
2846
|
/**
|
|
2847
2847
|
* <p>An object representing authorization data for an Amazon ECR registry.</p>
|
|
@@ -2855,13 +2855,13 @@ export interface AuthorizationData {
|
|
|
2855
2855
|
* login</code>.</p>
|
|
2856
2856
|
* @public
|
|
2857
2857
|
*/
|
|
2858
|
-
authorizationToken?: string;
|
|
2858
|
+
authorizationToken?: string | undefined;
|
|
2859
2859
|
/**
|
|
2860
2860
|
* <p>The Unix time in seconds and milliseconds when the authorization token expires.
|
|
2861
2861
|
* Authorization tokens are valid for 12 hours.</p>
|
|
2862
2862
|
* @public
|
|
2863
2863
|
*/
|
|
2864
|
-
expiresAt?: Date;
|
|
2864
|
+
expiresAt?: Date | undefined;
|
|
2865
2865
|
/**
|
|
2866
2866
|
* <p>The registry URL to use for this authorization token in a <code>docker login</code>
|
|
2867
2867
|
* command. The Amazon ECR registry URL format is
|
|
@@ -2869,7 +2869,7 @@ export interface AuthorizationData {
|
|
|
2869
2869
|
* <code>https://012345678910.dkr.ecr.us-east-1.amazonaws.com</code>.. </p>
|
|
2870
2870
|
* @public
|
|
2871
2871
|
*/
|
|
2872
|
-
proxyEndpoint?: string;
|
|
2872
|
+
proxyEndpoint?: string | undefined;
|
|
2873
2873
|
}
|
|
2874
2874
|
/**
|
|
2875
2875
|
* @public
|
|
@@ -2880,7 +2880,7 @@ export interface GetAuthorizationTokenResponse {
|
|
|
2880
2880
|
* <code>registryIds</code> values in the request.</p>
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
authorizationData?: AuthorizationData[];
|
|
2883
|
+
authorizationData?: AuthorizationData[] | undefined;
|
|
2884
2884
|
}
|
|
2885
2885
|
/**
|
|
2886
2886
|
* @public
|
|
@@ -2891,7 +2891,7 @@ export interface GetDownloadUrlForLayerRequest {
|
|
|
2891
2891
|
* download. If you do not specify a registry, the default registry is assumed.</p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
registryId?: string;
|
|
2894
|
+
registryId?: string | undefined;
|
|
2895
2895
|
/**
|
|
2896
2896
|
* <p>The name of the repository that is associated with the image layer to download.</p>
|
|
2897
2897
|
* @public
|
|
@@ -2911,12 +2911,12 @@ export interface GetDownloadUrlForLayerResponse {
|
|
|
2911
2911
|
* <p>The pre-signed Amazon S3 download URL for the requested layer.</p>
|
|
2912
2912
|
* @public
|
|
2913
2913
|
*/
|
|
2914
|
-
downloadUrl?: string;
|
|
2914
|
+
downloadUrl?: string | undefined;
|
|
2915
2915
|
/**
|
|
2916
2916
|
* <p>The digest of the image layer to download.</p>
|
|
2917
2917
|
* @public
|
|
2918
2918
|
*/
|
|
2919
|
-
layerDigest?: string;
|
|
2919
|
+
layerDigest?: string | undefined;
|
|
2920
2920
|
}
|
|
2921
2921
|
/**
|
|
2922
2922
|
* <p>The specified layer is not available because it is not associated with an image.
|
|
@@ -2966,7 +2966,7 @@ export interface GetLifecyclePolicyRequest {
|
|
|
2966
2966
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
registryId?: string;
|
|
2969
|
+
registryId?: string | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>The name of the repository.</p>
|
|
2972
2972
|
* @public
|
|
@@ -2981,22 +2981,22 @@ export interface GetLifecyclePolicyResponse {
|
|
|
2981
2981
|
* <p>The registry ID associated with the request.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
registryId?: string;
|
|
2984
|
+
registryId?: string | undefined;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* <p>The repository name associated with the request.</p>
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
|
-
repositoryName?: string;
|
|
2989
|
+
repositoryName?: string | undefined;
|
|
2990
2990
|
/**
|
|
2991
2991
|
* <p>The JSON lifecycle policy text.</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
lifecyclePolicyText?: string;
|
|
2994
|
+
lifecyclePolicyText?: string | undefined;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* <p>The time stamp of the last time that the lifecycle policy was run.</p>
|
|
2997
2997
|
* @public
|
|
2998
2998
|
*/
|
|
2999
|
-
lastEvaluatedAt?: Date;
|
|
2999
|
+
lastEvaluatedAt?: Date | undefined;
|
|
3000
3000
|
}
|
|
3001
3001
|
/**
|
|
3002
3002
|
* <p>The filter for the lifecycle policy preview.</p>
|
|
@@ -3007,7 +3007,7 @@ export interface LifecyclePolicyPreviewFilter {
|
|
|
3007
3007
|
* <p>The tag status of the image.</p>
|
|
3008
3008
|
* @public
|
|
3009
3009
|
*/
|
|
3010
|
-
tagStatus?: TagStatus;
|
|
3010
|
+
tagStatus?: TagStatus | undefined;
|
|
3011
3011
|
}
|
|
3012
3012
|
/**
|
|
3013
3013
|
* @public
|
|
@@ -3018,7 +3018,7 @@ export interface GetLifecyclePolicyPreviewRequest {
|
|
|
3018
3018
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
registryId?: string;
|
|
3021
|
+
registryId?: string | undefined;
|
|
3022
3022
|
/**
|
|
3023
3023
|
* <p>The name of the repository.</p>
|
|
3024
3024
|
* @public
|
|
@@ -3028,7 +3028,7 @@ export interface GetLifecyclePolicyPreviewRequest {
|
|
|
3028
3028
|
* <p>The list of imageIDs to be included.</p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
|
-
imageIds?: ImageIdentifier[];
|
|
3031
|
+
imageIds?: ImageIdentifier[] | undefined;
|
|
3032
3032
|
/**
|
|
3033
3033
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
3034
3034
|
* <code>GetLifecyclePolicyPreviewRequest</code> request where <code>maxResults</code>
|
|
@@ -3041,7 +3041,7 @@ export interface GetLifecyclePolicyPreviewRequest {
|
|
|
3041
3041
|
* cannot be used when you specify images with <code>imageIds</code>.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
nextToken?: string;
|
|
3044
|
+
nextToken?: string | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>The maximum number of repository results returned by
|
|
3047
3047
|
* <code>GetLifecyclePolicyPreviewRequest</code> in
|
|
@@ -3063,13 +3063,13 @@ export interface GetLifecyclePolicyPreviewRequest {
|
|
|
3063
3063
|
* when you specify images with <code>imageIds</code>.</p>
|
|
3064
3064
|
* @public
|
|
3065
3065
|
*/
|
|
3066
|
-
maxResults?: number;
|
|
3066
|
+
maxResults?: number | undefined;
|
|
3067
3067
|
/**
|
|
3068
3068
|
* <p>An optional parameter that filters results based on image tag status and all tags, if
|
|
3069
3069
|
* tagged.</p>
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
filter?: LifecyclePolicyPreviewFilter;
|
|
3072
|
+
filter?: LifecyclePolicyPreviewFilter | undefined;
|
|
3073
3073
|
}
|
|
3074
3074
|
/**
|
|
3075
3075
|
* @public
|
|
@@ -3091,7 +3091,7 @@ export interface LifecyclePolicyRuleAction {
|
|
|
3091
3091
|
* <p>The type of action to be taken.</p>
|
|
3092
3092
|
* @public
|
|
3093
3093
|
*/
|
|
3094
|
-
type?: ImageActionType;
|
|
3094
|
+
type?: ImageActionType | undefined;
|
|
3095
3095
|
}
|
|
3096
3096
|
/**
|
|
3097
3097
|
* <p>The result of the lifecycle policy preview.</p>
|
|
@@ -3102,28 +3102,28 @@ export interface LifecyclePolicyPreviewResult {
|
|
|
3102
3102
|
* <p>The list of tags associated with this image.</p>
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
imageTags?: string[];
|
|
3105
|
+
imageTags?: string[] | undefined;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* <p>The <code>sha256</code> digest of the image manifest.</p>
|
|
3108
3108
|
* @public
|
|
3109
3109
|
*/
|
|
3110
|
-
imageDigest?: string;
|
|
3110
|
+
imageDigest?: string | undefined;
|
|
3111
3111
|
/**
|
|
3112
3112
|
* <p>The date and time, expressed in standard JavaScript date format, at which the current
|
|
3113
3113
|
* image was pushed to the repository.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
imagePushedAt?: Date;
|
|
3116
|
+
imagePushedAt?: Date | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>The type of action to be taken.</p>
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
action?: LifecyclePolicyRuleAction;
|
|
3121
|
+
action?: LifecyclePolicyRuleAction | undefined;
|
|
3122
3122
|
/**
|
|
3123
3123
|
* <p>The priority of the applied rule.</p>
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
appliedRulePriority?: number;
|
|
3126
|
+
appliedRulePriority?: number | undefined;
|
|
3127
3127
|
}
|
|
3128
3128
|
/**
|
|
3129
3129
|
* @public
|
|
@@ -3148,7 +3148,7 @@ export interface LifecyclePolicyPreviewSummary {
|
|
|
3148
3148
|
* <p>The number of expiring images.</p>
|
|
3149
3149
|
* @public
|
|
3150
3150
|
*/
|
|
3151
|
-
expiringImageTotalCount?: number;
|
|
3151
|
+
expiringImageTotalCount?: number | undefined;
|
|
3152
3152
|
}
|
|
3153
3153
|
/**
|
|
3154
3154
|
* @public
|
|
@@ -3158,22 +3158,22 @@ export interface GetLifecyclePolicyPreviewResponse {
|
|
|
3158
3158
|
* <p>The registry ID associated with the request.</p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
registryId?: string;
|
|
3161
|
+
registryId?: string | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>The repository name associated with the request.</p>
|
|
3164
3164
|
* @public
|
|
3165
3165
|
*/
|
|
3166
|
-
repositoryName?: string;
|
|
3166
|
+
repositoryName?: string | undefined;
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>The JSON lifecycle policy text.</p>
|
|
3169
3169
|
* @public
|
|
3170
3170
|
*/
|
|
3171
|
-
lifecyclePolicyText?: string;
|
|
3171
|
+
lifecyclePolicyText?: string | undefined;
|
|
3172
3172
|
/**
|
|
3173
3173
|
* <p>The status of the lifecycle policy preview request.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
status?: LifecyclePolicyPreviewStatus;
|
|
3176
|
+
status?: LifecyclePolicyPreviewStatus | undefined;
|
|
3177
3177
|
/**
|
|
3178
3178
|
* <p>The <code>nextToken</code> value to include in a future
|
|
3179
3179
|
* <code>GetLifecyclePolicyPreview</code> request. When the results of a
|
|
@@ -3182,17 +3182,17 @@ export interface GetLifecyclePolicyPreviewResponse {
|
|
|
3182
3182
|
* when there are no more results to return.</p>
|
|
3183
3183
|
* @public
|
|
3184
3184
|
*/
|
|
3185
|
-
nextToken?: string;
|
|
3185
|
+
nextToken?: string | undefined;
|
|
3186
3186
|
/**
|
|
3187
3187
|
* <p>The results of the lifecycle policy preview request.</p>
|
|
3188
3188
|
* @public
|
|
3189
3189
|
*/
|
|
3190
|
-
previewResults?: LifecyclePolicyPreviewResult[];
|
|
3190
|
+
previewResults?: LifecyclePolicyPreviewResult[] | undefined;
|
|
3191
3191
|
/**
|
|
3192
3192
|
* <p>The list of images that is returned as a result of the action.</p>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
summary?: LifecyclePolicyPreviewSummary;
|
|
3195
|
+
summary?: LifecyclePolicyPreviewSummary | undefined;
|
|
3196
3196
|
}
|
|
3197
3197
|
/**
|
|
3198
3198
|
* <p>There is no dry run for this repository.</p>
|
|
@@ -3219,12 +3219,12 @@ export interface GetRegistryPolicyResponse {
|
|
|
3219
3219
|
* <p>The registry ID associated with the request.</p>
|
|
3220
3220
|
* @public
|
|
3221
3221
|
*/
|
|
3222
|
-
registryId?: string;
|
|
3222
|
+
registryId?: string | undefined;
|
|
3223
3223
|
/**
|
|
3224
3224
|
* <p>The JSON text of the permissions policy for a registry.</p>
|
|
3225
3225
|
* @public
|
|
3226
3226
|
*/
|
|
3227
|
-
policyText?: string;
|
|
3227
|
+
policyText?: string | undefined;
|
|
3228
3228
|
}
|
|
3229
3229
|
/**
|
|
3230
3230
|
* @public
|
|
@@ -3274,12 +3274,12 @@ export interface RegistryScanningConfiguration {
|
|
|
3274
3274
|
* <p>The type of scanning configured for the registry.</p>
|
|
3275
3275
|
* @public
|
|
3276
3276
|
*/
|
|
3277
|
-
scanType?: ScanType;
|
|
3277
|
+
scanType?: ScanType | undefined;
|
|
3278
3278
|
/**
|
|
3279
3279
|
* <p>The scanning rules associated with the registry.</p>
|
|
3280
3280
|
* @public
|
|
3281
3281
|
*/
|
|
3282
|
-
rules?: RegistryScanningRule[];
|
|
3282
|
+
rules?: RegistryScanningRule[] | undefined;
|
|
3283
3283
|
}
|
|
3284
3284
|
/**
|
|
3285
3285
|
* @public
|
|
@@ -3289,12 +3289,12 @@ export interface GetRegistryScanningConfigurationResponse {
|
|
|
3289
3289
|
* <p>The registry ID associated with the request.</p>
|
|
3290
3290
|
* @public
|
|
3291
3291
|
*/
|
|
3292
|
-
registryId?: string;
|
|
3292
|
+
registryId?: string | undefined;
|
|
3293
3293
|
/**
|
|
3294
3294
|
* <p>The scanning configuration for the registry.</p>
|
|
3295
3295
|
* @public
|
|
3296
3296
|
*/
|
|
3297
|
-
scanningConfiguration?: RegistryScanningConfiguration;
|
|
3297
|
+
scanningConfiguration?: RegistryScanningConfiguration | undefined;
|
|
3298
3298
|
}
|
|
3299
3299
|
/**
|
|
3300
3300
|
* @public
|
|
@@ -3305,7 +3305,7 @@ export interface GetRepositoryPolicyRequest {
|
|
|
3305
3305
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
3306
3306
|
* @public
|
|
3307
3307
|
*/
|
|
3308
|
-
registryId?: string;
|
|
3308
|
+
registryId?: string | undefined;
|
|
3309
3309
|
/**
|
|
3310
3310
|
* <p>The name of the repository with the policy to retrieve.</p>
|
|
3311
3311
|
* @public
|
|
@@ -3320,17 +3320,17 @@ export interface GetRepositoryPolicyResponse {
|
|
|
3320
3320
|
* <p>The registry ID associated with the request.</p>
|
|
3321
3321
|
* @public
|
|
3322
3322
|
*/
|
|
3323
|
-
registryId?: string;
|
|
3323
|
+
registryId?: string | undefined;
|
|
3324
3324
|
/**
|
|
3325
3325
|
* <p>The repository name associated with the request.</p>
|
|
3326
3326
|
* @public
|
|
3327
3327
|
*/
|
|
3328
|
-
repositoryName?: string;
|
|
3328
|
+
repositoryName?: string | undefined;
|
|
3329
3329
|
/**
|
|
3330
3330
|
* <p>The JSON repository policy text associated with the repository.</p>
|
|
3331
3331
|
* @public
|
|
3332
3332
|
*/
|
|
3333
|
-
policyText?: string;
|
|
3333
|
+
policyText?: string | undefined;
|
|
3334
3334
|
}
|
|
3335
3335
|
/**
|
|
3336
3336
|
* @public
|
|
@@ -3341,7 +3341,7 @@ export interface InitiateLayerUploadRequest {
|
|
|
3341
3341
|
* layers. If you do not specify a registry, the default registry is assumed.</p>
|
|
3342
3342
|
* @public
|
|
3343
3343
|
*/
|
|
3344
|
-
registryId?: string;
|
|
3344
|
+
registryId?: string | undefined;
|
|
3345
3345
|
/**
|
|
3346
3346
|
* <p>The name of the repository to which you intend to upload layers.</p>
|
|
3347
3347
|
* @public
|
|
@@ -3357,12 +3357,12 @@ export interface InitiateLayerUploadResponse {
|
|
|
3357
3357
|
* operations.</p>
|
|
3358
3358
|
* @public
|
|
3359
3359
|
*/
|
|
3360
|
-
uploadId?: string;
|
|
3360
|
+
uploadId?: string | undefined;
|
|
3361
3361
|
/**
|
|
3362
3362
|
* <p>The size, in bytes, that Amazon ECR expects future layer part uploads to be.</p>
|
|
3363
3363
|
* @public
|
|
3364
3364
|
*/
|
|
3365
|
-
partSize?: number;
|
|
3365
|
+
partSize?: number | undefined;
|
|
3366
3366
|
}
|
|
3367
3367
|
/**
|
|
3368
3368
|
* <p>An object representing a filter on a <a>ListImages</a> operation.</p>
|
|
@@ -3375,7 +3375,7 @@ export interface ListImagesFilter {
|
|
|
3375
3375
|
* <code>UNTAGGED</code>.</p>
|
|
3376
3376
|
* @public
|
|
3377
3377
|
*/
|
|
3378
|
-
tagStatus?: TagStatus;
|
|
3378
|
+
tagStatus?: TagStatus | undefined;
|
|
3379
3379
|
}
|
|
3380
3380
|
/**
|
|
3381
3381
|
* @public
|
|
@@ -3386,7 +3386,7 @@ export interface ListImagesRequest {
|
|
|
3386
3386
|
* which to list images. If you do not specify a registry, the default registry is assumed.</p>
|
|
3387
3387
|
* @public
|
|
3388
3388
|
*/
|
|
3389
|
-
registryId?: string;
|
|
3389
|
+
registryId?: string | undefined;
|
|
3390
3390
|
/**
|
|
3391
3391
|
* <p>The repository with image IDs to be listed.</p>
|
|
3392
3392
|
* @public
|
|
@@ -3404,7 +3404,7 @@ export interface ListImagesRequest {
|
|
|
3404
3404
|
* </note>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
nextToken?: string;
|
|
3407
|
+
nextToken?: string | undefined;
|
|
3408
3408
|
/**
|
|
3409
3409
|
* <p>The maximum number of image results returned by <code>ListImages</code> in paginated
|
|
3410
3410
|
* output. When this parameter is used, <code>ListImages</code> only returns
|
|
@@ -3416,13 +3416,13 @@ export interface ListImagesRequest {
|
|
|
3416
3416
|
* <code>nextToken</code> value, if applicable.</p>
|
|
3417
3417
|
* @public
|
|
3418
3418
|
*/
|
|
3419
|
-
maxResults?: number;
|
|
3419
|
+
maxResults?: number | undefined;
|
|
3420
3420
|
/**
|
|
3421
3421
|
* <p>The filter key and value with which to filter your <code>ListImages</code>
|
|
3422
3422
|
* results.</p>
|
|
3423
3423
|
* @public
|
|
3424
3424
|
*/
|
|
3425
|
-
filter?: ListImagesFilter;
|
|
3425
|
+
filter?: ListImagesFilter | undefined;
|
|
3426
3426
|
}
|
|
3427
3427
|
/**
|
|
3428
3428
|
* @public
|
|
@@ -3432,7 +3432,7 @@ export interface ListImagesResponse {
|
|
|
3432
3432
|
* <p>The list of image IDs for the requested repository.</p>
|
|
3433
3433
|
* @public
|
|
3434
3434
|
*/
|
|
3435
|
-
imageIds?: ImageIdentifier[];
|
|
3435
|
+
imageIds?: ImageIdentifier[] | undefined;
|
|
3436
3436
|
/**
|
|
3437
3437
|
* <p>The <code>nextToken</code> value to include in a future <code>ListImages</code>
|
|
3438
3438
|
* request. When the results of a <code>ListImages</code> request exceed
|
|
@@ -3441,7 +3441,7 @@ export interface ListImagesResponse {
|
|
|
3441
3441
|
* return.</p>
|
|
3442
3442
|
* @public
|
|
3443
3443
|
*/
|
|
3444
|
-
nextToken?: string;
|
|
3444
|
+
nextToken?: string | undefined;
|
|
3445
3445
|
}
|
|
3446
3446
|
/**
|
|
3447
3447
|
* @public
|
|
@@ -3462,7 +3462,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3462
3462
|
* <p>The tags for the resource.</p>
|
|
3463
3463
|
* @public
|
|
3464
3464
|
*/
|
|
3465
|
-
tags?: Tag[];
|
|
3465
|
+
tags?: Tag[] | undefined;
|
|
3466
3466
|
}
|
|
3467
3467
|
/**
|
|
3468
3468
|
* @public
|
|
@@ -3488,13 +3488,13 @@ export interface PutAccountSettingResponse {
|
|
|
3488
3488
|
* <p>Retrieves the the basic scan type version name.</p>
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
name?: string;
|
|
3491
|
+
name?: string | undefined;
|
|
3492
3492
|
/**
|
|
3493
3493
|
* <p>Retrieves the basic scan type value, either <code>AWS_NATIVE</code> or
|
|
3494
3494
|
* <code>-</code>.</p>
|
|
3495
3495
|
* @public
|
|
3496
3496
|
*/
|
|
3497
|
-
value?: string;
|
|
3497
|
+
value?: string | undefined;
|
|
3498
3498
|
}
|
|
3499
3499
|
/**
|
|
3500
3500
|
* <p>The specified image has already been pushed, and there were no changes to the manifest
|
|
@@ -3544,7 +3544,7 @@ export interface PutImageRequest {
|
|
|
3544
3544
|
* which to put the image. If you do not specify a registry, the default registry is assumed.</p>
|
|
3545
3545
|
* @public
|
|
3546
3546
|
*/
|
|
3547
|
-
registryId?: string;
|
|
3547
|
+
registryId?: string | undefined;
|
|
3548
3548
|
/**
|
|
3549
3549
|
* <p>The name of the repository in which to put the image.</p>
|
|
3550
3550
|
* @public
|
|
@@ -3561,18 +3561,18 @@ export interface PutImageRequest {
|
|
|
3561
3561
|
* <code>imageManifestMediaType</code> in the request.</p>
|
|
3562
3562
|
* @public
|
|
3563
3563
|
*/
|
|
3564
|
-
imageManifestMediaType?: string;
|
|
3564
|
+
imageManifestMediaType?: string | undefined;
|
|
3565
3565
|
/**
|
|
3566
3566
|
* <p>The tag to associate with the image. This parameter is required for images that use
|
|
3567
3567
|
* the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.</p>
|
|
3568
3568
|
* @public
|
|
3569
3569
|
*/
|
|
3570
|
-
imageTag?: string;
|
|
3570
|
+
imageTag?: string | undefined;
|
|
3571
3571
|
/**
|
|
3572
3572
|
* <p>The image digest of the image manifest corresponding to the image.</p>
|
|
3573
3573
|
* @public
|
|
3574
3574
|
*/
|
|
3575
|
-
imageDigest?: string;
|
|
3575
|
+
imageDigest?: string | undefined;
|
|
3576
3576
|
}
|
|
3577
3577
|
/**
|
|
3578
3578
|
* @public
|
|
@@ -3582,7 +3582,7 @@ export interface PutImageResponse {
|
|
|
3582
3582
|
* <p>Details of the image uploaded.</p>
|
|
3583
3583
|
* @public
|
|
3584
3584
|
*/
|
|
3585
|
-
image?: Image;
|
|
3585
|
+
image?: Image | undefined;
|
|
3586
3586
|
}
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The manifest list is referencing an image that does not exist.</p>
|
|
@@ -3606,7 +3606,7 @@ export interface PutImageScanningConfigurationRequest {
|
|
|
3606
3606
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
3607
3607
|
* @public
|
|
3608
3608
|
*/
|
|
3609
|
-
registryId?: string;
|
|
3609
|
+
registryId?: string | undefined;
|
|
3610
3610
|
/**
|
|
3611
3611
|
* <p>The name of the repository in which to update the image scanning configuration
|
|
3612
3612
|
* setting.</p>
|
|
@@ -3629,17 +3629,17 @@ export interface PutImageScanningConfigurationResponse {
|
|
|
3629
3629
|
* <p>The registry ID associated with the request.</p>
|
|
3630
3630
|
* @public
|
|
3631
3631
|
*/
|
|
3632
|
-
registryId?: string;
|
|
3632
|
+
registryId?: string | undefined;
|
|
3633
3633
|
/**
|
|
3634
3634
|
* <p>The repository name associated with the request.</p>
|
|
3635
3635
|
* @public
|
|
3636
3636
|
*/
|
|
3637
|
-
repositoryName?: string;
|
|
3637
|
+
repositoryName?: string | undefined;
|
|
3638
3638
|
/**
|
|
3639
3639
|
* <p>The image scanning configuration setting for the repository.</p>
|
|
3640
3640
|
* @public
|
|
3641
3641
|
*/
|
|
3642
|
-
imageScanningConfiguration?: ImageScanningConfiguration;
|
|
3642
|
+
imageScanningConfiguration?: ImageScanningConfiguration | undefined;
|
|
3643
3643
|
}
|
|
3644
3644
|
/**
|
|
3645
3645
|
* @public
|
|
@@ -3650,7 +3650,7 @@ export interface PutImageTagMutabilityRequest {
|
|
|
3650
3650
|
* which to update the image tag mutability settings. If you do not specify a registry, the default registry is assumed.</p>
|
|
3651
3651
|
* @public
|
|
3652
3652
|
*/
|
|
3653
|
-
registryId?: string;
|
|
3653
|
+
registryId?: string | undefined;
|
|
3654
3654
|
/**
|
|
3655
3655
|
* <p>The name of the repository in which to update the image tag mutability
|
|
3656
3656
|
* settings.</p>
|
|
@@ -3674,17 +3674,17 @@ export interface PutImageTagMutabilityResponse {
|
|
|
3674
3674
|
* <p>The registry ID associated with the request.</p>
|
|
3675
3675
|
* @public
|
|
3676
3676
|
*/
|
|
3677
|
-
registryId?: string;
|
|
3677
|
+
registryId?: string | undefined;
|
|
3678
3678
|
/**
|
|
3679
3679
|
* <p>The repository name associated with the request.</p>
|
|
3680
3680
|
* @public
|
|
3681
3681
|
*/
|
|
3682
|
-
repositoryName?: string;
|
|
3682
|
+
repositoryName?: string | undefined;
|
|
3683
3683
|
/**
|
|
3684
3684
|
* <p>The image tag mutability setting for the repository.</p>
|
|
3685
3685
|
* @public
|
|
3686
3686
|
*/
|
|
3687
|
-
imageTagMutability?: ImageTagMutability;
|
|
3687
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
3688
3688
|
}
|
|
3689
3689
|
/**
|
|
3690
3690
|
* @public
|
|
@@ -3696,7 +3696,7 @@ export interface PutLifecyclePolicyRequest {
|
|
|
3696
3696
|
not specify a registry, the default registry is assumed.</p>
|
|
3697
3697
|
* @public
|
|
3698
3698
|
*/
|
|
3699
|
-
registryId?: string;
|
|
3699
|
+
registryId?: string | undefined;
|
|
3700
3700
|
/**
|
|
3701
3701
|
* <p>The name of the repository to receive the policy.</p>
|
|
3702
3702
|
* @public
|
|
@@ -3716,17 +3716,17 @@ export interface PutLifecyclePolicyResponse {
|
|
|
3716
3716
|
* <p>The registry ID associated with the request.</p>
|
|
3717
3717
|
* @public
|
|
3718
3718
|
*/
|
|
3719
|
-
registryId?: string;
|
|
3719
|
+
registryId?: string | undefined;
|
|
3720
3720
|
/**
|
|
3721
3721
|
* <p>The repository name associated with the request.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
repositoryName?: string;
|
|
3724
|
+
repositoryName?: string | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p>The JSON repository policy text.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
lifecyclePolicyText?: string;
|
|
3729
|
+
lifecyclePolicyText?: string | undefined;
|
|
3730
3730
|
}
|
|
3731
3731
|
/**
|
|
3732
3732
|
* @public
|
|
@@ -3748,12 +3748,12 @@ export interface PutRegistryPolicyResponse {
|
|
|
3748
3748
|
* <p>The registry ID associated with the request.</p>
|
|
3749
3749
|
* @public
|
|
3750
3750
|
*/
|
|
3751
|
-
registryId?: string;
|
|
3751
|
+
registryId?: string | undefined;
|
|
3752
3752
|
/**
|
|
3753
3753
|
* <p>The JSON policy text for your registry.</p>
|
|
3754
3754
|
* @public
|
|
3755
3755
|
*/
|
|
3756
|
-
policyText?: string;
|
|
3756
|
+
policyText?: string | undefined;
|
|
3757
3757
|
}
|
|
3758
3758
|
/**
|
|
3759
3759
|
* @public
|
|
@@ -3772,13 +3772,13 @@ export interface PutRegistryScanningConfigurationRequest {
|
|
|
3772
3772
|
* are scanned.</p>
|
|
3773
3773
|
* @public
|
|
3774
3774
|
*/
|
|
3775
|
-
scanType?: ScanType;
|
|
3775
|
+
scanType?: ScanType | undefined;
|
|
3776
3776
|
/**
|
|
3777
3777
|
* <p>The scanning rules to use for the registry. A scanning rule is used to determine which
|
|
3778
3778
|
* repository filters are used and at what frequency scanning will occur.</p>
|
|
3779
3779
|
* @public
|
|
3780
3780
|
*/
|
|
3781
|
-
rules?: RegistryScanningRule[];
|
|
3781
|
+
rules?: RegistryScanningRule[] | undefined;
|
|
3782
3782
|
}
|
|
3783
3783
|
/**
|
|
3784
3784
|
* @public
|
|
@@ -3788,7 +3788,7 @@ export interface PutRegistryScanningConfigurationResponse {
|
|
|
3788
3788
|
* <p>The scanning configuration for your registry.</p>
|
|
3789
3789
|
* @public
|
|
3790
3790
|
*/
|
|
3791
|
-
registryScanningConfiguration?: RegistryScanningConfiguration;
|
|
3791
|
+
registryScanningConfiguration?: RegistryScanningConfiguration | undefined;
|
|
3792
3792
|
}
|
|
3793
3793
|
/**
|
|
3794
3794
|
* @public
|
|
@@ -3808,7 +3808,7 @@ export interface PutReplicationConfigurationResponse {
|
|
|
3808
3808
|
* <p>The contents of the replication configuration for the registry.</p>
|
|
3809
3809
|
* @public
|
|
3810
3810
|
*/
|
|
3811
|
-
replicationConfiguration?: ReplicationConfiguration;
|
|
3811
|
+
replicationConfiguration?: ReplicationConfiguration | undefined;
|
|
3812
3812
|
}
|
|
3813
3813
|
/**
|
|
3814
3814
|
* @public
|
|
@@ -3819,7 +3819,7 @@ export interface SetRepositoryPolicyRequest {
|
|
|
3819
3819
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
3820
3820
|
* @public
|
|
3821
3821
|
*/
|
|
3822
|
-
registryId?: string;
|
|
3822
|
+
registryId?: string | undefined;
|
|
3823
3823
|
/**
|
|
3824
3824
|
* <p>The name of the repository to receive the policy.</p>
|
|
3825
3825
|
* @public
|
|
@@ -3838,7 +3838,7 @@ export interface SetRepositoryPolicyRequest {
|
|
|
3838
3838
|
* repository lock outs.</p>
|
|
3839
3839
|
* @public
|
|
3840
3840
|
*/
|
|
3841
|
-
force?: boolean;
|
|
3841
|
+
force?: boolean | undefined;
|
|
3842
3842
|
}
|
|
3843
3843
|
/**
|
|
3844
3844
|
* @public
|
|
@@ -3848,17 +3848,17 @@ export interface SetRepositoryPolicyResponse {
|
|
|
3848
3848
|
* <p>The registry ID associated with the request.</p>
|
|
3849
3849
|
* @public
|
|
3850
3850
|
*/
|
|
3851
|
-
registryId?: string;
|
|
3851
|
+
registryId?: string | undefined;
|
|
3852
3852
|
/**
|
|
3853
3853
|
* <p>The repository name associated with the request.</p>
|
|
3854
3854
|
* @public
|
|
3855
3855
|
*/
|
|
3856
|
-
repositoryName?: string;
|
|
3856
|
+
repositoryName?: string | undefined;
|
|
3857
3857
|
/**
|
|
3858
3858
|
* <p>The JSON repository policy text applied to the repository.</p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
policyText?: string;
|
|
3861
|
+
policyText?: string | undefined;
|
|
3862
3862
|
}
|
|
3863
3863
|
/**
|
|
3864
3864
|
* @public
|
|
@@ -3869,7 +3869,7 @@ export interface StartImageScanRequest {
|
|
|
3869
3869
|
* which to start an image scan request. If you do not specify a registry, the default registry is assumed.</p>
|
|
3870
3870
|
* @public
|
|
3871
3871
|
*/
|
|
3872
|
-
registryId?: string;
|
|
3872
|
+
registryId?: string | undefined;
|
|
3873
3873
|
/**
|
|
3874
3874
|
* <p>The name of the repository that contains the images to scan.</p>
|
|
3875
3875
|
* @public
|
|
@@ -3889,22 +3889,22 @@ export interface StartImageScanResponse {
|
|
|
3889
3889
|
* <p>The registry ID associated with the request.</p>
|
|
3890
3890
|
* @public
|
|
3891
3891
|
*/
|
|
3892
|
-
registryId?: string;
|
|
3892
|
+
registryId?: string | undefined;
|
|
3893
3893
|
/**
|
|
3894
3894
|
* <p>The repository name associated with the request.</p>
|
|
3895
3895
|
* @public
|
|
3896
3896
|
*/
|
|
3897
|
-
repositoryName?: string;
|
|
3897
|
+
repositoryName?: string | undefined;
|
|
3898
3898
|
/**
|
|
3899
3899
|
* <p>An object with identifying information for an image in an Amazon ECR repository.</p>
|
|
3900
3900
|
* @public
|
|
3901
3901
|
*/
|
|
3902
|
-
imageId?: ImageIdentifier;
|
|
3902
|
+
imageId?: ImageIdentifier | undefined;
|
|
3903
3903
|
/**
|
|
3904
3904
|
* <p>The current state of the scan.</p>
|
|
3905
3905
|
* @public
|
|
3906
3906
|
*/
|
|
3907
|
-
imageScanStatus?: ImageScanStatus;
|
|
3907
|
+
imageScanStatus?: ImageScanStatus | undefined;
|
|
3908
3908
|
}
|
|
3909
3909
|
/**
|
|
3910
3910
|
* <p>The image is of a type that cannot be scanned.</p>
|
|
@@ -3940,7 +3940,7 @@ export interface StartLifecyclePolicyPreviewRequest {
|
|
|
3940
3940
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
3941
3941
|
* @public
|
|
3942
3942
|
*/
|
|
3943
|
-
registryId?: string;
|
|
3943
|
+
registryId?: string | undefined;
|
|
3944
3944
|
/**
|
|
3945
3945
|
* <p>The name of the repository to be evaluated.</p>
|
|
3946
3946
|
* @public
|
|
@@ -3951,7 +3951,7 @@ export interface StartLifecyclePolicyPreviewRequest {
|
|
|
3951
3951
|
* for the repository is used.</p>
|
|
3952
3952
|
* @public
|
|
3953
3953
|
*/
|
|
3954
|
-
lifecyclePolicyText?: string;
|
|
3954
|
+
lifecyclePolicyText?: string | undefined;
|
|
3955
3955
|
}
|
|
3956
3956
|
/**
|
|
3957
3957
|
* @public
|
|
@@ -3961,22 +3961,22 @@ export interface StartLifecyclePolicyPreviewResponse {
|
|
|
3961
3961
|
* <p>The registry ID associated with the request.</p>
|
|
3962
3962
|
* @public
|
|
3963
3963
|
*/
|
|
3964
|
-
registryId?: string;
|
|
3964
|
+
registryId?: string | undefined;
|
|
3965
3965
|
/**
|
|
3966
3966
|
* <p>The repository name associated with the request.</p>
|
|
3967
3967
|
* @public
|
|
3968
3968
|
*/
|
|
3969
|
-
repositoryName?: string;
|
|
3969
|
+
repositoryName?: string | undefined;
|
|
3970
3970
|
/**
|
|
3971
3971
|
* <p>The JSON repository policy text.</p>
|
|
3972
3972
|
* @public
|
|
3973
3973
|
*/
|
|
3974
|
-
lifecyclePolicyText?: string;
|
|
3974
|
+
lifecyclePolicyText?: string | undefined;
|
|
3975
3975
|
/**
|
|
3976
3976
|
* <p>The status of the lifecycle policy preview request.</p>
|
|
3977
3977
|
* @public
|
|
3978
3978
|
*/
|
|
3979
|
-
status?: LifecyclePolicyPreviewStatus;
|
|
3979
|
+
status?: LifecyclePolicyPreviewStatus | undefined;
|
|
3980
3980
|
}
|
|
3981
3981
|
/**
|
|
3982
3982
|
* @public
|
|
@@ -4031,7 +4031,7 @@ export interface UpdatePullThroughCacheRuleRequest {
|
|
|
4031
4031
|
* cache rule. If you do not specify a registry, the default registry is assumed.</p>
|
|
4032
4032
|
* @public
|
|
4033
4033
|
*/
|
|
4034
|
-
registryId?: string;
|
|
4034
|
+
registryId?: string | undefined;
|
|
4035
4035
|
/**
|
|
4036
4036
|
* <p>The repository name prefix to use when caching images from the source registry.</p>
|
|
4037
4037
|
* @public
|
|
@@ -4052,24 +4052,24 @@ export interface UpdatePullThroughCacheRuleResponse {
|
|
|
4052
4052
|
* <p>The Amazon ECR repository prefix associated with the pull through cache rule.</p>
|
|
4053
4053
|
* @public
|
|
4054
4054
|
*/
|
|
4055
|
-
ecrRepositoryPrefix?: string;
|
|
4055
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
4056
4056
|
/**
|
|
4057
4057
|
* <p>The registry ID associated with the request.</p>
|
|
4058
4058
|
* @public
|
|
4059
4059
|
*/
|
|
4060
|
-
registryId?: string;
|
|
4060
|
+
registryId?: string | undefined;
|
|
4061
4061
|
/**
|
|
4062
4062
|
* <p>The date and time, in JavaScript date format, when the pull through cache rule was
|
|
4063
4063
|
* updated.</p>
|
|
4064
4064
|
* @public
|
|
4065
4065
|
*/
|
|
4066
|
-
updatedAt?: Date;
|
|
4066
|
+
updatedAt?: Date | undefined;
|
|
4067
4067
|
/**
|
|
4068
4068
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache
|
|
4069
4069
|
* rule.</p>
|
|
4070
4070
|
* @public
|
|
4071
4071
|
*/
|
|
4072
|
-
credentialArn?: string;
|
|
4072
|
+
credentialArn?: string | undefined;
|
|
4073
4073
|
}
|
|
4074
4074
|
/**
|
|
4075
4075
|
* @public
|
|
@@ -4091,20 +4091,20 @@ export interface UpdateRepositoryCreationTemplateRequest {
|
|
|
4091
4091
|
* <p>A description for the repository creation template.</p>
|
|
4092
4092
|
* @public
|
|
4093
4093
|
*/
|
|
4094
|
-
description?: string;
|
|
4094
|
+
description?: string | undefined;
|
|
4095
4095
|
/**
|
|
4096
4096
|
* <p>The encryption configuration to associate with the repository creation
|
|
4097
4097
|
* template.</p>
|
|
4098
4098
|
* @public
|
|
4099
4099
|
*/
|
|
4100
|
-
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate;
|
|
4100
|
+
encryptionConfiguration?: EncryptionConfigurationForRepositoryCreationTemplate | undefined;
|
|
4101
4101
|
/**
|
|
4102
4102
|
* <p>The metadata to apply to the repository to help you categorize and organize. Each tag
|
|
4103
4103
|
* consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have
|
|
4104
4104
|
* a maximum length of 256 characters.</p>
|
|
4105
4105
|
* @public
|
|
4106
4106
|
*/
|
|
4107
|
-
resourceTags?: Tag[];
|
|
4107
|
+
resourceTags?: Tag[] | undefined;
|
|
4108
4108
|
/**
|
|
4109
4109
|
* <p>Updates the tag mutability setting for the repository. If this parameter is omitted,
|
|
4110
4110
|
* the default setting of <code>MUTABLE</code> will be used which will allow image tags to
|
|
@@ -4112,19 +4112,19 @@ export interface UpdateRepositoryCreationTemplateRequest {
|
|
|
4112
4112
|
* repository will be immutable which will prevent them from being overwritten.</p>
|
|
4113
4113
|
* @public
|
|
4114
4114
|
*/
|
|
4115
|
-
imageTagMutability?: ImageTagMutability;
|
|
4115
|
+
imageTagMutability?: ImageTagMutability | undefined;
|
|
4116
4116
|
/**
|
|
4117
4117
|
* <p>Updates the repository policy created using the template. A repository policy is a
|
|
4118
4118
|
* permissions policy associated with a repository to control access permissions. </p>
|
|
4119
4119
|
* @public
|
|
4120
4120
|
*/
|
|
4121
|
-
repositoryPolicy?: string;
|
|
4121
|
+
repositoryPolicy?: string | undefined;
|
|
4122
4122
|
/**
|
|
4123
4123
|
* <p>Updates the lifecycle policy associated with the specified repository creation
|
|
4124
4124
|
* template.</p>
|
|
4125
4125
|
* @public
|
|
4126
4126
|
*/
|
|
4127
|
-
lifecyclePolicy?: string;
|
|
4127
|
+
lifecyclePolicy?: string | undefined;
|
|
4128
4128
|
/**
|
|
4129
4129
|
* <p>Updates the list of enumerable strings representing the Amazon ECR repository creation
|
|
4130
4130
|
* scenarios that this template will apply towards. The two supported scenarios are
|
|
@@ -4132,7 +4132,7 @@ export interface UpdateRepositoryCreationTemplateRequest {
|
|
|
4132
4132
|
* </p>
|
|
4133
4133
|
* @public
|
|
4134
4134
|
*/
|
|
4135
|
-
appliedFor?: RCTAppliedFor[];
|
|
4135
|
+
appliedFor?: RCTAppliedFor[] | undefined;
|
|
4136
4136
|
/**
|
|
4137
4137
|
* <p>The ARN of the role to be assumed by Amazon ECR. This role must be in the same account as
|
|
4138
4138
|
* the registry that you are configuring. Amazon ECR will assume your supplied role when the
|
|
@@ -4140,7 +4140,7 @@ export interface UpdateRepositoryCreationTemplateRequest {
|
|
|
4140
4140
|
* service-linked role for the repository creation template.</p>
|
|
4141
4141
|
* @public
|
|
4142
4142
|
*/
|
|
4143
|
-
customRoleArn?: string;
|
|
4143
|
+
customRoleArn?: string | undefined;
|
|
4144
4144
|
}
|
|
4145
4145
|
/**
|
|
4146
4146
|
* @public
|
|
@@ -4150,12 +4150,12 @@ export interface UpdateRepositoryCreationTemplateResponse {
|
|
|
4150
4150
|
* <p>The registry ID associated with the request.</p>
|
|
4151
4151
|
* @public
|
|
4152
4152
|
*/
|
|
4153
|
-
registryId?: string;
|
|
4153
|
+
registryId?: string | undefined;
|
|
4154
4154
|
/**
|
|
4155
4155
|
* <p>The details of the repository creation template associated with the request.</p>
|
|
4156
4156
|
* @public
|
|
4157
4157
|
*/
|
|
4158
|
-
repositoryCreationTemplate?: RepositoryCreationTemplate;
|
|
4158
|
+
repositoryCreationTemplate?: RepositoryCreationTemplate | undefined;
|
|
4159
4159
|
}
|
|
4160
4160
|
/**
|
|
4161
4161
|
* <p>The layer part size is not valid, or the first byte specified is not consecutive to
|
|
@@ -4169,23 +4169,23 @@ export declare class InvalidLayerPartException extends __BaseException {
|
|
|
4169
4169
|
* <p>The registry ID associated with the exception.</p>
|
|
4170
4170
|
* @public
|
|
4171
4171
|
*/
|
|
4172
|
-
registryId?: string;
|
|
4172
|
+
registryId?: string | undefined;
|
|
4173
4173
|
/**
|
|
4174
4174
|
* <p>The repository name associated with the exception.</p>
|
|
4175
4175
|
* @public
|
|
4176
4176
|
*/
|
|
4177
|
-
repositoryName?: string;
|
|
4177
|
+
repositoryName?: string | undefined;
|
|
4178
4178
|
/**
|
|
4179
4179
|
* <p>The upload ID associated with the exception.</p>
|
|
4180
4180
|
* @public
|
|
4181
4181
|
*/
|
|
4182
|
-
uploadId?: string;
|
|
4182
|
+
uploadId?: string | undefined;
|
|
4183
4183
|
/**
|
|
4184
4184
|
* <p>The last valid byte received from the layer part upload that is associated with the
|
|
4185
4185
|
* exception.</p>
|
|
4186
4186
|
* @public
|
|
4187
4187
|
*/
|
|
4188
|
-
lastValidByteReceived?: number;
|
|
4188
|
+
lastValidByteReceived?: number | undefined;
|
|
4189
4189
|
/**
|
|
4190
4190
|
* @internal
|
|
4191
4191
|
*/
|
|
@@ -4200,7 +4200,7 @@ export interface UploadLayerPartRequest {
|
|
|
4200
4200
|
* parts. If you do not specify a registry, the default registry is assumed.</p>
|
|
4201
4201
|
* @public
|
|
4202
4202
|
*/
|
|
4203
|
-
registryId?: string;
|
|
4203
|
+
registryId?: string | undefined;
|
|
4204
4204
|
/**
|
|
4205
4205
|
* <p>The name of the repository to which you are uploading layer parts.</p>
|
|
4206
4206
|
* @public
|
|
@@ -4236,22 +4236,22 @@ export interface UploadLayerPartResponse {
|
|
|
4236
4236
|
* <p>The registry ID associated with the request.</p>
|
|
4237
4237
|
* @public
|
|
4238
4238
|
*/
|
|
4239
|
-
registryId?: string;
|
|
4239
|
+
registryId?: string | undefined;
|
|
4240
4240
|
/**
|
|
4241
4241
|
* <p>The repository name associated with the request.</p>
|
|
4242
4242
|
* @public
|
|
4243
4243
|
*/
|
|
4244
|
-
repositoryName?: string;
|
|
4244
|
+
repositoryName?: string | undefined;
|
|
4245
4245
|
/**
|
|
4246
4246
|
* <p>The upload ID associated with the request.</p>
|
|
4247
4247
|
* @public
|
|
4248
4248
|
*/
|
|
4249
|
-
uploadId?: string;
|
|
4249
|
+
uploadId?: string | undefined;
|
|
4250
4250
|
/**
|
|
4251
4251
|
* <p>The integer value of the last byte received in the request.</p>
|
|
4252
4252
|
* @public
|
|
4253
4253
|
*/
|
|
4254
|
-
lastByteReceived?: number;
|
|
4254
|
+
lastByteReceived?: number | undefined;
|
|
4255
4255
|
}
|
|
4256
4256
|
/**
|
|
4257
4257
|
* @public
|
|
@@ -4267,7 +4267,7 @@ export interface ValidatePullThroughCacheRuleRequest {
|
|
|
4267
4267
|
* If you do not specify a registry, the default registry is assumed.</p>
|
|
4268
4268
|
* @public
|
|
4269
4269
|
*/
|
|
4270
|
-
registryId?: string;
|
|
4270
|
+
registryId?: string | undefined;
|
|
4271
4271
|
}
|
|
4272
4272
|
/**
|
|
4273
4273
|
* @public
|
|
@@ -4277,23 +4277,23 @@ export interface ValidatePullThroughCacheRuleResponse {
|
|
|
4277
4277
|
* <p>The Amazon ECR repository prefix associated with the pull through cache rule.</p>
|
|
4278
4278
|
* @public
|
|
4279
4279
|
*/
|
|
4280
|
-
ecrRepositoryPrefix?: string;
|
|
4280
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
4281
4281
|
/**
|
|
4282
4282
|
* <p>The registry ID associated with the request.</p>
|
|
4283
4283
|
* @public
|
|
4284
4284
|
*/
|
|
4285
|
-
registryId?: string;
|
|
4285
|
+
registryId?: string | undefined;
|
|
4286
4286
|
/**
|
|
4287
4287
|
* <p>The upstream registry URL associated with the pull through cache rule.</p>
|
|
4288
4288
|
* @public
|
|
4289
4289
|
*/
|
|
4290
|
-
upstreamRegistryUrl?: string;
|
|
4290
|
+
upstreamRegistryUrl?: string | undefined;
|
|
4291
4291
|
/**
|
|
4292
4292
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache
|
|
4293
4293
|
* rule.</p>
|
|
4294
4294
|
* @public
|
|
4295
4295
|
*/
|
|
4296
|
-
credentialArn?: string;
|
|
4296
|
+
credentialArn?: string | undefined;
|
|
4297
4297
|
/**
|
|
4298
4298
|
* <p>Whether or not the pull through cache rule was validated. If <code>true</code>, Amazon ECR
|
|
4299
4299
|
* was able to reach the upstream registry and authentication was successful. If
|
|
@@ -4301,12 +4301,12 @@ export interface ValidatePullThroughCacheRuleResponse {
|
|
|
4301
4301
|
* <code>failure</code> reason indicates the cause.</p>
|
|
4302
4302
|
* @public
|
|
4303
4303
|
*/
|
|
4304
|
-
isValid?: boolean;
|
|
4304
|
+
isValid?: boolean | undefined;
|
|
4305
4305
|
/**
|
|
4306
4306
|
* <p>The reason the validation failed. For more details about possible causes and how to
|
|
4307
4307
|
* address them, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/pull-through-cache.html">Using pull through cache
|
|
4308
4308
|
* rules</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
4309
4309
|
* @public
|
|
4310
4310
|
*/
|
|
4311
|
-
failure?: string;
|
|
4311
|
+
failure?: string | undefined;
|
|
4312
4312
|
}
|