@aws-sdk/client-ecr-public 3.295.0 → 3.297.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 +24 -0
- package/dist-types/ECRPUBLICClient.d.ts +24 -4
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +16 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImageTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRegistriesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +16 -0
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +16 -0
- package/dist-types/commands/GetRegistryCatalogDataCommand.d.ts +16 -0
- package/dist-types/commands/GetRepositoryCatalogDataCommand.d.ts +16 -0
- package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/InitiateLayerUploadCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutImageCommand.d.ts +16 -0
- package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +16 -0
- package/dist-types/commands/PutRepositoryCatalogDataCommand.d.ts +16 -0
- package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UploadLayerPartCommand.d.ts +16 -0
- package/dist-types/models/ECRPUBLICServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +190 -0
- package/dist-types/pagination/DescribeImageTagsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeRegistriesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeRepositoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { DescribeImagesRequest, DescribeImagesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeImagesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeImagesCommandInput extends DescribeImagesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeImagesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns metadata that's related to the images in a repository in a public
|
|
18
23
|
* registry.</p>
|
|
19
24
|
* <note>
|
|
@@ -32,6 +37,8 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DescribeImagesCommandInput - {@link DescribeImagesCommandInput}
|
|
41
|
+
* @returns {@link DescribeImagesCommandOutput}
|
|
35
42
|
* @see {@link DescribeImagesCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DescribeImagesCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
|
|
|
58
65
|
export declare class DescribeImagesCommand extends $Command<DescribeImagesCommandInput, DescribeImagesCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
59
66
|
readonly input: DescribeImagesCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DescribeImagesCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeImagesCommandInput, DescribeImagesCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { DescribeRegistriesRequest, DescribeRegistriesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRegistriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRegistriesCommandInput extends DescribeRegistriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRegistriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRegistriesCommandOutput extends DescribeRegistriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns details for a public registry.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeRegistriesCommandInput - {@link DescribeRegistriesCommandInput}
|
|
34
|
+
* @returns {@link DescribeRegistriesCommandOutput}
|
|
28
35
|
* @see {@link DescribeRegistriesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeRegistriesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo
|
|
|
44
51
|
export declare class DescribeRegistriesCommand extends $Command<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
45
52
|
readonly input: DescribeRegistriesCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DescribeRegistriesCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { DescribeRepositoriesRequest, DescribeRepositoriesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRepositoriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRepositoriesCommandInput extends DescribeRepositoriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRepositoriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes repositories that are in a public registry.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeRepositoriesCommandInput - {@link DescribeRepositoriesCommandInput}
|
|
34
|
+
* @returns {@link DescribeRepositoriesCommandOutput}
|
|
28
35
|
* @see {@link DescribeRepositoriesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeRepositoriesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR
|
|
|
48
55
|
export declare class DescribeRepositoriesCommand extends $Command<DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
49
56
|
readonly input: DescribeRepositoriesCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DescribeRepositoriesCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { GetAuthorizationTokenRequest, GetAuthorizationTokenResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAuthorizationTokenCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAuthorizationTokenCommandInput extends GetAuthorizationTokenRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAuthorizationTokenCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationTokenResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an authorization token. An authorization token represents your IAM
|
|
18
23
|
* authentication credentials. You can use it to access any Amazon ECR registry that your IAM
|
|
19
24
|
* principal has access to. The authorization token is valid for 12 hours. This API requires
|
|
@@ -29,6 +34,8 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetAuthorizationTokenCommandInput - {@link GetAuthorizationTokenCommandInput}
|
|
38
|
+
* @returns {@link GetAuthorizationTokenCommandOutput}
|
|
32
39
|
* @see {@link GetAuthorizationTokenCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetAuthorizationTokenCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
48
55
|
export declare class GetAuthorizationTokenCommand extends $Command<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
49
56
|
readonly input: GetAuthorizationTokenCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: GetAuthorizationTokenCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { GetRegistryCatalogDataRequest, GetRegistryCatalogDataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRegistryCatalogDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRegistryCatalogDataCommandInput extends GetRegistryCatalogDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRegistryCatalogDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves catalog metadata for a public registry.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRegistryCatalogDataCommandInput - {@link GetRegistryCatalogDataCommandInput}
|
|
34
|
+
* @returns {@link GetRegistryCatalogDataCommandOutput}
|
|
28
35
|
* @see {@link GetRegistryCatalogDataCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRegistryCatalogDataCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD
|
|
|
40
47
|
export declare class GetRegistryCatalogDataCommand extends $Command<GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
41
48
|
readonly input: GetRegistryCatalogDataCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetRegistryCatalogDataCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { GetRepositoryCatalogDataRequest, GetRepositoryCatalogDataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRepositoryCatalogDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRepositoryCatalogDataCommandInput extends GetRepositoryCatalogDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRepositoryCatalogDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCatalogDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieve catalog metadata for a repository in a public registry. This metadata is
|
|
18
23
|
* displayed publicly in the Amazon ECR Public Gallery.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetRepositoryCatalogDataCommandInput - {@link GetRepositoryCatalogDataCommandInput}
|
|
35
|
+
* @returns {@link GetRepositoryCatalogDataCommandOutput}
|
|
29
36
|
* @see {@link GetRepositoryCatalogDataCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetRepositoryCatalogDataCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata
|
|
|
52
59
|
export declare class GetRepositoryCatalogDataCommand extends $Command<GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
53
60
|
readonly input: GetRepositoryCatalogDataCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetRepositoryCatalogDataCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { GetRepositoryPolicyRequest, GetRepositoryPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRepositoryPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRepositoryPolicyCommandInput extends GetRepositoryPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRepositoryPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the repository policy for the specified repository.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRepositoryPolicyCommandInput - {@link GetRepositoryPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetRepositoryPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetRepositoryPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRepositoryPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
|
|
|
52
59
|
export declare class GetRepositoryPolicyCommand extends $Command<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
53
60
|
readonly input: GetRepositoryPolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetRepositoryPolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { InitiateLayerUploadRequest, InitiateLayerUploadResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link InitiateLayerUploadCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface InitiateLayerUploadCommandInput extends InitiateLayerUploadRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link InitiateLayerUploadCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Notifies Amazon ECR that you intend to upload an image layer.</p>
|
|
18
23
|
* <p>When an image is pushed, the InitiateLayerUpload API is called once for each image layer
|
|
19
24
|
* that hasn't already been uploaded. Whether an image layer uploads is determined by the
|
|
@@ -31,6 +36,8 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param InitiateLayerUploadCommandInput - {@link InitiateLayerUploadCommandInput}
|
|
40
|
+
* @returns {@link InitiateLayerUploadCommandOutput}
|
|
34
41
|
* @see {@link InitiateLayerUploadCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link InitiateLayerUploadCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
|
|
|
57
64
|
export declare class InitiateLayerUploadCommand extends $Command<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
58
65
|
readonly input: InitiateLayerUploadCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: InitiateLayerUploadCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the tags for an Amazon ECR Public resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
55
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
49
56
|
readonly input: ListTagsForResourceCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListTagsForResourceCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { PutImageRequest, PutImageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutImageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutImageCommandInput extends PutImageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutImageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutImageCommandOutput extends PutImageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates or updates the image manifest and tags that are associated with an image.</p>
|
|
18
23
|
* <p>When an image is pushed and all new image layers have been uploaded, the PutImage API is
|
|
19
24
|
* called once to create or update the image manifest and the tags that are associated with
|
|
@@ -32,6 +37,8 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param PutImageCommandInput - {@link PutImageCommandInput}
|
|
41
|
+
* @returns {@link PutImageCommandOutput}
|
|
35
42
|
* @see {@link PutImageCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link PutImageCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
|
|
|
82
89
|
export declare class PutImageCommand extends $Command<PutImageCommandInput, PutImageCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
83
90
|
readonly input: PutImageCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: PutImageCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutImageCommandInput, PutImageCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { PutRegistryCatalogDataRequest, PutRegistryCatalogDataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutRegistryCatalogDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutRegistryCatalogDataCommandInput extends PutRegistryCatalogDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutRegistryCatalogDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create or update the catalog data for a public registry.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutRegistryCatalogDataCommandInput - {@link PutRegistryCatalogDataCommandInput}
|
|
34
|
+
* @returns {@link PutRegistryCatalogDataCommandOutput}
|
|
28
35
|
* @see {@link PutRegistryCatalogDataCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutRegistryCatalogDataCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD
|
|
|
44
51
|
export declare class PutRegistryCatalogDataCommand extends $Command<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
45
52
|
readonly input: PutRegistryCatalogDataCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: PutRegistryCatalogDataCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { PutRepositoryCatalogDataRequest, PutRepositoryCatalogDataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutRepositoryCatalogDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutRepositoryCatalogDataCommandInput extends PutRepositoryCatalogDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutRepositoryCatalogDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCatalogDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates or updates the catalog data for a repository in a public registry.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutRepositoryCatalogDataCommandInput - {@link PutRepositoryCatalogDataCommandInput}
|
|
34
|
+
* @returns {@link PutRepositoryCatalogDataCommandOutput}
|
|
28
35
|
* @see {@link PutRepositoryCatalogDataCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutRepositoryCatalogDataCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata
|
|
|
48
55
|
export declare class PutRepositoryCatalogDataCommand extends $Command<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
49
56
|
readonly input: PutRepositoryCatalogDataCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: PutRepositoryCatalogDataCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
|
|
5
5
|
import { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SetRepositoryPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SetRepositoryPolicyCommandInput extends SetRepositoryPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SetRepositoryPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Applies a repository policy to the specified public repository to control access
|
|
18
23
|
* permissions. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policies.html">Amazon ECR Repository
|
|
19
24
|
* Policies</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param SetRepositoryPolicyCommandInput - {@link SetRepositoryPolicyCommandInput}
|
|
36
|
+
* @returns {@link SetRepositoryPolicyCommandOutput}
|
|
30
37
|
* @see {@link SetRepositoryPolicyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link SetRepositoryPolicyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ECRPUBLICClientResolvedConfig | config} for ECRPUBLICClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes
|
|
|
50
57
|
export declare class SetRepositoryPolicyCommand extends $Command<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
|
|
51
58
|
readonly input: SetRepositoryPolicyCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: SetRepositoryPolicyCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|