@aws-sdk/client-ecr-public 3.529.1 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/ECRPUBLIC.d.ts +6 -1
- package/dist-types/ECRPUBLICClient.d.ts +1 -1
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +2 -1
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +2 -1
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +2 -1
- package/dist-types/commands/CreateRepositoryCommand.d.ts +3 -2
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeImageTagsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRegistriesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +2 -1
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +2 -1
- package/dist-types/commands/GetRegistryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/InitiateLayerUploadCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutImageCommand.d.ts +2 -1
- package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +2 -1
- package/dist-types/commands/PutRepositoryCatalogDataCommand.d.ts +3 -2
- package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UploadLayerPartCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +214 -214
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/ECRPUBLIC.d.ts +5 -0
- package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeImageTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRegistriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRegistryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositoryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutImageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutRegistryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutRepositoryCatalogDataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -75,24 +75,28 @@ export interface ECRPUBLIC {
|
|
|
75
75
|
/**
|
|
76
76
|
* @see {@link DescribeRegistriesCommand}
|
|
77
77
|
*/
|
|
78
|
+
describeRegistries(): Promise<DescribeRegistriesCommandOutput>;
|
|
78
79
|
describeRegistries(args: DescribeRegistriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRegistriesCommandOutput>;
|
|
79
80
|
describeRegistries(args: DescribeRegistriesCommandInput, cb: (err: any, data?: DescribeRegistriesCommandOutput) => void): void;
|
|
80
81
|
describeRegistries(args: DescribeRegistriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegistriesCommandOutput) => void): void;
|
|
81
82
|
/**
|
|
82
83
|
* @see {@link DescribeRepositoriesCommand}
|
|
83
84
|
*/
|
|
85
|
+
describeRepositories(): Promise<DescribeRepositoriesCommandOutput>;
|
|
84
86
|
describeRepositories(args: DescribeRepositoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRepositoriesCommandOutput>;
|
|
85
87
|
describeRepositories(args: DescribeRepositoriesCommandInput, cb: (err: any, data?: DescribeRepositoriesCommandOutput) => void): void;
|
|
86
88
|
describeRepositories(args: DescribeRepositoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRepositoriesCommandOutput) => void): void;
|
|
87
89
|
/**
|
|
88
90
|
* @see {@link GetAuthorizationTokenCommand}
|
|
89
91
|
*/
|
|
92
|
+
getAuthorizationToken(): Promise<GetAuthorizationTokenCommandOutput>;
|
|
90
93
|
getAuthorizationToken(args: GetAuthorizationTokenCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthorizationTokenCommandOutput>;
|
|
91
94
|
getAuthorizationToken(args: GetAuthorizationTokenCommandInput, cb: (err: any, data?: GetAuthorizationTokenCommandOutput) => void): void;
|
|
92
95
|
getAuthorizationToken(args: GetAuthorizationTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizationTokenCommandOutput) => void): void;
|
|
93
96
|
/**
|
|
94
97
|
* @see {@link GetRegistryCatalogDataCommand}
|
|
95
98
|
*/
|
|
99
|
+
getRegistryCatalogData(): Promise<GetRegistryCatalogDataCommandOutput>;
|
|
96
100
|
getRegistryCatalogData(args: GetRegistryCatalogDataCommandInput, options?: __HttpHandlerOptions): Promise<GetRegistryCatalogDataCommandOutput>;
|
|
97
101
|
getRegistryCatalogData(args: GetRegistryCatalogDataCommandInput, cb: (err: any, data?: GetRegistryCatalogDataCommandOutput) => void): void;
|
|
98
102
|
getRegistryCatalogData(args: GetRegistryCatalogDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRegistryCatalogDataCommandOutput) => void): void;
|
|
@@ -129,6 +133,7 @@ export interface ECRPUBLIC {
|
|
|
129
133
|
/**
|
|
130
134
|
* @see {@link PutRegistryCatalogDataCommand}
|
|
131
135
|
*/
|
|
136
|
+
putRegistryCatalogData(): Promise<PutRegistryCatalogDataCommandOutput>;
|
|
132
137
|
putRegistryCatalogData(args: PutRegistryCatalogDataCommandInput, options?: __HttpHandlerOptions): Promise<PutRegistryCatalogDataCommandOutput>;
|
|
133
138
|
putRegistryCatalogData(args: PutRegistryCatalogDataCommandInput, cb: (err: any, data?: PutRegistryCatalogDataCommandOutput) => void): void;
|
|
134
139
|
putRegistryCatalogData(args: PutRegistryCatalogDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRegistryCatalogDataCommandOutput) => void): void;
|
|
@@ -164,7 +169,6 @@ export interface ECRPUBLIC {
|
|
|
164
169
|
uploadLayerPart(args: UploadLayerPartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UploadLayerPartCommandOutput) => void): void;
|
|
165
170
|
}
|
|
166
171
|
/**
|
|
167
|
-
* @public
|
|
168
172
|
* <fullname>Amazon Elastic Container Registry Public</fullname>
|
|
169
173
|
* <p>Amazon Elastic Container Registry Public (Amazon ECR Public) is a managed container image registry service. Amazon ECR provides both
|
|
170
174
|
* public and private registries to host your container images. You can use the Docker CLI or
|
|
@@ -172,6 +176,7 @@ export interface ECRPUBLIC {
|
|
|
172
176
|
* and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR
|
|
173
177
|
* supports public repositories with this API. For information about the Amazon ECR API for private
|
|
174
178
|
* repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>
|
|
179
|
+
* @public
|
|
175
180
|
*/
|
|
176
181
|
export declare class ECRPUBLIC extends ECRPUBLICClient implements ECRPUBLIC {
|
|
177
182
|
}
|
|
@@ -174,7 +174,6 @@ export type ECRPUBLICClientResolvedConfigType = __SmithyResolvedConfiguration<__
|
|
|
174
174
|
export interface ECRPUBLICClientResolvedConfig extends ECRPUBLICClientResolvedConfigType {
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* <fullname>Amazon Elastic Container Registry Public</fullname>
|
|
179
178
|
* <p>Amazon Elastic Container Registry Public (Amazon ECR Public) is a managed container image registry service. Amazon ECR provides both
|
|
180
179
|
* public and private registries to host your container images. You can use the Docker CLI or
|
|
@@ -182,6 +181,7 @@ export interface ECRPUBLICClientResolvedConfig extends ECRPUBLICClientResolvedCo
|
|
|
182
181
|
* and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR
|
|
183
182
|
* supports public repositories with this API. For information about the Amazon ECR API for private
|
|
184
183
|
* repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class ECRPUBLICClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ECRPUBLICClientResolvedConfig> {
|
|
187
187
|
/**
|
|
@@ -22,10 +22,10 @@ export interface BatchCheckLayerAvailabilityCommandOutput extends BatchCheckLaye
|
|
|
22
22
|
}
|
|
23
23
|
declare const BatchCheckLayerAvailabilityCommand_base: {
|
|
24
24
|
new (input: BatchCheckLayerAvailabilityCommandInput): import("@smithy/smithy-client").CommandImpl<BatchCheckLayerAvailabilityCommandInput, BatchCheckLayerAvailabilityCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: BatchCheckLayerAvailabilityCommandInput): import("@smithy/smithy-client").CommandImpl<BatchCheckLayerAvailabilityCommandInput, BatchCheckLayerAvailabilityCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Checks the availability of one or more image layers that are within a repository in a
|
|
30
30
|
* public registry. When an image is pushed to a repository, each image layer is checked to
|
|
31
31
|
* verify if it has been uploaded before. If it has been uploaded, then the image layer is
|
|
@@ -94,6 +94,7 @@ declare const BatchCheckLayerAvailabilityCommand_base: {
|
|
|
94
94
|
* @throws {@link ECRPUBLICServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class BatchCheckLayerAvailabilityCommand extends BatchCheckLayerAvailabilityCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface BatchDeleteImageCommandOutput extends BatchDeleteImageResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const BatchDeleteImageCommand_base: {
|
|
24
24
|
new (input: BatchDeleteImageCommandInput): import("@smithy/smithy-client").CommandImpl<BatchDeleteImageCommandInput, BatchDeleteImageCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: BatchDeleteImageCommandInput): import("@smithy/smithy-client").CommandImpl<BatchDeleteImageCommandInput, BatchDeleteImageCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a list of specified images that are within a repository in a public registry.
|
|
30
30
|
* Images are specified with either an <code>imageTag</code> or
|
|
31
31
|
* <code>imageDigest</code>.</p>
|
|
@@ -95,6 +95,7 @@ declare const BatchDeleteImageCommand_base: {
|
|
|
95
95
|
* @throws {@link ECRPUBLICServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class BatchDeleteImageCommand extends BatchDeleteImageCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface CompleteLayerUploadCommandOutput extends CompleteLayerUploadRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const CompleteLayerUploadCommand_base: {
|
|
24
24
|
new (input: CompleteLayerUploadCommandInput): import("@smithy/smithy-client").CommandImpl<CompleteLayerUploadCommandInput, CompleteLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CompleteLayerUploadCommandInput): import("@smithy/smithy-client").CommandImpl<CompleteLayerUploadCommandInput, CompleteLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Informs Amazon ECR that the image layer upload is complete for a specified public registry,
|
|
30
30
|
* repository name, and upload ID. You can optionally provide a <code>sha256</code> digest of
|
|
31
31
|
* the image layer for data validation purposes.</p>
|
|
@@ -102,6 +102,7 @@ declare const CompleteLayerUploadCommand_base: {
|
|
|
102
102
|
* @throws {@link ECRPUBLICServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class CompleteLayerUploadCommand extends CompleteLayerUploadCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateRepositoryCommand_base: {
|
|
24
24
|
new (input: CreateRepositoryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateRepositoryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRepositoryCommandInput, CreateRepositoryCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a repository in a public registry. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html">Amazon ECR
|
|
30
30
|
* repositories</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
31
31
|
* @example
|
|
@@ -44,7 +44,7 @@ declare const CreateRepositoryCommand_base: {
|
|
|
44
44
|
* operatingSystems: [ // OperatingSystemList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* logoImageBlob: "
|
|
47
|
+
* logoImageBlob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
48
48
|
* aboutText: "STRING_VALUE",
|
|
49
49
|
* usageText: "STRING_VALUE",
|
|
50
50
|
* },
|
|
@@ -116,6 +116,7 @@ declare const CreateRepositoryCommand_base: {
|
|
|
116
116
|
* @throws {@link ECRPUBLICServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
118
118
|
*
|
|
119
|
+
* @public
|
|
119
120
|
*/
|
|
120
121
|
export declare class CreateRepositoryCommand extends CreateRepositoryCommand_base {
|
|
121
122
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRepositoryCommand_base: {
|
|
24
24
|
new (input: DeleteRepositoryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRepositoryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a repository in a public registry. If the repository contains images, you must
|
|
30
30
|
* either manually delete all images in the repository or use the <code>force</code> option.
|
|
31
31
|
* This option deletes all images on your behalf before deleting the repository.</p>
|
|
@@ -81,6 +81,7 @@ declare const DeleteRepositoryCommand_base: {
|
|
|
81
81
|
* @throws {@link ECRPUBLICServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DeleteRepositoryCommand extends DeleteRepositoryCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRepositoryPolicyCommandOutput extends DeleteRepositoryPol
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRepositoryPolicyCommand_base: {
|
|
24
24
|
new (input: DeleteRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryPolicyCommandInput, DeleteRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRepositoryPolicyCommandInput, DeleteRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the repository policy that's associated with the specified repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const DeleteRepositoryPolicyCommand_base: {
|
|
|
74
74
|
* @throws {@link ECRPUBLICServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteRepositoryPolicyCommand extends DeleteRepositoryPolicyCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeImageTagsCommandOutput extends DescribeImageTagsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeImageTagsCommand_base: {
|
|
24
24
|
new (input: DescribeImageTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeImageTagsCommandInput, DescribeImageTagsCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeImageTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeImageTagsCommandInput, DescribeImageTagsCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the image tag details for a repository in a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const DescribeImageTagsCommand_base: {
|
|
|
83
83
|
* @throws {@link ECRPUBLICServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DescribeImageTagsCommand extends DescribeImageTagsCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeImagesCommand_base: {
|
|
24
24
|
new (input: DescribeImagesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeImagesCommandInput, DescribeImagesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeImagesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeImagesCommandInput, DescribeImagesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns metadata that's related to the images in a repository in a public
|
|
30
30
|
* registry.</p>
|
|
31
31
|
* <note>
|
|
@@ -100,6 +100,7 @@ declare const DescribeImagesCommand_base: {
|
|
|
100
100
|
* @throws {@link ECRPUBLICServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class DescribeImagesCommand extends DescribeImagesCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeRegistriesCommand_base: {
|
|
24
24
|
new (input: DescribeRegistriesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeRegistriesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns details for a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const DescribeRegistriesCommand_base: {
|
|
|
80
80
|
* @throws {@link ECRPUBLICServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DescribeRegistriesCommand extends DescribeRegistriesCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeRepositoriesCommand_base: {
|
|
24
24
|
new (input: DescribeRepositoriesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeRepositoriesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes repositories that are in a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DescribeRepositoriesCommand_base: {
|
|
|
81
81
|
* @throws {@link ECRPUBLICServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DescribeRepositoriesCommand extends DescribeRepositoriesCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAuthorizationTokenCommand_base: {
|
|
24
24
|
new (input: GetAuthorizationTokenCommandInput): import("@smithy/smithy-client").CommandImpl<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetAuthorizationTokenCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves an authorization token. An authorization token represents your IAM
|
|
30
30
|
* authentication credentials. You can use it to access any Amazon ECR registry that your IAM
|
|
31
31
|
* principal has access to. The authorization token is valid for 12 hours. This API requires
|
|
@@ -68,6 +68,7 @@ declare const GetAuthorizationTokenCommand_base: {
|
|
|
68
68
|
* @throws {@link ECRPUBLICServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class GetAuthorizationTokenCommand extends GetAuthorizationTokenCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRegistryCatalogDataCommand_base: {
|
|
24
24
|
new (input: GetRegistryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetRegistryCatalogDataCommandInput]): import("@smithy/smithy-client").CommandImpl<GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves catalog metadata for a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -59,6 +59,7 @@ declare const GetRegistryCatalogDataCommand_base: {
|
|
|
59
59
|
* @throws {@link ECRPUBLICServiceException}
|
|
60
60
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
61
61
|
*
|
|
62
|
+
* @public
|
|
62
63
|
*/
|
|
63
64
|
export declare class GetRegistryCatalogDataCommand extends GetRegistryCatalogDataCommand_base {
|
|
64
65
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRepositoryCatalogDataCommand_base: {
|
|
24
24
|
new (input: GetRepositoryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRepositoryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieve catalog metadata for a repository in a public registry. This metadata is
|
|
30
30
|
* displayed publicly in the Amazon ECR Public Gallery.</p>
|
|
31
31
|
* @example
|
|
@@ -84,6 +84,7 @@ declare const GetRepositoryCatalogDataCommand_base: {
|
|
|
84
84
|
* @throws {@link ECRPUBLICServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class GetRepositoryCatalogDataCommand extends GetRepositoryCatalogDataCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRepositoryPolicyCommand_base: {
|
|
24
24
|
new (input: GetRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the repository policy for the specified repository.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const GetRepositoryPolicyCommand_base: {
|
|
|
74
74
|
* @throws {@link ECRPUBLICServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class GetRepositoryPolicyCommand extends GetRepositoryPolicyCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const InitiateLayerUploadCommand_base: {
|
|
24
24
|
new (input: InitiateLayerUploadCommandInput): import("@smithy/smithy-client").CommandImpl<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: InitiateLayerUploadCommandInput): import("@smithy/smithy-client").CommandImpl<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Notifies Amazon ECR that you intend to upload an image layer.</p>
|
|
30
30
|
* <p>When an image is pushed, the InitiateLayerUpload API is called once for each image layer
|
|
31
31
|
* that hasn't already been uploaded. Whether an image layer uploads is determined by the
|
|
@@ -78,6 +78,7 @@ declare const InitiateLayerUploadCommand_base: {
|
|
|
78
78
|
* @throws {@link ECRPUBLICServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class InitiateLayerUploadCommand extends InitiateLayerUploadCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List the tags for an Amazon ECR Public resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
72
72
|
* @throws {@link ECRPUBLICServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutImageCommand_base: {
|
|
24
24
|
new (input: PutImageCommandInput): import("@smithy/smithy-client").CommandImpl<PutImageCommandInput, PutImageCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutImageCommandInput): import("@smithy/smithy-client").CommandImpl<PutImageCommandInput, PutImageCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates or updates the image manifest and tags that are associated with an image.</p>
|
|
30
30
|
* <p>When an image is pushed and all new image layers have been uploaded, the PutImage API is
|
|
31
31
|
* called once to create or update the image manifest and the tags that are associated with
|
|
@@ -114,6 +114,7 @@ declare const PutImageCommand_base: {
|
|
|
114
114
|
* @throws {@link ECRPUBLICServiceException}
|
|
115
115
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
116
116
|
*
|
|
117
|
+
* @public
|
|
117
118
|
*/
|
|
118
119
|
export declare class PutImageCommand extends PutImageCommand_base {
|
|
119
120
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutRegistryCatalogDataCommand_base: {
|
|
24
24
|
new (input: PutRegistryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [PutRegistryCatalogDataCommandInput]): import("@smithy/smithy-client").CommandImpl<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Create or update the catalog data for a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -65,6 +65,7 @@ declare const PutRegistryCatalogDataCommand_base: {
|
|
|
65
65
|
* @throws {@link ECRPUBLICServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class PutRegistryCatalogDataCommand extends PutRegistryCatalogDataCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutRepositoryCatalogDataCommand_base: {
|
|
24
24
|
new (input: PutRepositoryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutRepositoryCatalogDataCommandInput): import("@smithy/smithy-client").CommandImpl<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates or updates the catalog data for a repository in a public registry.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -44,7 +44,7 @@ declare const PutRepositoryCatalogDataCommand_base: {
|
|
|
44
44
|
* operatingSystems: [ // OperatingSystemList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* logoImageBlob: "
|
|
47
|
+
* logoImageBlob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
48
48
|
* aboutText: "STRING_VALUE",
|
|
49
49
|
* usageText: "STRING_VALUE",
|
|
50
50
|
* },
|
|
@@ -92,6 +92,7 @@ declare const PutRepositoryCatalogDataCommand_base: {
|
|
|
92
92
|
* @throws {@link ECRPUBLICServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class PutRepositoryCatalogDataCommand extends PutRepositoryCatalogDataCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const SetRepositoryPolicyCommand_base: {
|
|
24
24
|
new (input: SetRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SetRepositoryPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Applies a repository policy to the specified public repository to control access
|
|
30
30
|
* permissions. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policies.html">Amazon ECR Repository
|
|
31
31
|
* Policies</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
@@ -74,6 +74,7 @@ declare const SetRepositoryPolicyCommand_base: {
|
|
|
74
74
|
* @throws {@link ECRPUBLICServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class SetRepositoryPolicyCommand extends SetRepositoryPolicyCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associates the specified tags to a resource with the specified <code>resourceArn</code>.
|
|
30
30
|
* If existing tags on a resource aren't specified in the request parameters, they aren't
|
|
31
31
|
* changed. When a resource is deleted, the tags associated with that resource are also
|
|
@@ -81,6 +81,7 @@ declare const TagResourceCommand_base: {
|
|
|
81
81
|
* @throws {@link ECRPUBLICServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes specified tags from a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const UntagResourceCommand_base: {
|
|
|
75
75
|
* @throws {@link ECRPUBLICServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UploadLayerPartCommand_base: {
|
|
24
24
|
new (input: UploadLayerPartCommandInput): import("@smithy/smithy-client").CommandImpl<UploadLayerPartCommandInput, UploadLayerPartCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UploadLayerPartCommandInput): import("@smithy/smithy-client").CommandImpl<UploadLayerPartCommandInput, UploadLayerPartCommandOutput, ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Uploads an image layer part to Amazon ECR.</p>
|
|
30
30
|
* <p>When an image is pushed, each new image layer is uploaded in parts. The maximum size of
|
|
31
31
|
* each image layer part can be 20971520 bytes (about 20MB). The UploadLayerPart API is called
|
|
@@ -45,7 +45,7 @@ declare const UploadLayerPartCommand_base: {
|
|
|
45
45
|
* uploadId: "STRING_VALUE", // required
|
|
46
46
|
* partFirstByte: Number("long"), // required
|
|
47
47
|
* partLastByte: Number("long"), // required
|
|
48
|
-
* layerPartBlob: "
|
|
48
|
+
* layerPartBlob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") // required
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UploadLayerPartCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
@@ -97,6 +97,7 @@ declare const UploadLayerPartCommand_base: {
|
|
|
97
97
|
* @throws {@link ECRPUBLICServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from ECRPUBLIC service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class UploadLayerPartCommand extends UploadLayerPartCommand_base {
|
|
102
103
|
}
|