@aws-sdk/client-ecr-public 3.288.0 → 3.290.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.
Files changed (24) hide show
  1. package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +18 -0
  2. package/dist-types/commands/BatchDeleteImageCommand.d.ts +15 -0
  3. package/dist-types/commands/CompleteLayerUploadCommand.d.ts +35 -0
  4. package/dist-types/commands/CreateRepositoryCommand.d.ts +26 -0
  5. package/dist-types/commands/DeleteRepositoryCommand.d.ts +19 -0
  6. package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +19 -0
  7. package/dist-types/commands/DescribeImageTagsCommand.d.ts +15 -0
  8. package/dist-types/commands/DescribeImagesCommand.d.ts +18 -0
  9. package/dist-types/commands/DescribeRegistriesCommand.d.ts +11 -0
  10. package/dist-types/commands/DescribeRepositoriesCommand.d.ts +15 -0
  11. package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +11 -0
  12. package/dist-types/commands/GetRegistryCatalogDataCommand.d.ts +7 -0
  13. package/dist-types/commands/GetRepositoryCatalogDataCommand.d.ts +18 -0
  14. package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +19 -0
  15. package/dist-types/commands/InitiateLayerUploadCommand.d.ts +18 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +15 -0
  17. package/dist-types/commands/PutImageCommand.d.ts +42 -0
  18. package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +11 -0
  19. package/dist-types/commands/PutRepositoryCatalogDataCommand.d.ts +15 -0
  20. package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +15 -0
  21. package/dist-types/commands/TagResourceCommand.d.ts +22 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +22 -0
  23. package/dist-types/commands/UploadLayerPartCommand.d.ts +31 -0
  24. package/package.json +29 -29
@@ -35,6 +35,24 @@ export interface BatchCheckLayerAvailabilityCommandOutput extends BatchCheckLaye
35
35
  * @see {@link BatchCheckLayerAvailabilityCommandOutput} for command's `response` shape.
36
36
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidParameterException} (client fault)
39
+ * <p>The specified parameter is invalid. Review the available parameters for the API
40
+ * request.</p>
41
+ *
42
+ * @throws {@link RegistryNotFoundException} (client fault)
43
+ * <p>The registry doesn't exist.</p>
44
+ *
45
+ * @throws {@link RepositoryNotFoundException} (client fault)
46
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
47
+ * and ensure that you're performing operations on the correct registry.</p>
48
+ *
49
+ * @throws {@link ServerException} (server fault)
50
+ * <p>These errors are usually caused by a server-side issue.</p>
51
+ *
52
+ * @throws {@link UnsupportedCommandException} (client fault)
53
+ * <p>The action isn't supported in this Region.</p>
54
+ *
55
+ *
38
56
  */
39
57
  export declare class BatchCheckLayerAvailabilityCommand extends $Command<BatchCheckLayerAvailabilityCommandInput, BatchCheckLayerAvailabilityCommandOutput, ECRPUBLICClientResolvedConfig> {
40
58
  readonly input: BatchCheckLayerAvailabilityCommandInput;
@@ -35,6 +35,21 @@ export interface BatchDeleteImageCommandOutput extends BatchDeleteImageResponse,
35
35
  * @see {@link BatchDeleteImageCommandOutput} for command's `response` shape.
36
36
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidParameterException} (client fault)
39
+ * <p>The specified parameter is invalid. Review the available parameters for the API
40
+ * request.</p>
41
+ *
42
+ * @throws {@link RepositoryNotFoundException} (client fault)
43
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
44
+ * and ensure that you're performing operations on the correct registry.</p>
45
+ *
46
+ * @throws {@link ServerException} (server fault)
47
+ * <p>These errors are usually caused by a server-side issue.</p>
48
+ *
49
+ * @throws {@link UnsupportedCommandException} (client fault)
50
+ * <p>The action isn't supported in this Region.</p>
51
+ *
52
+ *
38
53
  */
