@aws-sdk/client-ecr-public 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/BatchCheckLayerAvailabilityCommand.js +2 -2
- package/dist-cjs/commands/BatchDeleteImageCommand.js +2 -2
- package/dist-cjs/commands/CompleteLayerUploadCommand.js +2 -2
- package/dist-cjs/commands/CreateRepositoryCommand.js +2 -2
- package/dist-cjs/commands/DeleteRepositoryCommand.js +2 -2
- package/dist-cjs/commands/DeleteRepositoryPolicyCommand.js +2 -2
- package/dist-cjs/commands/DescribeImageTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeImagesCommand.js +2 -2
- package/dist-cjs/commands/DescribeRegistriesCommand.js +2 -2
- package/dist-cjs/commands/DescribeRepositoriesCommand.js +2 -2
- package/dist-cjs/commands/GetAuthorizationTokenCommand.js +2 -2
- package/dist-cjs/commands/GetRegistryCatalogDataCommand.js +2 -2
- package/dist-cjs/commands/GetRepositoryCatalogDataCommand.js +2 -2
- package/dist-cjs/commands/GetRepositoryPolicyCommand.js +2 -2
- package/dist-cjs/commands/InitiateLayerUploadCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutImageCommand.js +2 -2
- package/dist-cjs/commands/PutRegistryCatalogDataCommand.js +2 -2
- package/dist-cjs/commands/PutRepositoryCatalogDataCommand.js +2 -2
- package/dist-cjs/commands/SetRepositoryPolicyCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UploadLayerPartCommand.js +2 -2
- package/dist-cjs/models/models_0.js +250 -374
- package/dist-cjs/protocols/Aws_json1_1.js +115 -208
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +3 -3
- package/dist-es/commands/BatchDeleteImageCommand.js +3 -3
- package/dist-es/commands/CompleteLayerUploadCommand.js +3 -3
- package/dist-es/commands/CreateRepositoryCommand.js +3 -3
- package/dist-es/commands/DeleteRepositoryCommand.js +3 -3
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +3 -3
- package/dist-es/commands/DescribeImageTagsCommand.js +3 -3
- package/dist-es/commands/DescribeImagesCommand.js +3 -3
- package/dist-es/commands/DescribeRegistriesCommand.js +3 -3
- package/dist-es/commands/DescribeRepositoriesCommand.js +3 -3
- package/dist-es/commands/GetAuthorizationTokenCommand.js +3 -3
- package/dist-es/commands/GetRegistryCatalogDataCommand.js +3 -3
- package/dist-es/commands/GetRepositoryCatalogDataCommand.js +3 -3
- package/dist-es/commands/GetRepositoryPolicyCommand.js +3 -3
- package/dist-es/commands/InitiateLayerUploadCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutImageCommand.js +3 -3
- package/dist-es/commands/PutRegistryCatalogDataCommand.js +3 -3
- package/dist-es/commands/PutRepositoryCatalogDataCommand.js +3 -3
- package/dist-es/commands/SetRepositoryPolicyCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UploadLayerPartCommand.js +3 -3
- package/dist-es/models/models_0.js +62 -248
- package/dist-es/protocols/Aws_json1_1.js +185 -209
- package/dist-types/models/models_0.d.ts +248 -372
- package/dist-types/ts3.4/models/models_0.d.ts +124 -248
- package/package.json +6 -6
|
@@ -16,12 +16,6 @@ export interface AuthorizationData {
|
|
|
16
16
|
*/
|
|
17
17
|
expiresAt?: Date;
|
|
18
18
|
}
|
|
19
|
-
export declare namespace AuthorizationData {
|
|
20
|
-
/**
|
|
21
|
-
* @internal
|
|
22
|
-
*/
|
|
23
|
-
const filterSensitiveLog: (obj: AuthorizationData) => any;
|
|
24
|
-
}
|
|
25
19
|
export interface BatchCheckLayerAvailabilityRequest {
|
|
26
20
|
/**
|
|
27
21
|
* <p>The AWS account ID associated with the public registry that contains the image layers to
|
|
@@ -37,12 +31,6 @@ export interface BatchCheckLayerAvailabilityRequest {
|
|
|
37
31
|
*/
|
|
38
32
|
layerDigests: string[] | undefined;
|
|
39
33
|
}
|
|
40
|
-
export declare namespace BatchCheckLayerAvailabilityRequest {
|
|
41
|
-
/**
|
|
42
|
-
* @internal
|
|
43
|
-
*/
|
|
44
|
-
const filterSensitiveLog: (obj: BatchCheckLayerAvailabilityRequest) => any;
|
|
45
|
-
}
|
|
46
34
|
export declare enum LayerFailureCode {
|
|
47
35
|
InvalidLayerDigest = "InvalidLayerDigest",
|
|
48
36
|
MissingLayerDigest = "MissingLayerDigest"
|
|
@@ -64,12 +52,6 @@ export interface LayerFailure {
|
|
|
64
52
|
*/
|
|
65
53
|
failureReason?: string;
|
|
66
54
|
}
|
|
67
|
-
export declare namespace LayerFailure {
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
const filterSensitiveLog: (obj: LayerFailure) => any;
|
|
72
|
-
}
|
|
73
55
|
export declare enum LayerAvailability {
|
|
74
56
|
AVAILABLE = "AVAILABLE",
|
|
75
57
|
UNAVAILABLE = "UNAVAILABLE"
|
|
@@ -97,12 +79,6 @@ export interface Layer {
|
|
|
97
79
|
*/
|
|
98
80
|
mediaType?: string;
|
|
99
81
|
}
|
|
100
|
-
export declare namespace Layer {
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
const filterSensitiveLog: (obj: Layer) => any;
|
|
105
|
-
}
|
|
106
82
|
export interface BatchCheckLayerAvailabilityResponse {
|
|
107
83
|
/**
|
|
108
84
|
* <p>A list of image layer objects corresponding to the image layer references in the
|
|
@@ -114,12 +90,6 @@ export interface BatchCheckLayerAvailabilityResponse {
|
|
|
114
90
|
*/
|
|
115
91
|
failures?: LayerFailure[];
|
|
116
92
|
}
|
|
117
|
-
export declare namespace BatchCheckLayerAvailabilityResponse {
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
const filterSensitiveLog: (obj: BatchCheckLayerAvailabilityResponse) => any;
|
|
122
|
-
}
|
|
123
93
|
/**
|
|
124
94
|
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
125
95
|
* request.</p>
|
|
@@ -179,12 +149,6 @@ export interface ImageIdentifier {
|
|
|
179
149
|
*/
|
|
180
150
|
imageTag?: string;
|
|
181
151
|
}
|
|
182
|
-
export declare namespace ImageIdentifier {
|
|
183
|
-
/**
|
|
184
|
-
* @internal
|
|
185
|
-
*/
|
|
186
|
-
const filterSensitiveLog: (obj: ImageIdentifier) => any;
|
|
187
|
-
}
|
|
188
152
|
export interface BatchDeleteImageRequest {
|
|
189
153
|
/**
|
|
190
154
|
* <p>The AWS account ID associated with the registry that contains the image to delete.
|
|
@@ -202,12 +166,6 @@ export interface BatchDeleteImageRequest {
|
|
|
202
166
|
*/
|
|
203
167
|
imageIds: ImageIdentifier[] | undefined;
|
|
204
168
|
}
|
|
205
|
-
export declare namespace BatchDeleteImageRequest {
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
const filterSensitiveLog: (obj: BatchDeleteImageRequest) => any;
|
|
210
|
-
}
|
|
211
169
|
export declare enum ImageFailureCode {
|
|
212
170
|
ImageNotFound = "ImageNotFound",
|
|
213
171
|
ImageReferencedByManifestList = "ImageReferencedByManifestList",
|
|
@@ -234,12 +192,6 @@ export interface ImageFailure {
|
|
|
234
192
|
*/
|
|
235
193
|
failureReason?: string;
|
|
236
194
|
}
|
|
237
|
-
export declare namespace ImageFailure {
|
|
238
|
-
/**
|
|
239
|
-
* @internal
|
|
240
|
-
*/
|
|
241
|
-
const filterSensitiveLog: (obj: ImageFailure) => any;
|
|
242
|
-
}
|
|
243
195
|
export interface BatchDeleteImageResponse {
|
|
244
196
|
/**
|
|
245
197
|
* <p>The image IDs of the deleted images.</p>
|
|
@@ -250,12 +202,6 @@ export interface BatchDeleteImageResponse {
|
|
|
250
202
|
*/
|
|
251
203
|
failures?: ImageFailure[];
|
|
252
204
|
}
|
|
253
|
-
export declare namespace BatchDeleteImageResponse {
|
|
254
|
-
/**
|
|
255
|
-
* @internal
|
|
256
|
-
*/
|
|
257
|
-
const filterSensitiveLog: (obj: BatchDeleteImageResponse) => any;
|
|
258
|
-
}
|
|
259
205
|
export interface CompleteLayerUploadRequest {
|
|
260
206
|
/**
|
|
261
207
|
* <p>The AWS account ID associated with the registry to which to upload layers.
|
|
@@ -277,12 +223,6 @@ export interface CompleteLayerUploadRequest {
|
|
|
277
223
|
*/
|
|
278
224
|
layerDigests: string[] | undefined;
|
|
279
225
|
}
|
|
280
|
-
export declare namespace CompleteLayerUploadRequest {
|
|
281
|
-
/**
|
|
282
|
-
* @internal
|
|
283
|
-
*/
|
|
284
|
-
const filterSensitiveLog: (obj: CompleteLayerUploadRequest) => any;
|
|
285
|
-
}
|
|
286
226
|
export interface CompleteLayerUploadResponse {
|
|
287
227
|
/**
|
|
288
228
|
* <p>The public registry ID associated with the request.</p>
|
|
@@ -301,12 +241,6 @@ export interface CompleteLayerUploadResponse {
|
|
|
301
241
|
*/
|
|
302
242
|
layerDigest?: string;
|
|
303
243
|
}
|
|
304
|
-
export declare namespace CompleteLayerUploadResponse {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
const filterSensitiveLog: (obj: CompleteLayerUploadResponse) => any;
|
|
309
|
-
}
|
|
310
244
|
/**
|
|
311
245
|
* <p>The specified layer upload does not contain any layer parts.</p>
|
|
312
246
|
*/
|
|
@@ -462,12 +396,6 @@ export interface RepositoryCatalogDataInput {
|
|
|
462
396
|
*/
|
|
463
397
|
usageText?: string;
|
|
464
398
|
}
|
|
465
|
-
export declare namespace RepositoryCatalogDataInput {
|
|
466
|
-
/**
|
|
467
|
-
* @internal
|
|
468
|
-
*/
|
|
469
|
-
const filterSensitiveLog: (obj: RepositoryCatalogDataInput) => any;
|
|
470
|
-
}
|
|
471
399
|
/**
|
|
472
400
|
* <p>The metadata that you apply to a resource to help you categorize and organize them. Each
|
|
473
401
|
* tag 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 a maximum length of 256 characters.</p>
|
|
@@ -484,12 +412,6 @@ export interface Tag {
|
|
|
484
412
|
*/
|
|
485
413
|
Value?: string;
|
|
486
414
|
}
|
|
487
|
-
export declare namespace Tag {
|
|
488
|
-
/**
|
|
489
|
-
* @internal
|
|
490
|
-
*/
|
|
491
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
492
|
-
}
|
|
493
415
|
export interface CreateRepositoryRequest {
|
|
494
416
|
/**
|
|
495
417
|
* <p>The name to use for the repository. This appears publicly in the Amazon ECR Public Gallery.
|
|
@@ -510,12 +432,6 @@ export interface CreateRepositoryRequest {
|
|
|
510
432
|
*/
|
|
511
433
|
tags?: Tag[];
|
|
512
434
|
}
|
|
513
|
-
export declare namespace CreateRepositoryRequest {
|
|
514
|
-
/**
|
|
515
|
-
* @internal
|
|
516
|
-
*/
|
|
517
|
-
const filterSensitiveLog: (obj: CreateRepositoryRequest) => any;
|
|
518
|
-
}
|
|
519
435
|
/**
|
|
520
436
|
* <p>The catalog data for a repository. This data is publicly visible in the
|
|
521
437
|
* Amazon ECR Public Gallery.</p>
|
|
@@ -560,12 +476,6 @@ export interface RepositoryCatalogData {
|
|
|
560
476
|
*/
|
|
561
477
|
marketplaceCertified?: boolean;
|
|
562
478
|
}
|
|
563
|
-
export declare namespace RepositoryCatalogData {
|
|
564
|
-
/**
|
|
565
|
-
* @internal
|
|
566
|
-
*/
|
|
567
|
-
const filterSensitiveLog: (obj: RepositoryCatalogData) => any;
|
|
568
|
-
}
|
|
569
479
|
/**
|
|
570
480
|
* <p>An object representing a repository.</p>
|
|
571
481
|
*/
|
|
@@ -593,12 +503,6 @@ export interface Repository {
|
|
|
593
503
|
*/
|
|
594
504
|
createdAt?: Date;
|
|
595
505
|
}
|
|
596
|
-
export declare namespace Repository {
|
|
597
|
-
/**
|
|
598
|
-
* @internal
|
|
599
|
-
*/
|
|
600
|
-
const filterSensitiveLog: (obj: Repository) => any;
|
|
601
|
-
}
|
|
602
506
|
export interface CreateRepositoryResponse {
|
|
603
507
|
/**
|
|
604
508
|
* <p>The repository that was created.</p>
|
|
@@ -610,12 +514,6 @@ export interface CreateRepositoryResponse {
|
|
|
610
514
|
*/
|
|
611
515
|
catalogData?: RepositoryCatalogData;
|
|
612
516
|
}
|
|
613
|
-
export declare namespace CreateRepositoryResponse {
|
|
614
|
-
/**
|
|
615
|
-
* @internal
|
|
616
|
-
*/
|
|
617
|
-
const filterSensitiveLog: (obj: CreateRepositoryResponse) => any;
|
|
618
|
-
}
|
|
619
517
|
/**
|
|
620
518
|
* <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>
|
|
621
519
|
*/
|
|
@@ -678,24 +576,12 @@ export interface DeleteRepositoryRequest {
|
|
|
678
576
|
*/
|
|
679
577
|
force?: boolean;
|
|
680
578
|
}
|
|
681
|
-
export declare namespace DeleteRepositoryRequest {
|
|
682
|
-
/**
|
|
683
|
-
* @internal
|
|
684
|
-
*/
|
|
685
|
-
const filterSensitiveLog: (obj: DeleteRepositoryRequest) => any;
|
|
686
|
-
}
|
|
687
579
|
export interface DeleteRepositoryResponse {
|
|
688
580
|
/**
|
|
689
581
|
* <p>The repository that was deleted.</p>
|
|
690
582
|
*/
|
|
691
583
|
repository?: Repository;
|
|
692
584
|
}
|
|
693
|
-
export declare namespace DeleteRepositoryResponse {
|
|
694
|
-
/**
|
|
695
|
-
* @internal
|
|
696
|
-
*/
|
|
697
|
-
const filterSensitiveLog: (obj: DeleteRepositoryResponse) => any;
|
|
698
|
-
}
|
|
699
585
|
/**
|
|
700
586
|
* <p>The specified repository contains images. To delete a repository that contains images,
|
|
701
587
|
* you must force the deletion with the <code>force</code> parameter.</p>
|
|
@@ -720,12 +606,6 @@ export interface DeleteRepositoryPolicyRequest {
|
|
|
720
606
|
*/
|
|
721
607
|
repositoryName: string | undefined;
|
|
722
608
|
}
|
|
723
|
-
export declare namespace DeleteRepositoryPolicyRequest {
|
|
724
|
-
/**
|
|
725
|
-
* @internal
|
|
726
|
-
*/
|
|
727
|
-
const filterSensitiveLog: (obj: DeleteRepositoryPolicyRequest) => any;
|
|
728
|
-
}
|
|
729
609
|
export interface DeleteRepositoryPolicyResponse {
|
|
730
610
|
/**
|
|
731
611
|
* <p>The registry ID associated with the request.</p>
|
|
@@ -740,12 +620,6 @@ export interface DeleteRepositoryPolicyResponse {
|
|
|
740
620
|
*/
|
|
741
621
|
policyText?: string;
|
|
742
622
|
}
|
|
743
|
-
export declare namespace DeleteRepositoryPolicyResponse {
|
|
744
|
-
/**
|
|
745
|
-
* @internal
|
|
746
|
-
*/
|
|
747
|
-
const filterSensitiveLog: (obj: DeleteRepositoryPolicyResponse) => any;
|
|
748
|
-
}
|
|
749
623
|
/**
|
|
750
624
|
* <p>The specified repository and registry combination does not have an associated repository
|
|
751
625
|
* policy.</p>
|
|
@@ -794,12 +668,6 @@ export interface DescribeImagesRequest {
|
|
|
794
668
|
*/
|
|
795
669
|
maxResults?: number;
|
|
796
670
|
}
|
|
797
|
-
export declare namespace DescribeImagesRequest {
|
|
798
|
-
/**
|
|
799
|
-
* @internal
|
|
800
|
-
*/
|
|
801
|
-
const filterSensitiveLog: (obj: DescribeImagesRequest) => any;
|
|
802
|
-
}
|
|
803
671
|
/**
|
|
804
672
|
* <p>An object that describes an image returned by a <a>DescribeImages</a>
|
|
805
673
|
* operation.</p>
|
|
@@ -848,12 +716,6 @@ export interface ImageDetail {
|
|
|
848
716
|
*/
|
|
849
717
|
artifactMediaType?: string;
|
|
850
718
|
}
|
|
851
|
-
export declare namespace ImageDetail {
|
|
852
|
-
/**
|
|
853
|
-
* @internal
|
|
854
|
-
*/
|
|
855
|
-
const filterSensitiveLog: (obj: ImageDetail) => any;
|
|
856
|
-
}
|
|
857
719
|
export interface DescribeImagesResponse {
|
|
858
720
|
/**
|
|
859
721
|
* <p>A list of <a>ImageDetail</a> objects that contain data about the
|
|
@@ -868,12 +730,6 @@ export interface DescribeImagesResponse {
|
|
|
868
730
|
*/
|
|
869
731
|
nextToken?: string;
|
|
870
732
|
}
|
|
871
|
-
export declare namespace DescribeImagesResponse {
|
|
872
|
-
/**
|
|
873
|
-
* @internal
|
|
874
|
-
*/
|
|
875
|
-
const filterSensitiveLog: (obj: DescribeImagesResponse) => any;
|
|
876
|
-
}
|
|
877
733
|
/**
|
|
878
734
|
* <p>The image requested does not exist in the specified repository.</p>
|
|
879
735
|
*/
|
|
@@ -917,12 +773,6 @@ export interface DescribeImageTagsRequest {
|
|
|
917
773
|
*/
|
|
918
774
|
maxResults?: number;
|
|
919
775
|
}
|
|
920
|
-
export declare namespace DescribeImageTagsRequest {
|
|
921
|
-
/**
|
|
922
|
-
* @internal
|
|
923
|
-
*/
|
|
924
|
-
const filterSensitiveLog: (obj: DescribeImageTagsRequest) => any;
|
|
925
|
-
}
|
|
926
776
|
/**
|
|
927
777
|
* <p>An object that describes the image tag details returned by a <a>DescribeImageTags</a> action.</p>
|
|
928
778
|
*/
|
|
@@ -957,12 +807,6 @@ export interface ReferencedImageDetail {
|
|
|
957
807
|
*/
|
|
958
808
|
artifactMediaType?: string;
|
|
959
809
|
}
|
|
960
|
-
export declare namespace ReferencedImageDetail {
|
|
961
|
-
/**
|
|
962
|
-
* @internal
|
|
963
|
-
*/
|
|
964
|
-
const filterSensitiveLog: (obj: ReferencedImageDetail) => any;
|
|
965
|
-
}
|
|
966
810
|
/**
|
|
967
811
|
* <p>An object representing the image tag details for an image.</p>
|
|
968
812
|
*/
|
|
@@ -980,12 +824,6 @@ export interface ImageTagDetail {
|
|
|
980
824
|
*/
|
|
981
825
|
imageDetail?: ReferencedImageDetail;
|
|
982
826
|
}
|
|
983
|
-
export declare namespace ImageTagDetail {
|
|
984
|
-
/**
|
|
985
|
-
* @internal
|
|
986
|
-
*/
|
|
987
|
-
const filterSensitiveLog: (obj: ImageTagDetail) => any;
|
|
988
|
-
}
|
|
989
827
|
export interface DescribeImageTagsResponse {
|
|
990
828
|
/**
|
|
991
829
|
* <p>The image tag details for the images in the requested repository.</p>
|
|
@@ -999,12 +837,6 @@ export interface DescribeImageTagsResponse {
|
|
|
999
837
|
*/
|
|
1000
838
|
nextToken?: string;
|
|
1001
839
|
}
|
|
1002
|
-
export declare namespace DescribeImageTagsResponse {
|
|
1003
|
-
/**
|
|
1004
|
-
* @internal
|
|
1005
|
-
*/
|
|
1006
|
-
const filterSensitiveLog: (obj: DescribeImageTagsResponse) => any;
|
|
1007
|
-
}
|
|
1008
840
|
export interface DescribeRegistriesRequest {
|
|
1009
841
|
/**
|
|
1010
842
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
@@ -1029,12 +861,6 @@ export interface DescribeRegistriesRequest {
|
|
|
1029
861
|
*/
|
|
1030
862
|
maxResults?: number;
|
|
1031
863
|
}
|
|
1032
|
-
export declare namespace DescribeRegistriesRequest {
|
|
1033
|
-
/**
|
|
1034
|
-
* @internal
|
|
1035
|
-
*/
|
|
1036
|
-
const filterSensitiveLog: (obj: DescribeRegistriesRequest) => any;
|
|
1037
|
-
}
|
|
1038
864
|
export declare enum RegistryAliasStatus {
|
|
1039
865
|
ACTIVE = "ACTIVE",
|
|
1040
866
|
PENDING = "PENDING",
|
|
@@ -1072,12 +898,6 @@ export interface RegistryAlias {
|
|
|
1072
898
|
*/
|
|
1073
899
|
defaultRegistryAlias: boolean | undefined;
|
|
1074
900
|
}
|
|
1075
|
-
export declare namespace RegistryAlias {
|
|
1076
|
-
/**
|
|
1077
|
-
* @internal
|
|
1078
|
-
*/
|
|
1079
|
-
const filterSensitiveLog: (obj: RegistryAlias) => any;
|
|
1080
|
-
}
|
|
1081
901
|
/**
|
|
1082
902
|
* <p>The details of a public registry.</p>
|
|
1083
903
|
*/
|
|
@@ -1106,12 +926,6 @@ export interface Registry {
|
|
|
1106
926
|
*/
|
|
1107
927
|
aliases: RegistryAlias[] | undefined;
|
|
1108
928
|
}
|
|
1109
|
-
export declare namespace Registry {
|
|
1110
|
-
/**
|
|
1111
|
-
* @internal
|
|
1112
|
-
*/
|
|
1113
|
-
const filterSensitiveLog: (obj: Registry) => any;
|
|
1114
|
-
}
|
|
1115
929
|
export interface DescribeRegistriesResponse {
|
|
1116
930
|
/**
|
|
1117
931
|
* <p>An object containing the details for a public registry.</p>
|
|
@@ -1126,12 +940,6 @@ export interface DescribeRegistriesResponse {
|
|
|
1126
940
|
*/
|
|
1127
941
|
nextToken?: string;
|
|
1128
942
|
}
|
|
1129
|
-
export declare namespace DescribeRegistriesResponse {
|
|
1130
|
-
/**
|
|
1131
|
-
* @internal
|
|
1132
|
-
*/
|
|
1133
|
-
const filterSensitiveLog: (obj: DescribeRegistriesResponse) => any;
|
|
1134
|
-
}
|
|
1135
943
|
export interface DescribeRepositoriesRequest {
|
|
1136
944
|
/**
|
|
1137
945
|
* <p>The AWS account ID associated with the registry that contains the repositories to be
|
|
@@ -1169,12 +977,6 @@ export interface DescribeRepositoriesRequest {
|
|
|
1169
977
|
*/
|
|
1170
978
|
maxResults?: number;
|
|
1171
979
|
}
|
|
1172
|
-
export declare namespace DescribeRepositoriesRequest {
|
|
1173
|
-
/**
|
|
1174
|
-
* @internal
|
|
1175
|
-
*/
|
|
1176
|
-
const filterSensitiveLog: (obj: DescribeRepositoriesRequest) => any;
|
|
1177
|
-
}
|
|
1178
980
|
export interface DescribeRepositoriesResponse {
|
|
1179
981
|
/**
|
|
1180
982
|
* <p>A list of repository objects corresponding to valid repositories.</p>
|
|
@@ -1189,40 +991,16 @@ export interface DescribeRepositoriesResponse {
|
|
|
1189
991
|
*/
|
|
1190
992
|
nextToken?: string;
|
|
1191
993
|
}
|
|
1192
|
-
export declare namespace DescribeRepositoriesResponse {
|
|
1193
|
-
/**
|
|
1194
|
-
* @internal
|
|
1195
|
-
*/
|
|
1196
|
-
const filterSensitiveLog: (obj: DescribeRepositoriesResponse) => any;
|
|
1197
|
-
}
|
|
1198
994
|
export interface GetAuthorizationTokenRequest {
|
|
1199
995
|
}
|
|
1200
|
-
export declare namespace GetAuthorizationTokenRequest {
|
|
1201
|
-
/**
|
|
1202
|
-
* @internal
|
|
1203
|
-
*/
|
|
1204
|
-
const filterSensitiveLog: (obj: GetAuthorizationTokenRequest) => any;
|
|
1205
|
-
}
|
|
1206
996
|
export interface GetAuthorizationTokenResponse {
|
|
1207
997
|
/**
|
|
1208
998
|
* <p>An authorization token data object that corresponds to a public registry.</p>
|
|
1209
999
|
*/
|
|
1210
1000
|
authorizationData?: AuthorizationData;
|
|
1211
1001
|
}
|
|
1212
|
-
export declare namespace GetAuthorizationTokenResponse {
|
|
1213
|
-
/**
|
|
1214
|
-
* @internal
|
|
1215
|
-
*/
|
|
1216
|
-
const filterSensitiveLog: (obj: GetAuthorizationTokenResponse) => any;
|
|
1217
|
-
}
|
|
1218
1002
|
export interface GetRegistryCatalogDataRequest {
|
|
1219
1003
|
}
|
|
1220
|
-
export declare namespace GetRegistryCatalogDataRequest {
|
|
1221
|
-
/**
|
|
1222
|
-
* @internal
|
|
1223
|
-
*/
|
|
1224
|
-
const filterSensitiveLog: (obj: GetRegistryCatalogDataRequest) => any;
|
|
1225
|
-
}
|
|
1226
1004
|
/**
|
|
1227
1005
|
* <p>The metadata for a public registry.</p>
|
|
1228
1006
|
*/
|
|
@@ -1236,24 +1014,12 @@ export interface RegistryCatalogData {
|
|
|
1236
1014
|
*/
|
|
1237
1015
|
displayName?: string;
|
|
1238
1016
|
}
|
|
1239
|
-
export declare namespace RegistryCatalogData {
|
|
1240
|
-
/**
|
|
1241
|
-
* @internal
|
|
1242
|
-
*/
|
|
1243
|
-
const filterSensitiveLog: (obj: RegistryCatalogData) => any;
|
|
1244
|
-
}
|
|
1245
1017
|
export interface GetRegistryCatalogDataResponse {
|
|
1246
1018
|
/**
|
|
1247
1019
|
* <p>The catalog metadata for the public registry.</p>
|
|
1248
1020
|
*/
|
|
1249
1021
|
registryCatalogData: RegistryCatalogData | undefined;
|
|
1250
1022
|
}
|
|
1251
|
-
export declare namespace GetRegistryCatalogDataResponse {
|
|
1252
|
-
/**
|
|
1253
|
-
* @internal
|
|
1254
|
-
*/
|
|
1255
|
-
const filterSensitiveLog: (obj: GetRegistryCatalogDataResponse) => any;
|
|
1256
|
-
}
|
|
1257
1023
|
export interface GetRepositoryCatalogDataRequest {
|
|
1258
1024
|
/**
|
|
1259
1025
|
* <p>The AWS account ID associated with the registry that contains the repositories to be
|
|
@@ -1265,24 +1031,12 @@ export interface GetRepositoryCatalogDataRequest {
|
|
|
1265
1031
|
*/
|
|
1266
1032
|
repositoryName: string | undefined;
|
|
1267
1033
|
}
|
|
1268
|
-
export declare namespace GetRepositoryCatalogDataRequest {
|
|
1269
|
-
/**
|
|
1270
|
-
* @internal
|
|
1271
|
-
*/
|
|
1272
|
-
const filterSensitiveLog: (obj: GetRepositoryCatalogDataRequest) => any;
|
|
1273
|
-
}
|
|
1274
1034
|
export interface GetRepositoryCatalogDataResponse {
|
|
1275
1035
|
/**
|
|
1276
1036
|
* <p>The catalog metadata for the repository.</p>
|
|
1277
1037
|
*/
|
|
1278
1038
|
catalogData?: RepositoryCatalogData;
|
|
1279
1039
|
}
|
|
1280
|
-
export declare namespace GetRepositoryCatalogDataResponse {
|
|
1281
|
-
/**
|
|
1282
|
-
* @internal
|
|
1283
|
-
*/
|
|
1284
|
-
const filterSensitiveLog: (obj: GetRepositoryCatalogDataResponse) => any;
|
|
1285
|
-
}
|
|
1286
1040
|
export interface GetRepositoryPolicyRequest {
|
|
1287
1041
|
/**
|
|
1288
1042
|
* <p>The AWS account ID associated with the public registry that contains the repository.
|
|
@@ -1294,12 +1048,6 @@ export interface GetRepositoryPolicyRequest {
|
|
|
1294
1048
|
*/
|
|
1295
1049
|
repositoryName: string | undefined;
|
|
1296
1050
|
}
|
|
1297
|
-
export declare namespace GetRepositoryPolicyRequest {
|
|
1298
|
-
/**
|
|
1299
|
-
* @internal
|
|
1300
|
-
*/
|
|
1301
|
-
const filterSensitiveLog: (obj: GetRepositoryPolicyRequest) => any;
|
|
1302
|
-
}
|
|
1303
1051
|
export interface GetRepositoryPolicyResponse {
|
|
1304
1052
|
/**
|
|
1305
1053
|
* <p>The registry ID associated with the request.</p>
|
|
@@ -1315,12 +1063,6 @@ export interface GetRepositoryPolicyResponse {
|
|
|
1315
1063
|
*/
|
|
1316
1064
|
policyText?: string;
|
|
1317
1065
|
}
|
|
1318
|
-
export declare namespace GetRepositoryPolicyResponse {
|
|
1319
|
-
/**
|
|
1320
|
-
* @internal
|
|
1321
|
-
*/
|
|
1322
|
-
const filterSensitiveLog: (obj: GetRepositoryPolicyResponse) => any;
|
|
1323
|
-
}
|
|
1324
1066
|
/**
|
|
1325
1067
|
* <p>An object representing an Amazon ECR image.</p>
|
|
1326
1068
|
*/
|
|
@@ -1346,12 +1088,6 @@ export interface Image {
|
|
|
1346
1088
|
*/
|
|
1347
1089
|
imageManifestMediaType?: string;
|
|
1348
1090
|
}
|
|
1349
|
-
export declare namespace Image {
|
|
1350
|
-
/**
|
|
1351
|
-
* @internal
|
|
1352
|
-
*/
|
|
1353
|
-
const filterSensitiveLog: (obj: Image) => any;
|
|
1354
|
-
}
|
|
1355
1091
|
/**
|
|
1356
1092
|
* <p>The specified image has already been pushed, and there were no changes to the manifest
|
|
1357
1093
|
* or image tag after the last push.</p>
|
|
@@ -1399,12 +1135,6 @@ export interface InitiateLayerUploadRequest {
|
|
|
1399
1135
|
*/
|
|
1400
1136
|
repositoryName: string | undefined;
|
|
1401
1137
|
}
|
|
1402
|
-
export declare namespace InitiateLayerUploadRequest {
|
|
1403
|
-
/**
|
|
1404
|
-
* @internal
|
|
1405
|
-
*/
|
|
1406
|
-
const filterSensitiveLog: (obj: InitiateLayerUploadRequest) => any;
|
|
1407
|
-
}
|
|
1408
1138
|
export interface InitiateLayerUploadResponse {
|
|
1409
1139
|
/**
|
|
1410
1140
|
* <p>The upload ID for the layer upload. This parameter is passed to further <a>UploadLayerPart</a> and <a>CompleteLayerUpload</a> operations.</p>
|
|
@@ -1415,12 +1145,6 @@ export interface InitiateLayerUploadResponse {
|
|
|
1415
1145
|
*/
|
|
1416
1146
|
partSize?: number;
|
|
1417
1147
|
}
|
|
1418
|
-
export declare namespace InitiateLayerUploadResponse {
|
|
1419
|
-
/**
|
|
1420
|
-
* @internal
|
|
1421
|
-
*/
|
|
1422
|
-
const filterSensitiveLog: (obj: InitiateLayerUploadResponse) => any;
|
|
1423
|
-
}
|
|
1424
1148
|
/**
|
|
1425
1149
|
* <p>The layer part size is not valid, or the first byte specified is not consecutive to the
|
|
1426
1150
|
* last byte of a previous layer part upload.</p>
|
|
@@ -1468,24 +1192,12 @@ export interface ListTagsForResourceRequest {
|
|
|
1468
1192
|
*/
|
|
1469
1193
|
resourceArn: string | undefined;
|
|
1470
1194
|
}
|
|
1471
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1472
|
-
/**
|
|
1473
|
-
* @internal
|
|
1474
|
-
*/
|
|
1475
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1476
|
-
}
|
|
1477
1195
|
export interface ListTagsForResourceResponse {
|
|
1478
1196
|
/**
|
|
1479
1197
|
* <p>The tags for the resource.</p>
|
|
1480
1198
|
*/
|
|
1481
1199
|
tags?: Tag[];
|
|
1482
1200
|
}
|
|
1483
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1484
|
-
/**
|
|
1485
|
-
* @internal
|
|
1486
|
-
*/
|
|
1487
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1488
|
-
}
|
|
1489
1201
|
export interface PutImageRequest {
|
|
1490
1202
|
/**
|
|
1491
1203
|
* <p>The AWS account ID associated with the public registry that contains the repository in
|
|
@@ -1516,24 +1228,12 @@ export interface PutImageRequest {
|
|
|
1516
1228
|
*/
|
|
1517
1229
|
imageDigest?: string;
|
|
1518
1230
|
}
|
|
1519
|
-
export declare namespace PutImageRequest {
|
|
1520
|
-
/**
|
|
1521
|
-
* @internal
|
|
1522
|
-
*/
|
|
1523
|
-
const filterSensitiveLog: (obj: PutImageRequest) => any;
|
|
1524
|
-
}
|
|
1525
1231
|
export interface PutImageResponse {
|
|
1526
1232
|
/**
|
|
1527
1233
|
* <p>Details of the image uploaded.</p>
|
|
1528
1234
|
*/
|
|
1529
1235
|
image?: Image;
|
|
1530
1236
|
}
|
|
1531
|
-
export declare namespace PutImageResponse {
|
|
1532
|
-
/**
|
|
1533
|
-
* @internal
|
|
1534
|
-
*/
|
|
1535
|
-
const filterSensitiveLog: (obj: PutImageResponse) => any;
|
|
1536
|
-
}
|
|
1537
1237
|
/**
|
|
1538
1238
|
* <p>The manifest list is referencing an image that does not exist.</p>
|
|
1539
1239
|
*/
|
|
@@ -1556,24 +1256,12 @@ export interface PutRegistryCatalogDataRequest {
|
|
|
1556
1256
|
*/
|
|
1557
1257
|
displayName?: string;
|
|
1558
1258
|
}
|
|
1559
|
-
export declare namespace PutRegistryCatalogDataRequest {
|
|
1560
|
-
/**
|
|
1561
|
-
* @internal
|
|
1562
|
-
*/
|
|
1563
|
-
const filterSensitiveLog: (obj: PutRegistryCatalogDataRequest) => any;
|
|
1564
|
-
}
|
|
1565
1259
|
export interface PutRegistryCatalogDataResponse {
|
|
1566
1260
|
/**
|
|
1567
1261
|
* <p>The catalog data for the public registry.</p>
|
|
1568
1262
|
*/
|
|
1569
1263
|
registryCatalogData: RegistryCatalogData | undefined;
|
|
1570
1264
|
}
|
|
1571
|
-
export declare namespace PutRegistryCatalogDataResponse {
|
|
1572
|
-
/**
|
|
1573
|
-
* @internal
|
|
1574
|
-
*/
|
|
1575
|
-
const filterSensitiveLog: (obj: PutRegistryCatalogDataResponse) => any;
|
|
1576
|
-
}
|
|
1577
1265
|
export interface PutRepositoryCatalogDataRequest {
|
|
1578
1266
|
/**
|
|
1579
1267
|
* <p>The AWS account ID associated with the public registry the repository is in.
|
|
@@ -1590,24 +1278,12 @@ export interface PutRepositoryCatalogDataRequest {
|
|
|
1590
1278
|
*/
|
|
1591
1279
|
catalogData: RepositoryCatalogDataInput | undefined;
|
|
1592
1280
|
}
|
|
1593
|
-
export declare namespace PutRepositoryCatalogDataRequest {
|
|
1594
|
-
/**
|
|
1595
|
-
* @internal
|
|
1596
|
-
*/
|
|
1597
|
-
const filterSensitiveLog: (obj: PutRepositoryCatalogDataRequest) => any;
|
|
1598
|
-
}
|
|
1599
1281
|
export interface PutRepositoryCatalogDataResponse {
|
|
1600
1282
|
/**
|
|
1601
1283
|
* <p>The catalog data for the repository.</p>
|
|
1602
1284
|
*/
|
|
1603
1285
|
catalogData?: RepositoryCatalogData;
|
|
1604
1286
|
}
|
|
1605
|
-
export declare namespace PutRepositoryCatalogDataResponse {
|
|
1606
|
-
/**
|
|
1607
|
-
* @internal
|
|
1608
|
-
*/
|
|
1609
|
-
const filterSensitiveLog: (obj: PutRepositoryCatalogDataResponse) => any;
|
|
1610
|
-
}
|
|
1611
1287
|
export interface SetRepositoryPolicyRequest {
|
|
1612
1288
|
/**
|
|
1613
1289
|
* <p>The AWS account ID associated with the registry that contains the repository.
|
|
@@ -1631,12 +1307,6 @@ export interface SetRepositoryPolicyRequest {
|
|
|
1631
1307
|
*/
|
|
1632
1308
|
force?: boolean;
|
|
1633
1309
|
}
|
|
1634
|
-
export declare namespace SetRepositoryPolicyRequest {
|
|
1635
|
-
/**
|
|
1636
|
-
* @internal
|
|
1637
|
-
*/
|
|
1638
|
-
const filterSensitiveLog: (obj: SetRepositoryPolicyRequest) => any;
|
|
1639
|
-
}
|
|
1640
1310
|
export interface SetRepositoryPolicyResponse {
|
|
1641
1311
|
/**
|
|
1642
1312
|
* <p>The registry ID associated with the request.</p>
|
|
@@ -1651,12 +1321,6 @@ export interface SetRepositoryPolicyResponse {
|
|
|
1651
1321
|
*/
|
|
1652
1322
|
policyText?: string;
|
|
1653
1323
|
}
|
|
1654
|
-
export declare namespace SetRepositoryPolicyResponse {
|
|
1655
|
-
/**
|
|
1656
|
-
* @internal
|
|
1657
|
-
*/
|
|
1658
|
-
const filterSensitiveLog: (obj: SetRepositoryPolicyResponse) => any;
|
|
1659
|
-
}
|
|
1660
1324
|
export interface TagResourceRequest {
|
|
1661
1325
|
/**
|
|
1662
1326
|
* <p>The Amazon Resource Name (ARN) of the resource to which to add tags. Currently, the
|
|
@@ -1669,20 +1333,8 @@ export interface TagResourceRequest {
|
|
|
1669
1333
|
*/
|
|
1670
1334
|
tags: Tag[] | undefined;
|
|
1671
1335
|
}
|
|
1672
|
-
export declare namespace TagResourceRequest {
|
|
1673
|
-
/**
|
|
1674
|
-
* @internal
|
|
1675
|
-
*/
|
|
1676
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1677
|
-
}
|
|
1678
1336
|
export interface TagResourceResponse {
|
|
1679
1337
|
}
|
|
1680
|
-
export declare namespace TagResourceResponse {
|
|
1681
|
-
/**
|
|
1682
|
-
* @internal
|
|
1683
|
-
*/
|
|
1684
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1685
|
-
}
|
|
1686
1338
|
export interface UntagResourceRequest {
|
|
1687
1339
|
/**
|
|
1688
1340
|
* <p>The Amazon Resource Name (ARN) of the resource from which to delete tags. Currently, the supported
|
|
@@ -1694,20 +1346,8 @@ export interface UntagResourceRequest {
|
|
|
1694
1346
|
*/
|
|
1695
1347
|
tagKeys: string[] | undefined;
|
|
1696
1348
|
}
|
|
1697
|
-
export declare namespace UntagResourceRequest {
|
|
1698
|
-
/**
|
|
1699
|
-
* @internal
|
|
1700
|
-
*/
|
|
1701
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1702
|
-
}
|
|
1703
1349
|
export interface UntagResourceResponse {
|
|
1704
1350
|
}
|
|
1705
|
-
export declare namespace UntagResourceResponse {
|
|
1706
|
-
/**
|
|
1707
|
-
* @internal
|
|
1708
|
-
*/
|
|
1709
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1710
|
-
}
|
|
1711
1351
|
export interface UploadLayerPartRequest {
|
|
1712
1352
|
/**
|
|
1713
1353
|
* <p>The AWS account ID associated with the registry to which you are uploading layer parts.
|
|
@@ -1736,12 +1376,6 @@ export interface UploadLayerPartRequest {
|
|
|
1736
1376
|
*/
|
|
1737
1377
|
layerPartBlob: Uint8Array | undefined;
|
|
1738
1378
|
}
|
|
1739
|
-
export declare namespace UploadLayerPartRequest {
|
|
1740
|
-
/**
|
|
1741
|
-
* @internal
|
|
1742
|
-
*/
|
|
1743
|
-
const filterSensitiveLog: (obj: UploadLayerPartRequest) => any;
|
|
1744
|
-
}
|
|
1745
1379
|
export interface UploadLayerPartResponse {
|
|
1746
1380
|
/**
|
|
1747
1381
|
* <p>The registry ID associated with the request.</p>
|
|
@@ -1760,9 +1394,251 @@ export interface UploadLayerPartResponse {
|
|
|
1760
1394
|
*/
|
|
1761
1395
|
lastByteReceived?: number;
|
|
1762
1396
|
}
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1397
|
+
/**
|
|
1398
|
+
* @internal
|
|
1399
|
+
*/
|
|
1400
|
+
export declare const AuthorizationDataFilterSensitiveLog: (obj: AuthorizationData) => any;
|
|
1401
|
+
/**
|
|
1402
|
+
* @internal
|
|
1403
|
+
*/
|
|
1404
|
+
export declare const BatchCheckLayerAvailabilityRequestFilterSensitiveLog: (obj: BatchCheckLayerAvailabilityRequest) => any;
|
|
1405
|
+
/**
|
|
1406
|
+
* @internal
|
|
1407
|
+
*/
|
|
1408
|
+
export declare const LayerFailureFilterSensitiveLog: (obj: LayerFailure) => any;
|
|
1409
|
+
/**
|
|
1410
|
+
* @internal
|
|
1411
|
+
*/
|
|
1412
|
+
export declare const LayerFilterSensitiveLog: (obj: Layer) => any;
|
|
1413
|
+
/**
|
|
1414
|
+
* @internal
|
|
1415
|
+
*/
|
|
1416
|
+
export declare const BatchCheckLayerAvailabilityResponseFilterSensitiveLog: (obj: BatchCheckLayerAvailabilityResponse) => any;
|
|
1417
|
+
/**
|
|
1418
|
+
* @internal
|
|
1419
|
+
*/
|
|
1420
|
+
export declare const ImageIdentifierFilterSensitiveLog: (obj: ImageIdentifier) => any;
|
|
1421
|
+
/**
|
|
1422
|
+
* @internal
|
|
1423
|
+
*/
|
|
1424
|
+
export declare const BatchDeleteImageRequestFilterSensitiveLog: (obj: BatchDeleteImageRequest) => any;
|
|
1425
|
+
/**
|
|
1426
|
+
* @internal
|
|
1427
|
+
*/
|
|
1428
|
+
export declare const ImageFailureFilterSensitiveLog: (obj: ImageFailure) => any;
|
|
1429
|
+
/**
|
|
1430
|
+
* @internal
|
|
1431
|
+
*/
|
|
1432
|
+
export declare const BatchDeleteImageResponseFilterSensitiveLog: (obj: BatchDeleteImageResponse) => any;
|
|
1433
|
+
/**
|
|
1434
|
+
* @internal
|
|
1435
|
+
*/
|
|
1436
|
+
export declare const CompleteLayerUploadRequestFilterSensitiveLog: (obj: CompleteLayerUploadRequest) => any;
|
|
1437
|
+
/**
|
|
1438
|
+
* @internal
|
|
1439
|
+
*/
|
|
1440
|
+
export declare const CompleteLayerUploadResponseFilterSensitiveLog: (obj: CompleteLayerUploadResponse) => any;
|
|
1441
|
+
/**
|
|
1442
|
+
* @internal
|
|
1443
|
+
*/
|
|
1444
|
+
export declare const RepositoryCatalogDataInputFilterSensitiveLog: (obj: RepositoryCatalogDataInput) => any;
|
|
1445
|
+
/**
|
|
1446
|
+
* @internal
|
|
1447
|
+
*/
|
|
1448
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1449
|
+
/**
|
|
1450
|
+
* @internal
|
|
1451
|
+
*/
|
|
1452
|
+
export declare const CreateRepositoryRequestFilterSensitiveLog: (obj: CreateRepositoryRequest) => any;
|
|
1453
|
+
/**
|
|
1454
|
+
* @internal
|
|
1455
|
+
*/
|
|
1456
|
+
export declare const RepositoryCatalogDataFilterSensitiveLog: (obj: RepositoryCatalogData) => any;
|
|
1457
|
+
/**
|
|
1458
|
+
* @internal
|
|
1459
|
+
*/
|
|
1460
|
+
export declare const RepositoryFilterSensitiveLog: (obj: Repository) => any;
|
|
1461
|
+
/**
|
|
1462
|
+
* @internal
|
|
1463
|
+
*/
|
|
1464
|
+
export declare const CreateRepositoryResponseFilterSensitiveLog: (obj: CreateRepositoryResponse) => any;
|
|
1465
|
+
/**
|
|
1466
|
+
* @internal
|
|
1467
|
+
*/
|
|
1468
|
+
export declare const DeleteRepositoryRequestFilterSensitiveLog: (obj: DeleteRepositoryRequest) => any;
|
|
1469
|
+
/**
|
|
1470
|
+
* @internal
|
|
1471
|
+
*/
|
|
1472
|
+
export declare const DeleteRepositoryResponseFilterSensitiveLog: (obj: DeleteRepositoryResponse) => any;
|
|
1473
|
+
/**
|
|
1474
|
+
* @internal
|
|
1475
|
+
*/
|
|
1476
|
+
export declare const DeleteRepositoryPolicyRequestFilterSensitiveLog: (obj: DeleteRepositoryPolicyRequest) => any;
|
|
1477
|
+
/**
|
|
1478
|
+
* @internal
|
|
1479
|
+
*/
|
|
1480
|
+
export declare const DeleteRepositoryPolicyResponseFilterSensitiveLog: (obj: DeleteRepositoryPolicyResponse) => any;
|
|
1481
|
+
/**
|
|
1482
|
+
* @internal
|
|
1483
|
+
*/
|
|
1484
|
+
export declare const DescribeImagesRequestFilterSensitiveLog: (obj: DescribeImagesRequest) => any;
|
|
1485
|
+
/**
|
|
1486
|
+
* @internal
|
|
1487
|
+
*/
|
|
1488
|
+
export declare const ImageDetailFilterSensitiveLog: (obj: ImageDetail) => any;
|
|
1489
|
+
/**
|
|
1490
|
+
* @internal
|
|
1491
|
+
*/
|
|
1492
|
+
export declare const DescribeImagesResponseFilterSensitiveLog: (obj: DescribeImagesResponse) => any;
|
|
1493
|
+
/**
|
|
1494
|
+
* @internal
|
|
1495
|
+
*/
|
|
1496
|
+
export declare const DescribeImageTagsRequestFilterSensitiveLog: (obj: DescribeImageTagsRequest) => any;
|
|
1497
|
+
/**
|
|
1498
|
+
* @internal
|
|
1499
|
+
*/
|
|
1500
|
+
export declare const ReferencedImageDetailFilterSensitiveLog: (obj: ReferencedImageDetail) => any;
|
|
1501
|
+
/**
|
|
1502
|
+
* @internal
|
|
1503
|
+
*/
|
|
1504
|
+
export declare const ImageTagDetailFilterSensitiveLog: (obj: ImageTagDetail) => any;
|
|
1505
|
+
/**
|
|
1506
|
+
* @internal
|
|
1507
|
+
*/
|
|
1508
|
+
export declare const DescribeImageTagsResponseFilterSensitiveLog: (obj: DescribeImageTagsResponse) => any;
|
|
1509
|
+
/**
|
|
1510
|
+
* @internal
|
|
1511
|
+
*/
|
|
1512
|
+
export declare const DescribeRegistriesRequestFilterSensitiveLog: (obj: DescribeRegistriesRequest) => any;
|
|
1513
|
+
/**
|
|
1514
|
+
* @internal
|
|
1515
|
+
*/
|
|
1516
|
+
export declare const RegistryAliasFilterSensitiveLog: (obj: RegistryAlias) => any;
|
|
1517
|
+
/**
|
|
1518
|
+
* @internal
|
|
1519
|
+
*/
|
|
1520
|
+
export declare const RegistryFilterSensitiveLog: (obj: Registry) => any;
|
|
1521
|
+
/**
|
|
1522
|
+
* @internal
|
|
1523
|
+
*/
|
|
1524
|
+
export declare const DescribeRegistriesResponseFilterSensitiveLog: (obj: DescribeRegistriesResponse) => any;
|
|
1525
|
+
/**
|
|
1526
|
+
* @internal
|
|
1527
|
+
*/
|
|
1528
|
+
export declare const DescribeRepositoriesRequestFilterSensitiveLog: (obj: DescribeRepositoriesRequest) => any;
|
|
1529
|
+
/**
|
|
1530
|
+
* @internal
|
|
1531
|
+
*/
|
|
1532
|
+
export declare const DescribeRepositoriesResponseFilterSensitiveLog: (obj: DescribeRepositoriesResponse) => any;
|
|
1533
|
+
/**
|
|
1534
|
+
* @internal
|
|
1535
|
+
*/
|
|
1536
|
+
export declare const GetAuthorizationTokenRequestFilterSensitiveLog: (obj: GetAuthorizationTokenRequest) => any;
|
|
1537
|
+
/**
|
|
1538
|
+
* @internal
|
|
1539
|
+
*/
|
|
1540
|
+
export declare const GetAuthorizationTokenResponseFilterSensitiveLog: (obj: GetAuthorizationTokenResponse) => any;
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
export declare const GetRegistryCatalogDataRequestFilterSensitiveLog: (obj: GetRegistryCatalogDataRequest) => any;
|
|
1545
|
+
/**
|
|
1546
|
+
* @internal
|
|
1547
|
+
*/
|
|
1548
|
+
export declare const RegistryCatalogDataFilterSensitiveLog: (obj: RegistryCatalogData) => any;
|
|
1549
|
+
/**
|
|
1550
|
+
* @internal
|
|
1551
|
+
*/
|
|
1552
|
+
export declare const GetRegistryCatalogDataResponseFilterSensitiveLog: (obj: GetRegistryCatalogDataResponse) => any;
|
|
1553
|
+
/**
|
|
1554
|
+
* @internal
|
|
1555
|
+
*/
|
|
1556
|
+
export declare const GetRepositoryCatalogDataRequestFilterSensitiveLog: (obj: GetRepositoryCatalogDataRequest) => any;
|
|
1557
|
+
/**
|
|
1558
|
+
* @internal
|
|
1559
|
+
*/
|
|
1560
|
+
export declare const GetRepositoryCatalogDataResponseFilterSensitiveLog: (obj: GetRepositoryCatalogDataResponse) => any;
|
|
1561
|
+
/**
|
|
1562
|
+
* @internal
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const GetRepositoryPolicyRequestFilterSensitiveLog: (obj: GetRepositoryPolicyRequest) => any;
|
|
1565
|
+
/**
|
|
1566
|
+
* @internal
|
|
1567
|
+
*/
|
|
1568
|
+
export declare const GetRepositoryPolicyResponseFilterSensitiveLog: (obj: GetRepositoryPolicyResponse) => any;
|
|
1569
|
+
/**
|
|
1570
|
+
* @internal
|
|
1571
|
+
*/
|
|
1572
|
+
export declare const ImageFilterSensitiveLog: (obj: Image) => any;
|
|
1573
|
+
/**
|
|
1574
|
+
* @internal
|
|
1575
|
+
*/
|
|
1576
|
+
export declare const InitiateLayerUploadRequestFilterSensitiveLog: (obj: InitiateLayerUploadRequest) => any;
|
|
1577
|
+
/**
|
|
1578
|
+
* @internal
|
|
1579
|
+
*/
|
|
1580
|
+
export declare const InitiateLayerUploadResponseFilterSensitiveLog: (obj: InitiateLayerUploadResponse) => any;
|
|
1581
|
+
/**
|
|
1582
|
+
* @internal
|
|
1583
|
+
*/
|
|
1584
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1585
|
+
/**
|
|
1586
|
+
* @internal
|
|
1587
|
+
*/
|
|
1588
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1589
|
+
/**
|
|
1590
|
+
* @internal
|
|
1591
|
+
*/
|
|
1592
|
+
export declare const PutImageRequestFilterSensitiveLog: (obj: PutImageRequest) => any;
|
|
1593
|
+
/**
|
|
1594
|
+
* @internal
|
|
1595
|
+
*/
|
|
1596
|
+
export declare const PutImageResponseFilterSensitiveLog: (obj: PutImageResponse) => any;
|
|
1597
|
+
/**
|
|
1598
|
+
* @internal
|
|
1599
|
+
*/
|
|
1600
|
+
export declare const PutRegistryCatalogDataRequestFilterSensitiveLog: (obj: PutRegistryCatalogDataRequest) => any;
|
|
1601
|
+
/**
|
|
1602
|
+
* @internal
|
|
1603
|
+
*/
|
|
1604
|
+
export declare const PutRegistryCatalogDataResponseFilterSensitiveLog: (obj: PutRegistryCatalogDataResponse) => any;
|
|
1605
|
+
/**
|
|
1606
|
+
* @internal
|
|
1607
|
+
*/
|
|
1608
|
+
export declare const PutRepositoryCatalogDataRequestFilterSensitiveLog: (obj: PutRepositoryCatalogDataRequest) => any;
|
|
1609
|
+
/**
|
|
1610
|
+
* @internal
|
|
1611
|
+
*/
|
|
1612
|
+
export declare const PutRepositoryCatalogDataResponseFilterSensitiveLog: (obj: PutRepositoryCatalogDataResponse) => any;
|
|
1613
|
+
/**
|
|
1614
|
+
* @internal
|
|
1615
|
+
*/
|
|
1616
|
+
export declare const SetRepositoryPolicyRequestFilterSensitiveLog: (obj: SetRepositoryPolicyRequest) => any;
|
|
1617
|
+
/**
|
|
1618
|
+
* @internal
|
|
1619
|
+
*/
|
|
1620
|
+
export declare const SetRepositoryPolicyResponseFilterSensitiveLog: (obj: SetRepositoryPolicyResponse) => any;
|
|
1621
|
+
/**
|
|
1622
|
+
* @internal
|
|
1623
|
+
*/
|
|
1624
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1625
|
+
/**
|
|
1626
|
+
* @internal
|
|
1627
|
+
*/
|
|
1628
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1629
|
+
/**
|
|
1630
|
+
* @internal
|
|
1631
|
+
*/
|
|
1632
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1637
|
+
/**
|
|
1638
|
+
* @internal
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const UploadLayerPartRequestFilterSensitiveLog: (obj: UploadLayerPartRequest) => any;
|
|
1641
|
+
/**
|
|
1642
|
+
* @internal
|
|
1643
|
+
*/
|
|
1644
|
+
export declare const UploadLayerPartResponseFilterSensitiveLog: (obj: UploadLayerPartResponse) => any;
|