@aws-sdk/client-ecr-public 3.687.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.
@@ -11,13 +11,13 @@ export interface AuthorizationData {
11
11
  * public registry authentication using <code>docker login</code>.</p>
12
12
  * @public
13
13
  */
14
- authorizationToken?: string;
14
+ authorizationToken?: string | undefined;
15
15
  /**
16
16
  * <p>The Unix time in seconds and milliseconds when the authorization token expires.
17
17
  * Authorization tokens are valid for 12 hours.</p>
18
18
  * @public
19
19
  */
20
- expiresAt?: Date;
20
+ expiresAt?: Date | undefined;
21
21
  }
22
22
  /**
23
23
  * @public
@@ -28,7 +28,7 @@ export interface BatchCheckLayerAvailabilityRequest {
28
28
  * contains the image layers to check. If you do not specify a registry, the default public registry is assumed.</p>
29
29
  * @public
30
30
  */
31
- registryId?: string;
31
+ registryId?: string | undefined;
32
32
  /**
33
33
  * <p>The name of the repository that's associated with the image layers to check.</p>
34
34
  * @public
@@ -61,17 +61,17 @@ export interface LayerFailure {
61
61
  * <p>The layer digest that's associated with the failure.</p>
62
62
  * @public
63
63
  */
64
- layerDigest?: string;
64
+ layerDigest?: string | undefined;
65
65
  /**
66
66
  * <p>The failure code that's associated with the failure.</p>
67
67
  * @public
68
68
  */
69
- failureCode?: LayerFailureCode;
69
+ failureCode?: LayerFailureCode | undefined;
70
70
  /**
71
71
  * <p>The reason for the failure.</p>
72
72
  * @public
73
73
  */
74
- failureReason?: string;
74
+ failureReason?: string | undefined;
75
75
  }
76
76
  /**
77
77
  * @public
@@ -94,24 +94,24 @@ export interface Layer {
94
94
  * <p>The <code>sha256</code> digest of the image layer.</p>
95
95
  * @public
96
96
  */
97
- layerDigest?: string;
97
+ layerDigest?: string | undefined;
98
98
  /**
99
99
  * <p>The availability status of the image layer.</p>
100
100
  * @public
101
101
  */
102
- layerAvailability?: LayerAvailability;
102
+ layerAvailability?: LayerAvailability | undefined;
103
103
  /**
104
104
  * <p>The size, in bytes, of the image layer.</p>
105
105
  * @public
106
106
  */
107
- layerSize?: number;
107
+ layerSize?: number | undefined;
108
108
  /**
109
109
  * <p>The media type of the layer, such as
110
110
  * <code>application/vnd.docker.image.rootfs.diff.tar.gzip</code> or
111
111
  * <code>application/vnd.oci.image.layer.v1.tar+gzip</code>.</p>
112
112
  * @public
113
113
  */
114
- mediaType?: string;
114
+ mediaType?: string | undefined;
115
115
  }
116
116
  /**
117
117
  * @public
@@ -122,12 +122,12 @@ export interface BatchCheckLayerAvailabilityResponse {
122
122
  * request.</p>
123
123
  * @public
124
124
  */
125
- layers?: Layer[];
125
+ layers?: Layer[] | undefined;
126
126
  /**
127
127
  * <p>Any failures associated with the call.</p>
128
128
  * @public
129
129
  */
130
- failures?: LayerFailure[];
130
+ failures?: LayerFailure[] | undefined;
131
131
  }
132
132
  /**
133
133
  * <p>The specified parameter is invalid. Review the available parameters for the API
@@ -200,12 +200,12 @@ export interface ImageIdentifier {
200
200
  * <p>The <code>sha256</code> digest of the image manifest.</p>
201
201
  * @public
202
202
  */
203
- imageDigest?: string;
203
+ imageDigest?: string | undefined;
204
204
  /**
205
205
  * <p>The tag that's used for the image.</p>
206
206
  * @public
207
207
  */
208
- imageTag?: string;
208
+ imageTag?: string | undefined;
209
209
  }
210
210
  /**
211
211
  * @public
@@ -216,7 +216,7 @@ export interface BatchDeleteImageRequest {
216
216
  * contains the image to delete. If you do not specify a registry, the default public registry is assumed.</p>
217
217
  * @public
218
218
  */
219
- registryId?: string;
219
+ registryId?: string | undefined;
220
220
  /**
221
221
  * <p>The repository in a public registry that contains the image to delete.</p>
222
222
  * @public
@@ -256,17 +256,17 @@ export interface ImageFailure {
256
256
  * <p>The image ID that's associated with the failure.</p>
257
257
  * @public
258
258
  */
259
- imageId?: ImageIdentifier;
259
+ imageId?: ImageIdentifier | undefined;
260
260
  /**
261
261
  * <p>The code that's associated with the failure.</p>
262
262
  * @public
263
263
  */
264
- failureCode?: ImageFailureCode;
264
+ failureCode?: ImageFailureCode | undefined;
265
265
  /**
266
266
  * <p>The reason for the failure.</p>
267
267
  * @public
268
268
  */
269
- failureReason?: string;
269
+ failureReason?: string | undefined;
270
270
  }
271
271
  /**
272
272
  * @public
@@ -276,12 +276,12 @@ export interface BatchDeleteImageResponse {
276
276
  * <p>The image IDs of the deleted images.</p>
277
277
  * @public
278
278
  */
279
- imageIds?: ImageIdentifier[];
279
+ imageIds?: ImageIdentifier[] | undefined;
280
280
  /**
281
281
  * <p>Any failures associated with the call.</p>
282
282
  * @public
283
283
  */
284
- failures?: ImageFailure[];
284
+ failures?: ImageFailure[] | undefined;
285
285
  }
286
286
  /**
287
287
  * @public
@@ -292,7 +292,7 @@ export interface CompleteLayerUploadRequest {
292
292
  * uploaded. If you do not specify a registry, the default public registry is assumed.</p>
293
293
  * @public
294
294
  */
295
- registryId?: string;
295
+ registryId?: string | undefined;
296
296
  /**
297
297
  * <p>The name of the repository in a public registry to associate with the image
298
298
  * layer.</p>
@@ -319,22 +319,22 @@ export interface CompleteLayerUploadResponse {
319
319
  * <p>The public registry ID that's associated with the request.</p>
320
320
  * @public
321
321
  */
322
- registryId?: string;
322
+ registryId?: string | undefined;
323
323
  /**
324
324
  * <p>The repository name that's associated with the request.</p>
325
325
  * @public
326
326
  */
327
- repositoryName?: string;
327
+ repositoryName?: string | undefined;
328
328
  /**
329
329
  * <p>The upload ID that's associated with the layer.</p>
330
330
  * @public
331
331
  */
332
- uploadId?: string;
332
+ uploadId?: string | undefined;
333
333
  /**
334
334
  * <p>The <code>sha256</code> digest of the image layer.</p>
335
335
  * @public
336
336
  */
337
- layerDigest?: string;
337
+ layerDigest?: string | undefined;
338
338
  }
339
339
  /**
340
340
  * <p>The specified layer upload doesn't contain any layer parts.</p>
@@ -409,7 +409,7 @@ export interface RepositoryCatalogDataInput {
409
409
  * image details and also when searching for repositories on the Amazon ECR Public Gallery.</p>
410
410
  * @public
411
411
  */
412
- description?: string;
412
+ description?: string | undefined;
413
413
  /**
414
414
  * <p>The system architecture that the images in the repository are compatible with. On the
415
415
  * Amazon ECR Public Gallery, the following supported architectures appear as badges on the
@@ -443,7 +443,7 @@ export interface RepositoryCatalogDataInput {
443
443
  * </ul>
444
444
  * @public
445
445
  */
446
- architectures?: string[];
446
+ architectures?: string[] | undefined;
447
447
  /**
448
448
  * <p>The operating systems that the images in the repository are compatible with. On the
449
449
  * Amazon ECR Public Gallery, the following supported operating systems appear as badges on the
@@ -467,7 +467,7 @@ export interface RepositoryCatalogDataInput {
467
467
  * </ul>
468
468
  * @public
469
469
  */
470
- operatingSystems?: string[];
470
+ operatingSystems?: string[] | undefined;
471
471
  /**
472
472
  * <p>The base64-encoded repository logo payload.</p>
473
473
  * <note>
@@ -476,13 +476,13 @@ export interface RepositoryCatalogDataInput {
476
476
  * </note>
477
477
  * @public
478
478
  */
479
- logoImageBlob?: Uint8Array;
479
+ logoImageBlob?: Uint8Array | undefined;
480
480
  /**
481
481
  * <p>A detailed description of the contents of the repository. It's publicly visible in the
482
482
  * Amazon ECR Public Gallery. The text must be in markdown format.</p>
483
483
  * @public
484
484
  */
485
- aboutText?: string;
485
+ aboutText?: string | undefined;
486
486
  /**
487
487
  * <p>Detailed information about how to use the contents of the repository. It's publicly
488
488
  * visible in the Amazon ECR Public Gallery. The usage text provides context, support information,
@@ -490,7 +490,7 @@ export interface RepositoryCatalogDataInput {
490
490
  * format.</p>
491
491
  * @public
492
492
  */
493
- usageText?: string;
493
+ usageText?: string | undefined;
494
494
  }
495
495
  /**
496
496
  * <p>The metadata that you apply to a resource to help you categorize and organize them. Each
@@ -503,13 +503,13 @@ export interface Tag {
503
503
  * that acts like a category for more specific tag values.</p>
504
504
  * @public
505
505
  */
506
- Key?: string;
506
+ Key?: string | undefined;
507
507
  /**
508
508
  * <p>The optional part of a key-value pair that make up a tag. A <code>value</code> acts as a
509
509
  * descriptor within a tag category (key).</p>
510
510
  * @public
511
511
  */
512
- Value?: string;
512
+ Value?: string | undefined;
513
513
  }
514
514
  /**
515
515
  * @public
@@ -528,14 +528,14 @@ export interface CreateRepositoryRequest {
528
528
  * Amazon ECR Public Gallery.</p>
529
529
  * @public
530
530
  */
531
- catalogData?: RepositoryCatalogDataInput;
531
+ catalogData?: RepositoryCatalogDataInput | undefined;
532
532
  /**
533
533
  * <p>The metadata that you apply to each repository to help categorize and organize your
534
534
  * repositories. Each tag consists of a key and an optional value. You define both of them.
535
535
  * Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
536
536
  * @public
537
537
  */
538
- tags?: Tag[];
538
+ tags?: Tag[] | undefined;
539
539
  }
540
540
  /**
541
541
  * <p>The catalog data for a repository. This data is publicly visible in the
@@ -547,7 +547,7 @@ export interface RepositoryCatalogData {
547
547
  * <p>The short description of the repository.</p>
548
548
  * @public
549
549
  */
550
- description?: string;
550
+ description?: string | undefined;
551
551
  /**
552
552
  * <p>The architecture tags that are associated with the repository.</p>
553
553
  * <note>
@@ -556,7 +556,7 @@ export interface RepositoryCatalogData {
556
556
  * </note>
557
557
  * @public
558
558
  */
559
- architectures?: string[];
559
+ architectures?: string[] | undefined;
560
560
  /**
561
561
  * <p>The operating system tags that are associated with the repository.</p>
562
562
  * <note>
@@ -565,29 +565,29 @@ export interface RepositoryCatalogData {
565
565
  * </note>
566
566
  * @public
567
567
  */
568
- operatingSystems?: string[];
568
+ operatingSystems?: string[] | undefined;
569
569
  /**
570
570
  * <p>The URL that contains the logo that's associated with the repository.</p>
571
571
  * @public
572
572
  */
573
- logoUrl?: string;
573
+ logoUrl?: string | undefined;
574
574
  /**
575
575
  * <p>The longform description of the contents of the repository. This text appears in the
576
576
  * repository details on the Amazon ECR Public Gallery.</p>
577
577
  * @public
578
578
  */
579
- aboutText?: string;
579
+ aboutText?: string | undefined;
580
580
  /**
581
581
  * <p>The longform usage details of the contents of the repository. The usage text provides
582
582
  * context for users of the repository.</p>
583
583
  * @public
584
584
  */
585
- usageText?: string;
585
+ usageText?: string | undefined;
586
586
  /**
587
587
  * <p>Indicates whether the repository is certified by Amazon Web Services Marketplace.</p>
588
588
  * @public
589
589
  */
590
- marketplaceCertified?: boolean;
590
+ marketplaceCertified?: boolean | undefined;
591
591
  }
592
592
  /**
593
593
  * <p>An object representing a repository.</p>
@@ -598,29 +598,29 @@ export interface Repository {
598
598
  * <p>The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the <code>arn:aws:ecr</code> namespace, followed by the region of the repository, Amazon Web Services account ID of the repository owner, repository namespace, and repository name. For example, <code>arn:aws:ecr:region:012345678910:repository/test</code>.</p>
599
599
  * @public
600
600
  */
601
- repositoryArn?: string;
601
+ repositoryArn?: string | undefined;
602
602
  /**
603
603
  * <p>The Amazon Web Services account ID that's associated with the public registry that contains the
604
604
  * repository.</p>
605
605
  * @public
606
606
  */
607
- registryId?: string;
607
+ registryId?: string | undefined;
608
608
  /**
609
609
  * <p>The name of the repository.</p>
610
610
  * @public
611
611
  */
612
- repositoryName?: string;
612
+ repositoryName?: string | undefined;
613
613
  /**
614
614
  * <p>The URI for the repository. You can use this URI for container image <code>push</code>
615
615
  * and <code>pull</code> operations.</p>
616
616
  * @public
617
617
  */
618
- repositoryUri?: string;
618
+ repositoryUri?: string | undefined;
619
619
  /**
620
620
  * <p>The date and time, in JavaScript date format, when the repository was created.</p>
621
621
  * @public
622
622
  */
623
- createdAt?: Date;
623
+ createdAt?: Date | undefined;
624
624
  }
625
625
  /**
626
626
  * @public
@@ -630,13 +630,13 @@ export interface CreateRepositoryResponse {
630
630
  * <p>The repository that was created.</p>
631
631
  * @public
632
632
  */
633
- repository?: Repository;
633
+ repository?: Repository | undefined;
634
634
  /**
635
635
  * <p>The catalog data for a repository. This data is publicly visible in the
636
636
  * Amazon ECR Public Gallery.</p>
637
637
  * @public
638
638
  */
639
- catalogData?: RepositoryCatalogData;
639
+ catalogData?: RepositoryCatalogData | undefined;
640
640
  }
641
641
  /**
642
642
  * <p>An invalid parameter has been specified. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.</p>
@@ -698,7 +698,7 @@ export interface DeleteRepositoryRequest {
698
698
  * repository to delete. If you do not specify a registry, the default public registry is assumed.</p>
699
699
  * @public
700
700
  */
701
- registryId?: string;
701
+ registryId?: string | undefined;
702
702
  /**
703
703
  * <p>The name of the repository to delete.</p>
704
704
  * @public
@@ -709,7 +709,7 @@ export interface DeleteRepositoryRequest {
709
709
  * option is not used, the repository must be empty prior to deletion.</p>
710
710
  * @public
711
711
  */
712
- force?: boolean;
712
+ force?: boolean | undefined;
713
713
  }
714
714
  /**
715
715
  * @public
@@ -719,7 +719,7 @@ export interface DeleteRepositoryResponse {
719
719
  * <p>The repository that was deleted.</p>
720
720
  * @public
721
721
  */
722
- repository?: Repository;
722
+ repository?: Repository | undefined;
723
723
  }
724
724
  /**
725
725
  * <p>The specified repository contains images. To delete a repository that contains images,
@@ -743,7 +743,7 @@ export interface DeleteRepositoryPolicyRequest {
743
743
  * repository policy to delete. If you do not specify a registry, the default public registry is assumed.</p>
744
744
  * @public
745
745
  */
746
- registryId?: string;
746
+ registryId?: string | undefined;
747
747
  /**
748
748
  * <p>The name of the repository that's associated with the repository policy to
749
749
  * delete.</p>
@@ -759,17 +759,17 @@ export interface DeleteRepositoryPolicyResponse {
759
759
  * <p>The registry ID that's associated with the request.</p>
760
760
  * @public
761
761
  */
762
- registryId?: string;
762
+ registryId?: string | undefined;
763
763
  /**
764
764
  * <p>The repository name that's associated with the request.</p>
765
765
  * @public
766
766
  */
767
- repositoryName?: string;
767
+ repositoryName?: string | undefined;
768
768
  /**
769
769
  * <p>The JSON repository policy that was deleted from the repository.</p>
770
770
  * @public
771
771
  */
772
- policyText?: string;
772
+ policyText?: string | undefined;
773
773
  }
774
774
  /**
775
775
  * <p>The specified repository and registry combination doesn't have an associated repository
@@ -793,7 +793,7 @@ export interface DescribeImagesRequest {
793
793
  * repository where images are described. If you do not specify a registry, the default public registry is assumed.</p>
794
794
  * @public
795
795
  */
796
- registryId?: string;
796
+ registryId?: string | undefined;
797
797
  /**
798
798
  * <p>The repository that contains the images to describe.</p>
799
799
  * @public
@@ -803,7 +803,7 @@ export interface DescribeImagesRequest {
803
803
  * <p>The list of image IDs for the requested repository.</p>
804
804
  * @public
805
805
  */
806
- imageIds?: ImageIdentifier[];
806
+ imageIds?: ImageIdentifier[] | undefined;
807
807
  /**
808
808
  * <p>The <code>nextToken</code> value that's returned from a previous paginated
809
809
  * <code>DescribeImages</code> request where <code>maxResults</code> was used and the
@@ -813,7 +813,7 @@ export interface DescribeImagesRequest {
813
813
  * <code>imageIds</code>, you can't use this option.</p>
814
814
  * @public
815
815
  */
816
- nextToken?: string;
816
+ nextToken?: string | undefined;
817
817
  /**
818
818
  * <p>The maximum number of repository results that's returned by <code>DescribeImages</code>
819
819
  * in paginated output. When this parameter is used, <code>DescribeImages</code> only returns
@@ -826,7 +826,7 @@ export interface DescribeImagesRequest {
826
826
  * <code>imageIds</code>, you can't use this option.</p>
827
827
  * @public
828
828
  */
829
- maxResults?: number;
829
+ maxResults?: number | undefined;
830
830
  }
831
831
  /**
832
832
  * <p>An object that describes an image that's returned by a <a>DescribeImages</a>
@@ -839,22 +839,22 @@ export interface ImageDetail {
839
839
  * belongs.</p>
840
840
  * @public
841
841
  */
842
- registryId?: string;
842
+ registryId?: string | undefined;
843
843
  /**
844
844
  * <p>The name of the repository where this image belongs.</p>
845
845
  * @public
846
846
  */
847
- repositoryName?: string;
847
+ repositoryName?: string | undefined;
848
848
  /**
849
849
  * <p>The <code>sha256</code> digest of the image manifest.</p>
850
850
  * @public
851
851
  */
852
- imageDigest?: string;
852
+ imageDigest?: string | undefined;
853
853
  /**
854
854
  * <p>The list of tags that's associated with this image.</p>
855
855
  * @public
856
856
  */
857
- imageTags?: string[];
857
+ imageTags?: string[] | undefined;
858
858
  /**
859
859
  * <p>The size, in bytes, of the image in the repository.</p>
860
860
  * <p>If the image is a manifest list, this is the max size of all manifests in the
@@ -867,23 +867,23 @@ export interface ImageDetail {
867
867
  * </note>
868
868
  * @public
869
869
  */
870
- imageSizeInBytes?: number;
870
+ imageSizeInBytes?: number | undefined;
871
871
  /**
872
872
  * <p>The date and time, expressed in standard JavaScript date format, that the current image
873
873
  * was pushed to the repository at. </p>
874
874
  * @public
875
875
  */
876
- imagePushedAt?: Date;
876
+ imagePushedAt?: Date | undefined;
877
877
  /**
878
878
  * <p>The media type of the image manifest.</p>
879
879
  * @public
880
880
  */
881
- imageManifestMediaType?: string;
881
+ imageManifestMediaType?: string | undefined;
882
882
  /**
883
883
  * <p>The artifact media type of the image.</p>
884
884
  * @public
885
885
  */
886
- artifactMediaType?: string;
886
+ artifactMediaType?: string | undefined;
887
887
  }
888
888
  /**
889
889
  * @public
@@ -894,7 +894,7 @@ export interface DescribeImagesResponse {
894
894
  * image.</p>
895
895
  * @public
896
896
  */
897
- imageDetails?: ImageDetail[];
897
+ imageDetails?: ImageDetail[] | undefined;
898
898
  /**
899
899
  * <p>The <code>nextToken</code> value to include in a future <code>DescribeImages</code>
900
900
  * request. When the results of a <code>DescribeImages</code> request exceed
@@ -902,7 +902,7 @@ export interface DescribeImagesResponse {
902
902
  * there are no more results to return, this value is <code>null</code>.</p>
903
903
  * @public
904
904
  */
905
- nextToken?: string;
905
+ nextToken?: string | undefined;
906
906
  }
907
907
  /**
908
908
  * <p>The image requested doesn't exist in the specified repository.</p>
@@ -925,7 +925,7 @@ export interface DescribeImageTagsRequest {
925
925
  * repository where images are described. If you do not specify a registry, the default public registry is assumed.</p>
926
926
  * @public
927
927
  */
928
- registryId?: string;
928
+ registryId?: string | undefined;
929
929
  /**
930
930
  * <p>The name of the repository that contains the image tag details to describe.</p>
931
931
  * @public
@@ -940,7 +940,7 @@ export interface DescribeImageTagsRequest {
940
940
  * <code>imageIds</code>, you can't use this option.</p>
941
941
  * @public
942
942
  */
943
- nextToken?: string;
943
+ nextToken?: string | undefined;
944
944
  /**
945
945
  * <p>The maximum number of repository results that's returned by
946
946
  * <code>DescribeImageTags</code> in paginated output. When this parameter is used,
@@ -954,7 +954,7 @@ export interface DescribeImageTagsRequest {
954
954
  * option.</p>
955
955
  * @public
956
956
  */
957
- maxResults?: number;
957
+ maxResults?: number | undefined;
958
958
  }
959
959
  /**
960
960
  * <p>An object that describes the image tag details that are returned by a <a>DescribeImageTags</a> action.</p>
@@ -965,7 +965,7 @@ export interface ReferencedImageDetail {
965
965
  * <p>The <code>sha256</code> digest of the image manifest.</p>
966
966
  * @public
967
967
  */
968
- imageDigest?: string;
968
+ imageDigest?: string | undefined;
969
969
  /**
970
970
  * <p>The size, in bytes, of the image in the repository.</p>
971
971
  * <p>If the image is a manifest list, this is the max size of all manifests in the
@@ -978,23 +978,23 @@ export interface ReferencedImageDetail {
978
978
  * </note>
979
979
  * @public
980
980
  */
981
- imageSizeInBytes?: number;
981
+ imageSizeInBytes?: number | undefined;
982
982
  /**
983
983
  * <p>The date and time, expressed in standard JavaScript date format, which the current image
984
984
  * tag was pushed to the repository at.</p>
985
985
  * @public
986
986
  */
987
- imagePushedAt?: Date;
987
+ imagePushedAt?: Date | undefined;
988
988
  /**
989
989
  * <p>The media type of the image manifest.</p>
990
990
  * @public
991
991
  */
992
- imageManifestMediaType?: string;
992
+ imageManifestMediaType?: string | undefined;
993
993
  /**
994
994
  * <p>The artifact media type of the image.</p>
995
995
  * @public
996
996
  */
997
- artifactMediaType?: string;
997
+ artifactMediaType?: string | undefined;
998
998
  }
999
999
  /**
1000
1000
  * <p>An object that represents the image tag details for an image.</p>
@@ -1005,17 +1005,17 @@ export interface ImageTagDetail {
1005
1005
  * <p>The tag that's associated with the image.</p>
1006
1006
  * @public
1007
1007
  */
1008
- imageTag?: string;
1008
+ imageTag?: string | undefined;
1009
1009
  /**
1010
1010
  * <p>The time stamp that indicates when the image tag was created.</p>
1011
1011
  * @public
1012
1012
  */
1013
- createdAt?: Date;
1013
+ createdAt?: Date | undefined;
1014
1014
  /**
1015
1015
  * <p>An object that describes the details of an image.</p>
1016
1016
  * @public
1017
1017
  */
1018
- imageDetail?: ReferencedImageDetail;
1018
+ imageDetail?: ReferencedImageDetail | undefined;
1019
1019
  }
1020
1020
  /**
1021
1021
  * @public
@@ -1025,7 +1025,7 @@ export interface DescribeImageTagsResponse {
1025
1025
  * <p>The image tag details for the images in the requested repository.</p>
1026
1026
  * @public
1027
1027
  */
1028
- imageTagDetails?: ImageTagDetail[];
1028
+ imageTagDetails?: ImageTagDetail[] | undefined;
1029
1029
  /**
1030
1030
  * <p>The <code>nextToken</code> value to include in a future <code>DescribeImageTags</code>
1031
1031
  * request. When the results of a <code>DescribeImageTags</code> request exceed
@@ -1033,7 +1033,7 @@ export interface DescribeImageTagsResponse {
1033
1033
  * there are no more results to return, this value is <code>null</code>.</p>
1034
1034
  * @public
1035
1035
  */
1036
- nextToken?: string;
1036
+ nextToken?: string | undefined;
1037
1037
  }
1038
1038
  /**
1039
1039
  * @public
@@ -1050,7 +1050,7 @@ export interface DescribeRegistriesRequest {
1050
1050
  * </note>
1051
1051
  * @public
1052
1052
  */
1053
- nextToken?: string;
1053
+ nextToken?: string | undefined;
1054
1054
  /**
1055
1055
  * <p>The maximum number of repository results that's returned by
1056
1056
  * <code>DescribeRegistries</code> in paginated output. When this parameter is used,
@@ -1063,7 +1063,7 @@ export interface DescribeRegistriesRequest {
1063
1063
  * applicable.</p>
1064
1064
  * @public
1065
1065
  */
1066
- maxResults?: number;
1066
+ maxResults?: number | undefined;
1067
1067
  }
1068
1068
  /**
1069
1069
  * @public
@@ -1167,7 +1167,7 @@ export interface DescribeRegistriesResponse {
1167
1167
  * is <code>null</code>.</p>
1168
1168
  * @public
1169
1169
  */
1170
- nextToken?: string;
1170
+ nextToken?: string | undefined;
1171
1171
  }
1172
1172
  /**
1173
1173
  * @public
@@ -1178,13 +1178,13 @@ export interface DescribeRepositoriesRequest {
1178
1178
  * to be described. If you do not specify a registry, the default public registry is assumed.</p>
1179
1179
  * @public
1180
1180
  */
1181
- registryId?: string;
1181
+ registryId?: string | undefined;
1182
1182
  /**
1183
1183
  * <p>A list of repositories to describe. If this parameter is omitted, then all repositories
1184
1184
  * in a registry are described.</p>
1185
1185
  * @public
1186
1186
  */
1187
- repositoryNames?: string[];
1187
+ repositoryNames?: string[] | undefined;
1188
1188
  /**
1189
1189
  * <p>The <code>nextToken</code> value that's returned from a previous paginated
1190
1190
  * <code>DescribeRepositories</code> request where <code>maxResults</code> was used and the
@@ -1197,7 +1197,7 @@ export interface DescribeRepositoriesRequest {
1197
1197
  * </note>
1198
1198
  * @public
1199
1199
  */
1200
- nextToken?: string;
1200
+ nextToken?: string | undefined;
1201
1201
  /**
1202
1202
  * <p>The maximum number of repository results that's returned by
1203
1203
  * <code>DescribeRepositories</code> in paginated output. When this parameter is used,
@@ -1211,7 +1211,7 @@ export interface DescribeRepositoriesRequest {
1211
1211
  * this option.</p>
1212
1212
  * @public
1213
1213
  */
1214
- maxResults?: number;
1214
+ maxResults?: number | undefined;
1215
1215
  }
1216
1216
  /**
1217
1217
  * @public
@@ -1221,7 +1221,7 @@ export interface DescribeRepositoriesResponse {
1221
1221
  * <p>A list of repository objects corresponding to valid repositories.</p>
1222
1222
  * @public
1223
1223
  */
1224
- repositories?: Repository[];
1224
+ repositories?: Repository[] | undefined;
1225
1225
  /**
1226
1226
  * <p>The <code>nextToken</code> value to include in a future
1227
1227
  * <code>DescribeRepositories</code> request. When the results of a
@@ -1230,7 +1230,7 @@ export interface DescribeRepositoriesResponse {
1230
1230
  * value is <code>null</code>.</p>
1231
1231
  * @public
1232
1232
  */
1233
- nextToken?: string;
1233
+ nextToken?: string | undefined;
1234
1234
  }
1235
1235
  /**
1236
1236
  * @public
@@ -1245,7 +1245,7 @@ export interface GetAuthorizationTokenResponse {
1245
1245
  * <p>An authorization token data object that corresponds to a public registry.</p>
1246
1246
  * @public
1247
1247
  */
1248
- authorizationData?: AuthorizationData;
1248
+ authorizationData?: AuthorizationData | undefined;
1249
1249
  }
1250
1250
  /**
1251
1251
  * @public
@@ -1265,7 +1265,7 @@ export interface RegistryCatalogData {
1265
1265
  * </important>
1266
1266
  * @public
1267
1267
  */
1268
- displayName?: string;
1268
+ displayName?: string | undefined;
1269
1269
  }
1270
1270
  /**
1271
1271
  * @public
@@ -1286,7 +1286,7 @@ export interface GetRepositoryCatalogDataRequest {
1286
1286
  * to be described. If you do not specify a registry, the default public registry is assumed.</p>
1287
1287
  * @public
1288
1288
  */
1289
- registryId?: string;
1289
+ registryId?: string | undefined;
1290
1290
  /**
1291
1291
  * <p>The name of the repository to retrieve the catalog metadata for.</p>
1292
1292
  * @public
@@ -1301,7 +1301,7 @@ export interface GetRepositoryCatalogDataResponse {
1301
1301
  * <p>The catalog metadata for the repository.</p>
1302
1302
  * @public
1303
1303
  */
1304
- catalogData?: RepositoryCatalogData;
1304
+ catalogData?: RepositoryCatalogData | undefined;
1305
1305
  }
1306
1306
  /**
1307
1307
  * <p>The repository catalog data doesn't exist.</p>
@@ -1324,7 +1324,7 @@ export interface GetRepositoryPolicyRequest {
1324
1324
  * repository. If you do not specify a registry, the default public registry is assumed.</p>
1325
1325
  * @public
1326
1326
  */
1327
- registryId?: string;
1327
+ registryId?: string | undefined;
1328
1328
  /**
1329
1329
  * <p>The name of the repository with the policy to retrieve.</p>
1330
1330
  * @public
@@ -1339,18 +1339,18 @@ export interface GetRepositoryPolicyResponse {
1339
1339
  * <p>The registry ID that's associated with the request.</p>
1340
1340
  * @public
1341
1341
  */
1342
- registryId?: string;
1342
+ registryId?: string | undefined;
1343
1343
  /**
1344
1344
  * <p>The repository name that's associated with the request.</p>
1345
1345
  * @public
1346
1346
  */
1347
- repositoryName?: string;
1347
+ repositoryName?: string | undefined;
1348
1348
  /**
1349
1349
  * <p>The repository policy text that's associated with the repository. The policy text will
1350
1350
  * be in JSON format.</p>
1351
1351
  * @public
1352
1352
  */
1353
- policyText?: string;
1353
+ policyText?: string | undefined;
1354
1354
  }
1355
1355
  /**
1356
1356
  * <p>An object that represents an Amazon ECR image.</p>
@@ -1361,27 +1361,27 @@ export interface Image {
1361
1361
  * <p>The Amazon Web Services account ID that's associated with the registry containing the image.</p>
1362
1362
  * @public
1363
1363
  */
1364
- registryId?: string;
1364
+ registryId?: string | undefined;
1365
1365
  /**
1366
1366
  * <p>The name of the repository that's associated with the image.</p>
1367
1367
  * @public
1368
1368
  */
1369
- repositoryName?: string;
1369
+ repositoryName?: string | undefined;
1370
1370
  /**
1371
1371
  * <p>An object that contains the image tag and image digest associated with an image.</p>
1372
1372
  * @public
1373
1373
  */
1374
- imageId?: ImageIdentifier;
1374
+ imageId?: ImageIdentifier | undefined;
1375
1375
  /**
1376
1376
  * <p>The image manifest that's associated with the image.</p>
1377
1377
  * @public
1378
1378
  */
1379
- imageManifest?: string;
1379
+ imageManifest?: string | undefined;
1380
1380
  /**
1381
1381
  * <p>The manifest media type of the image.</p>
1382
1382
  * @public
1383
1383
  */
1384
- imageManifestMediaType?: string;
1384
+ imageManifestMediaType?: string | undefined;
1385
1385
  }
1386
1386
  /**
1387
1387
  * <p>The specified image has already been pushed, and there were no changes to the manifest
@@ -1431,7 +1431,7 @@ export interface InitiateLayerUploadRequest {
1431
1431
  * you intend to upload layers. If you do not specify a registry, the default public registry is assumed.</p>
1432
1432
  * @public
1433
1433
  */
1434
- registryId?: string;
1434
+ registryId?: string | undefined;
1435
1435
  /**
1436
1436
  * <p>The name of the repository that you want to upload layers to.</p>
1437
1437
  * @public
@@ -1446,12 +1446,12 @@ export interface InitiateLayerUploadResponse {
1446
1446
  * <p>The upload ID for the layer upload. This parameter is passed to further <a>UploadLayerPart</a> and <a>CompleteLayerUpload</a> operations.</p>
1447
1447
  * @public
1448
1448
  */
1449
- uploadId?: string;
1449
+ uploadId?: string | undefined;
1450
1450
  /**
1451
1451
  * <p>The size, in bytes, that Amazon ECR expects future layer part uploads to be.</p>
1452
1452
  * @public
1453
1453
  */
1454
- partSize?: number;
1454
+ partSize?: number | undefined;
1455
1455
  }
1456
1456
  /**
1457
1457
  * <p>The layer part size isn't valid, or the first byte specified isn't consecutive to the
@@ -1465,22 +1465,22 @@ export declare class InvalidLayerPartException extends __BaseException {
1465
1465
  * <p>The Amazon Web Services account ID that's associated with the layer part.</p>
1466
1466
  * @public
1467
1467
  */
1468
- registryId?: string;
1468
+ registryId?: string | undefined;
1469
1469
  /**
1470
1470
  * <p>The name of the repository.</p>
1471
1471
  * @public
1472
1472
  */
1473
- repositoryName?: string;
1473
+ repositoryName?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The upload ID that's associated with the layer part.</p>
1476
1476
  * @public
1477
1477
  */
1478
- uploadId?: string;
1478
+ uploadId?: string | undefined;
1479
1479
  /**
1480
1480
  * <p>The position of the last byte of the layer part.</p>
1481
1481
  * @public
1482
1482
  */
1483
- lastValidByteReceived?: number;
1483
+ lastValidByteReceived?: number | undefined;
1484
1484
  /**
1485
1485
  * @internal
1486
1486
  */
@@ -1518,7 +1518,7 @@ export interface ListTagsForResourceResponse {
1518
1518
  * <p>The tags for the resource.</p>
1519
1519
  * @public
1520
1520
  */
1521
- tags?: Tag[];
1521
+ tags?: Tag[] | undefined;
1522
1522
  }
1523
1523
  /**
1524
1524
  * @public
@@ -1529,7 +1529,7 @@ export interface PutImageRequest {
1529
1529
  * contains the repository where the image is put. If you do not specify a registry, the default public registry is assumed.</p>
1530
1530
  * @public
1531
1531
  */
1532
- registryId?: string;
1532
+ registryId?: string | undefined;
1533
1533
  /**
1534
1534
  * <p>The name of the repository where the image is put.</p>
1535
1535
  * @public
@@ -1546,18 +1546,18 @@ export interface PutImageRequest {
1546
1546
  * in the request.</p>
1547
1547
  * @public
1548
1548
  */
1549
- imageManifestMediaType?: string;
1549
+ imageManifestMediaType?: string | undefined;
1550
1550
  /**
1551
1551
  * <p>The tag to associate with the image. This parameter is required for images that use the
1552
1552
  * Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.</p>
1553
1553
  * @public
1554
1554
  */
1555
- imageTag?: string;
1555
+ imageTag?: string | undefined;
1556
1556
  /**
1557
1557
  * <p>The image digest of the image manifest that corresponds to the image.</p>
1558
1558
  * @public
1559
1559
  */
1560
- imageDigest?: string;
1560
+ imageDigest?: string | undefined;
1561
1561
  }
1562
1562
  /**
1563
1563
  * @public
@@ -1567,7 +1567,7 @@ export interface PutImageResponse {
1567
1567
  * <p>Details of the image uploaded.</p>
1568
1568
  * @public
1569
1569
  */
1570
- image?: Image;
1570
+ image?: Image | undefined;
1571
1571
  }
1572
1572
  /**
1573
1573
  * <p>The manifest list is referencing an image that doesn't exist.</p>
@@ -1594,7 +1594,7 @@ export interface PutRegistryCatalogDataRequest {
1594
1594
  * </note>
1595
1595
  * @public
1596
1596
  */
1597
- displayName?: string;
1597
+ displayName?: string | undefined;
1598
1598
  }
1599
1599
  /**
1600
1600
  * @public
@@ -1615,7 +1615,7 @@ export interface PutRepositoryCatalogDataRequest {
1615
1615
  * If you do not specify a registry, the default public registry is assumed.</p>
1616
1616
  * @public
1617
1617
  */
1618
- registryId?: string;
1618
+ registryId?: string | undefined;
1619
1619
  /**
1620
1620
  * <p>The name of the repository to create or update the catalog data for.</p>
1621
1621
  * @public
@@ -1636,7 +1636,7 @@ export interface PutRepositoryCatalogDataResponse {
1636
1636
  * <p>The catalog data for the repository.</p>
1637
1637
  * @public
1638
1638
  */
1639
- catalogData?: RepositoryCatalogData;
1639
+ catalogData?: RepositoryCatalogData | undefined;
1640
1640
  }
1641
1641
  /**
1642
1642
  * @public
@@ -1647,7 +1647,7 @@ export interface SetRepositoryPolicyRequest {
1647
1647
  * If you do not specify a registry, the default public registry is assumed.</p>
1648
1648
  * @public
1649
1649
  */
1650
- registryId?: string;
1650
+ registryId?: string | undefined;
1651
1651
  /**
1652
1652
  * <p>The name of the repository to receive the policy.</p>
1653
1653
  * @public
@@ -1666,7 +1666,7 @@ export interface SetRepositoryPolicyRequest {
1666
1666
  * operation. This prevents accidental repository lockouts.</p>
1667
1667
  * @public
1668
1668
  */
1669
- force?: boolean;
1669
+ force?: boolean | undefined;
1670
1670
  }
1671
1671
  /**
1672
1672
  * @public
@@ -1676,17 +1676,17 @@ export interface SetRepositoryPolicyResponse {
1676
1676
  * <p>The registry ID that's associated with the request.</p>
1677
1677
  * @public
1678
1678
  */
1679
- registryId?: string;
1679
+ registryId?: string | undefined;
1680
1680
  /**
1681
1681
  * <p>The repository name that's associated with the request.</p>
1682
1682
  * @public
1683
1683
  */
1684
- repositoryName?: string;
1684
+ repositoryName?: string | undefined;
1685
1685
  /**
1686
1686
  * <p>The JSON repository policy text that's applied to the repository.</p>
1687
1687
  * @public
1688
1688
  */
1689
- policyText?: string;
1689
+ policyText?: string | undefined;
1690
1690
  }
1691
1691
  /**
1692
1692
  * @public
@@ -1740,7 +1740,7 @@ export interface UploadLayerPartRequest {
1740
1740
  * uploading layer parts to. If you do not specify a registry, the default public registry is assumed.</p>
1741
1741
  * @public
1742
1742
  */
1743
- registryId?: string;
1743
+ registryId?: string | undefined;
1744
1744
  /**
1745
1745
  * <p>The name of the repository that you're uploading layer parts to.</p>
1746
1746
  * @public
@@ -1776,20 +1776,20 @@ export interface UploadLayerPartResponse {
1776
1776
  * <p>The registry ID that's associated with the request.</p>
1777
1777
  * @public
1778
1778
  */
1779
- registryId?: string;
1779
+ registryId?: string | undefined;
1780
1780
  /**
1781
1781
  * <p>The repository name that's associated with the request.</p>
1782
1782
  * @public
1783
1783
  */
1784
- repositoryName?: string;
1784
+ repositoryName?: string | undefined;
1785
1785
  /**
1786
1786
  * <p>The upload ID that's associated with the request.</p>
1787
1787
  * @public
1788
1788
  */
1789
- uploadId?: string;
1789
+ uploadId?: string | undefined;
1790
1790
  /**
1791
1791
  * <p>The integer value of the last byte that's received in the request.</p>
1792
1792
  * @public
1793
1793
  */
1794
- lastByteReceived?: number;
1794
+ lastByteReceived?: number | undefined;
1795
1795
  }