39
54
  export declare class BatchDeleteImageCommand extends $Command<BatchDeleteImageCommandInput, BatchDeleteImageCommandOutput, ECRPUBLICClientResolvedConfig> {
40
55
  readonly input: BatchDeleteImageCommandInput;
@@ -36,6 +36,41 @@ export interface CompleteLayerUploadCommandOutput extends CompleteLayerUploadRes
36
36
  * @see {@link CompleteLayerUploadCommandOutput} for command's `response` shape.
37
37
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
38
38
  *
39
+ * @throws {@link EmptyUploadException} (client fault)
40
+ * <p>The specified layer upload doesn't contain any layer parts.</p>
41
+ *
42
+ * @throws {@link InvalidLayerException} (client fault)
43
+ * <p>The layer digest calculation performed by Amazon ECR when the image layer doesn't match the
44
+ * digest specified.</p>
45
+ *
46
+ * @throws {@link InvalidParameterException} (client fault)
47
+ * <p>The specified parameter is invalid. Review the available parameters for the API
48
+ * request.</p>
49
+ *
50
+ * @throws {@link LayerAlreadyExistsException} (client fault)
51
+ * <p>The image layer already exists in the associated repository.</p>
52
+ *
53
+ * @throws {@link LayerPartTooSmallException} (client fault)
54
+ * <p>Layer parts must be at least 5 MiB in size.</p>
55
+ *
56
+ * @throws {@link RegistryNotFoundException} (client fault)
57
+ * <p>The registry doesn't exist.</p>
58
+ *
59
+ * @throws {@link RepositoryNotFoundException} (client fault)
60
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
61
+ * and ensure that you're performing operations on the correct registry.</p>
62
+ *
63
+ * @throws {@link ServerException} (server fault)
64
+ * <p>These errors are usually caused by a server-side issue.</p>
65
+ *
66
+ * @throws {@link UnsupportedCommandException} (client fault)
67
+ * <p>The action isn't supported in this Region.</p>
68
+ *
69
+ * @throws {@link UploadNotFoundException} (client fault)
70
+ * <p>The upload can't be found, or the specified upload ID isn't valid for this
71
+ * repository.</p>
72
+ *
73
+ *
39
74
  */
40
75
  export declare class CompleteLayerUploadCommand extends $Command<CompleteLayerUploadCommandInput, CompleteLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig> {
41
76
  readonly input: CompleteLayerUploadCommandInput;
@@ -30,6 +30,32 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResponse,
30
30
  * @see {@link CreateRepositoryCommandOutput} for command's `response` shape.
31
31
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidParameterException} (client fault)
34
+ * <p>The specified parameter is invalid. Review the available parameters for the API
35
+ * request.</p>
36
+ *
37
+ * @throws {@link InvalidTagParameterException} (client fault)
38
+ * <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>
39
+ *
40
+ * @throws {@link LimitExceededException} (client fault)
41
+ * <p>The operation didn't succeed because it would have exceeded a service limit for your
42
+ * account. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html">Amazon ECR Service Quotas</a> in the
43
+ * Amazon Elastic Container Registry User Guide.</p>
44
+ *
45
+ * @throws {@link RepositoryAlreadyExistsException} (client fault)
46
+ * <p>The specified repository already exists in the specified registry.</p>
47
+ *
48
+ * @throws {@link ServerException} (server fault)
49
+ * <p>These errors are usually caused by a server-side issue.</p>
50
+ *
51
+ * @throws {@link TooManyTagsException} (client fault)
52
+ * <p>The list of tags on the repository is over the limit. The maximum number of tags that
53
+ * can be applied to a repository is 50.</p>
54
+ *
55
+ * @throws {@link UnsupportedCommandException} (client fault)
56
+ * <p>The action isn't supported in this Region.</p>
57
+ *
58
+ *
33
59
  */
34
60
  export declare class CreateRepositoryCommand extends $Command<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, ECRPUBLICClientResolvedConfig> {
35
61
  readonly input: CreateRepositoryCommandInput;
@@ -31,6 +31,25 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResponse,
31
31
  * @see {@link DeleteRepositoryCommandOutput} for command's `response` shape.
32
32
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidParameterException} (client fault)
35
+ * <p>The specified parameter is invalid. Review the available parameters for the API
36
+ * request.</p>
37
+ *
38
+ * @throws {@link RepositoryNotEmptyException} (client fault)
39
+ * <p>The specified repository contains images. To delete a repository that contains images,
40
+ * you must force the deletion with the <code>force</code> parameter.</p>
41
+ *
42
+ * @throws {@link RepositoryNotFoundException} (client fault)
43
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
44
+ * and ensure that you're performing operations on the correct registry.</p>
45
+ *
46
+ * @throws {@link ServerException} (server fault)
47
+ * <p>These errors are usually caused by a server-side issue.</p>
48
+ *
49
+ * @throws {@link UnsupportedCommandException} (client fault)
50
+ * <p>The action isn't supported in this Region.</p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class DeleteRepositoryCommand extends $Command<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, ECRPUBLICClientResolvedConfig> {
36
55
  readonly input: DeleteRepositoryCommandInput;
@@ -29,6 +29,25 @@ export interface DeleteRepositoryPolicyCommandOutput extends DeleteRepositoryPol
29
29
  * @see {@link DeleteRepositoryPolicyCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link RepositoryPolicyNotFoundException} (client fault)
41
+ * <p>The specified repository and registry combination doesn't have an associated repository
42
+ * policy.</p>
43
+ *
44
+ * @throws {@link ServerException} (server fault)
45
+ * <p>These errors are usually caused by a server-side issue.</p>
46
+ *
47
+ * @throws {@link UnsupportedCommandException} (client fault)
48
+ * <p>The action isn't supported in this Region.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class DeleteRepositoryPolicyCommand extends $Command<DeleteRepositoryPolicyCommandInput, DeleteRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
34
53
  readonly input: DeleteRepositoryPolicyCommandInput;
@@ -29,6 +29,21 @@ export interface DescribeImageTagsCommandOutput extends DescribeImageTagsRespons
29
29
  * @see {@link DescribeImageTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link ServerException} (server fault)
41
+ * <p>These errors are usually caused by a server-side issue.</p>
42
+ *
43
+ * @throws {@link UnsupportedCommandException} (client fault)
44
+ * <p>The action isn't supported in this Region.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class DescribeImageTagsCommand extends $Command<DescribeImageTagsCommandInput, DescribeImageTagsCommandOutput, ECRPUBLICClientResolvedConfig> {
34
49
  readonly input: DescribeImageTagsCommandInput;
@@ -36,6 +36,24 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
36
36
  * @see {@link DescribeImagesCommandOutput} for command's `response` shape.
37
37
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
38
38
  *
39
+ * @throws {@link ImageNotFoundException} (client fault)
40
+ * <p>The image requested doesn't exist in the specified repository.</p>
41
+ *
42
+ * @throws {@link InvalidParameterException} (client fault)
43
+ * <p>The specified parameter is invalid. Review the available parameters for the API
44
+ * request.</p>
45
+ *
46
+ * @throws {@link RepositoryNotFoundException} (client fault)
47
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
48
+ * and ensure that you're performing operations on the correct registry.</p>
49
+ *
50
+ * @throws {@link ServerException} (server fault)
51
+ * <p>These errors are usually caused by a server-side issue.</p>
52
+ *
53
+ * @throws {@link UnsupportedCommandException} (client fault)
54
+ * <p>The action isn't supported in this Region.</p>
55
+ *
56
+ *
39
57
  */
40
58
  export declare class DescribeImagesCommand extends $Command<DescribeImagesCommandInput, DescribeImagesCommandOutput, ECRPUBLICClientResolvedConfig> {
41
59
  readonly input: DescribeImagesCommandInput;
@@ -29,6 +29,17 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo
29
29
  * @see {@link DescribeRegistriesCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link ServerException} (server fault)
37
+ * <p>These errors are usually caused by a server-side issue.</p>
38
+ *
39
+ * @throws {@link UnsupportedCommandException} (client fault)
40
+ * <p>The action isn't supported in this Region.</p>
41
+ *
42
+ *
32
43
  */
33
44
  export declare class DescribeRegistriesCommand extends $Command<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput, ECRPUBLICClientResolvedConfig> {
34
45
  readonly input: DescribeRegistriesCommandInput;
@@ -29,6 +29,21 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR
29
29
  * @see {@link DescribeRepositoriesCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link ServerException} (server fault)
41
+ * <p>These errors are usually caused by a server-side issue.</p>
42
+ *
43
+ * @throws {@link UnsupportedCommandException} (client fault)
44
+ * <p>The action isn't supported in this Region.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class DescribeRepositoriesCommand extends $Command<DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput, ECRPUBLICClientResolvedConfig> {
34
49
  readonly input: DescribeRepositoriesCommandInput;
@@ -33,6 +33,17 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
33
33
  * @see {@link GetAuthorizationTokenCommandOutput} for command's `response` shape.
34
34
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
35
35
  *
36
+ * @throws {@link InvalidParameterException} (client fault)
37
+ * <p>The specified parameter is invalid. Review the available parameters for the API
38
+ * request.</p>
39
+ *
40
+ * @throws {@link ServerException} (server fault)
41
+ * <p>These errors are usually caused by a server-side issue.</p>
42
+ *
43
+ * @throws {@link UnsupportedCommandException} (client fault)
44
+ * <p>The action isn't supported in this Region.</p>
45
+ *
46
+ *
36
47
  */
37
48
  export declare class GetAuthorizationTokenCommand extends $Command<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, ECRPUBLICClientResolvedConfig> {
38
49
  readonly input: GetAuthorizationTokenCommandInput;
@@ -29,6 +29,13 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD
29
29
  * @see {@link GetRegistryCatalogDataCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link ServerException} (server fault)
33
+ * <p>These errors are usually caused by a server-side issue.</p>
34
+ *
35
+ * @throws {@link UnsupportedCommandException} (client fault)
36
+ * <p>The action isn't supported in this Region.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class GetRegistryCatalogDataCommand extends $Command<GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
34
41
  readonly input: GetRegistryCatalogDataCommandInput;
@@ -30,6 +30,24 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata
30
30
  * @see {@link GetRepositoryCatalogDataCommandOutput} for command's `response` shape.
31
31
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidParameterException} (client fault)
34
+ * <p>The specified parameter is invalid. Review the available parameters for the API
35
+ * request.</p>
36
+ *
37
+ * @throws {@link RepositoryCatalogDataNotFoundException} (client fault)
38
+ * <p>The repository catalog data doesn't exist.</p>
39
+ *
40
+ * @throws {@link RepositoryNotFoundException} (client fault)
41
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
42
+ * and ensure that you're performing operations on the correct registry.</p>
43
+ *
44
+ * @throws {@link ServerException} (server fault)
45
+ * <p>These errors are usually caused by a server-side issue.</p>
46
+ *
47
+ * @throws {@link UnsupportedCommandException} (client fault)
48
+ * <p>The action isn't supported in this Region.</p>
49
+ *
50
+ *
33
51
  */
34
52
  export declare class GetRepositoryCatalogDataCommand extends $Command<GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
35
53
  readonly input: GetRepositoryCatalogDataCommandInput;
@@ -29,6 +29,25 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
29
29
  * @see {@link GetRepositoryPolicyCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link RepositoryPolicyNotFoundException} (client fault)
41
+ * <p>The specified repository and registry combination doesn't have an associated repository
42
+ * policy.</p>
43
+ *
44
+ * @throws {@link ServerException} (server fault)
45
+ * <p>These errors are usually caused by a server-side issue.</p>
46
+ *
47
+ * @throws {@link UnsupportedCommandException} (client fault)
48
+ * <p>The action isn't supported in this Region.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class GetRepositoryPolicyCommand extends $Command<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
34
53
  readonly input: GetRepositoryPolicyCommandInput;
@@ -35,6 +35,24 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
35
35
  * @see {@link InitiateLayerUploadCommandOutput} for command's `response` shape.
36
36
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidParameterException} (client fault)
39
+ * <p>The specified parameter is invalid. Review the available parameters for the API
40
+ * request.</p>
41
+ *
42
+ * @throws {@link RegistryNotFoundException} (client fault)
43
+ * <p>The registry doesn't exist.</p>
44
+ *
45
+ * @throws {@link RepositoryNotFoundException} (client fault)
46
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
47
+ * and ensure that you're performing operations on the correct registry.</p>
48
+ *
49
+ * @throws {@link ServerException} (server fault)
50
+ * <p>These errors are usually caused by a server-side issue.</p>
51
+ *
52
+ * @throws {@link UnsupportedCommandException} (client fault)
53
+ * <p>The action isn't supported in this Region.</p>
54
+ *
55
+ *
38
56
  */
39
57
  export declare class InitiateLayerUploadCommand extends $Command<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig> {
40
58
  readonly input: InitiateLayerUploadCommandInput;
@@ -29,6 +29,21 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link ServerException} (server fault)
41
+ * <p>These errors are usually caused by a server-side issue.</p>
42
+ *
43
+ * @throws {@link UnsupportedCommandException} (client fault)
44
+ * <p>The action isn't supported in this Region.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
34
49
  readonly input: ListTagsForResourceCommandInput;
@@ -36,6 +36,48 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
36
36
  * @see {@link PutImageCommandOutput} for command's `response` shape.
37
37
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
38
38
  *
39
+ * @throws {@link ImageAlreadyExistsException} (client fault)
40
+ * <p>The specified image has already been pushed, and there were no changes to the manifest
41
+ * or image tag after the last push.</p>
42
+ *
43
+ * @throws {@link ImageDigestDoesNotMatchException} (client fault)
44
+ * <p>The specified image digest doesn't match the digest that Amazon ECR calculated for the
45
+ * image.</p>
46
+ *
47
+ * @throws {@link ImageTagAlreadyExistsException} (client fault)
48
+ * <p>The specified image is tagged with a tag that already exists. The repository is
49
+ * configured for tag immutability.</p>
50
+ *
51
+ * @throws {@link InvalidParameterException} (client fault)
52
+ * <p>The specified parameter is invalid. Review the available parameters for the API
53
+ * request.</p>
54
+ *
55
+ * @throws {@link LayersNotFoundException} (client fault)
56
+ * <p>The specified layers can't be found, or the specified layer isn't valid for this
57
+ * repository.</p>
58
+ *
59
+ * @throws {@link LimitExceededException} (client fault)
60
+ * <p>The operation didn't succeed because it would have exceeded a service limit for your
61
+ * account. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html">Amazon ECR Service Quotas</a> in the
62
+ * Amazon Elastic Container Registry User Guide.</p>
63
+ *
64
+ * @throws {@link ReferencedImagesNotFoundException} (client fault)
65
+ * <p>The manifest list is referencing an image that doesn't exist.</p>
66
+ *
67
+ * @throws {@link RegistryNotFoundException} (client fault)
68
+ * <p>The registry doesn't exist.</p>
69
+ *
70
+ * @throws {@link RepositoryNotFoundException} (client fault)
71
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
72
+ * and ensure that you're performing operations on the correct registry.</p>
73
+ *
74
+ * @throws {@link ServerException} (server fault)
75
+ * <p>These errors are usually caused by a server-side issue.</p>
76
+ *
77
+ * @throws {@link UnsupportedCommandException} (client fault)
78
+ * <p>The action isn't supported in this Region.</p>
79
+ *
80
+ *
39
81
  */
40
82
  export declare class PutImageCommand extends $Command<PutImageCommandInput, PutImageCommandOutput, ECRPUBLICClientResolvedConfig> {
41
83
  readonly input: PutImageCommandInput;
@@ -29,6 +29,17 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD
29
29
  * @see {@link PutRegistryCatalogDataCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link ServerException} (server fault)
37
+ * <p>These errors are usually caused by a server-side issue.</p>
38
+ *
39
+ * @throws {@link UnsupportedCommandException} (client fault)
40
+ * <p>The action isn't supported in this Region.</p>
41
+ *
42
+ *
32
43
  */
33
44
  export declare class PutRegistryCatalogDataCommand extends $Command<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
34
45
  readonly input: PutRegistryCatalogDataCommandInput;
@@ -29,6 +29,21 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata
29
29
  * @see {@link PutRepositoryCatalogDataCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link RepositoryNotFoundException} (client fault)
37
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
38
+ * and ensure that you're performing operations on the correct registry.</p>
39
+ *
40
+ * @throws {@link ServerException} (server fault)
41
+ * <p>These errors are usually caused by a server-side issue.</p>
42
+ *
43
+ * @throws {@link UnsupportedCommandException} (client fault)
44
+ * <p>The action isn't supported in this Region.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class PutRepositoryCatalogDataCommand extends $Command<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
34
49
  readonly input: PutRepositoryCatalogDataCommandInput;
@@ -31,6 +31,21 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes
31
31
  * @see {@link SetRepositoryPolicyCommandOutput} for command's `response` shape.
32
32
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidParameterException} (client fault)
35
+ * <p>The specified parameter is invalid. Review the available parameters for the API
36
+ * request.</p>
37
+ *
38
+ * @throws {@link RepositoryNotFoundException} (client fault)
39
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
40
+ * and ensure that you're performing operations on the correct registry.</p>
41
+ *
42
+ * @throws {@link ServerException} (server fault)
43
+ * <p>These errors are usually caused by a server-side issue.</p>
44
+ *
45
+ * @throws {@link UnsupportedCommandException} (client fault)
46
+ * <p>The action isn't supported in this Region.</p>
47
+ *
48
+ *
34
49
  */
35
50
  export declare class SetRepositoryPolicyCommand extends $Command<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
36
51
  readonly input: SetRepositoryPolicyCommandInput;
@@ -32,6 +32,28 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
32
32
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidParameterException} (client fault)
36
+ * <p>The specified parameter is invalid. Review the available parameters for the API
37
+ * request.</p>
38
+ *
39
+ * @throws {@link InvalidTagParameterException} (client fault)
40
+ * <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>
41
+ *
42
+ * @throws {@link RepositoryNotFoundException} (client fault)
43
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
44
+ * and ensure that you're performing operations on the correct registry.</p>
45
+ *
46
+ * @throws {@link ServerException} (server fault)
47
+ * <p>These errors are usually caused by a server-side issue.</p>
48
+ *
49
+ * @throws {@link TooManyTagsException} (client fault)
50
+ * <p>The list of tags on the repository is over the limit. The maximum number of tags that
51
+ * can be applied to a repository is 50.</p>
52
+ *
53
+ * @throws {@link UnsupportedCommandException} (client fault)
54
+ * <p>The action isn't supported in this Region.</p>
55
+ *
56
+ *
35
57
  */
36
58
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
37
59
  readonly input: TagResourceCommandInput;
@@ -29,6 +29,28 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterException} (client fault)
33
+ * <p>The specified parameter is invalid. Review the available parameters for the API
34
+ * request.</p>
35
+ *
36
+ * @throws {@link InvalidTagParameterException} (client fault)
37
+ * <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>
38
+ *
39
+ * @throws {@link RepositoryNotFoundException} (client fault)
40
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
41
+ * and ensure that you're performing operations on the correct registry.</p>
42
+ *
43
+ * @throws {@link ServerException} (server fault)
44
+ * <p>These errors are usually caused by a server-side issue.</p>
45
+ *
46
+ * @throws {@link TooManyTagsException} (client fault)
47
+ * <p>The list of tags on the repository is over the limit. The maximum number of tags that
48
+ * can be applied to a repository is 50.</p>
49
+ *
50
+ * @throws {@link UnsupportedCommandException} (client fault)
51
+ * <p>The action isn't supported in this Region.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
34
56
  readonly input: UntagResourceCommandInput;
@@ -35,6 +35,37 @@ export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, _
35
35
  * @see {@link UploadLayerPartCommandOutput} for command's `response` shape.
36
36
  * @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidLayerPartException} (client fault)
39
+ * <p>The layer part size isn't valid, or the first byte specified isn't consecutive to the
40
+ * last byte of a previous layer part upload.</p>
41
+ *
42
+ * @throws {@link InvalidParameterException} (client fault)
43
+ * <p>The specified parameter is invalid. Review the available parameters for the API
44
+ * request.</p>
45
+ *
46
+ * @throws {@link LimitExceededException} (client fault)
47
+ * <p>The operation didn't succeed because it would have exceeded a service limit for your
48
+ * account. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html">Amazon ECR Service Quotas</a> in the
49
+ * Amazon Elastic Container Registry User Guide.</p>
50
+ *
51
+ * @throws {@link RegistryNotFoundException} (client fault)
52
+ * <p>The registry doesn't exist.</p>
53
+ *
54
+ * @throws {@link RepositoryNotFoundException} (client fault)
55
+ * <p>The specified repository can't be found. Check the spelling of the specified repository
56
+ * and ensure that you're performing operations on the correct registry.</p>
57
+ *
58
+ * @throws {@link ServerException} (server fault)
59
+ * <p>These errors are usually caused by a server-side issue.</p>
60
+ *
61
+ * @throws {@link UnsupportedCommandException} (client fault)
62
+ * <p>The action isn't supported in this Region.</p>
63
+ *
64
+ * @throws {@link UploadNotFoundException} (client fault)
65
+ * <p>The upload can't be found, or the specified upload ID isn't valid for this
66
+ * repository.</p>
67
+ *
68
+ *
38
69
  */
39
70
  export declare class UploadLayerPartCommand extends $Command<UploadLayerPartCommandInput, UploadLayerPartCommandOutput, ECRPUBLICClientResolvedConfig> {
40
71
  readonly input: UploadLayerPartCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecr-public",
3
3
  "description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.287.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },