@aws-sdk/client-ecr 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/ECR.d.ts +42 -0
- package/dist-types/ECRClient.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/BatchGetImageCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetRepositoryScanningConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +16 -0
- package/dist-types/commands/CreatePullThroughCacheRuleCommand.d.ts +16 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeletePullThroughCacheRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRegistryPolicyCommand.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/DescribeImageReplicationStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImageScanFindingsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +16 -0
- package/dist-types/commands/DescribePullThroughCacheRulesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRegistryCommand.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/GetDownloadUrlForLayerCommand.d.ts +16 -0
- package/dist-types/commands/GetLifecyclePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetLifecyclePolicyPreviewCommand.d.ts +16 -0
- package/dist-types/commands/GetRegistryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetRegistryScanningConfigurationCommand.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/ListImagesCommand.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/PutImageScanningConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/PutImageTagMutabilityCommand.d.ts +16 -0
- package/dist-types/commands/PutLifecyclePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutRegistryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutRegistryScanningConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/PutReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartImageScanCommand.d.ts +16 -0
- package/dist-types/commands/StartLifecyclePolicyPreviewCommand.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/ECRServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +370 -0
- package/dist-types/pagination/DescribeImageScanFindingsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribePullThroughCacheRulesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeRepositoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetLifecyclePolicyPreviewPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
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 and can be used to access any Amazon ECR registry that your IAM
|
|
19
24
|
* principal has access to. The authorization token is valid for 12 hours.</p>
|
|
@@ -32,6 +37,8 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param GetAuthorizationTokenCommandInput - {@link GetAuthorizationTokenCommandInput}
|
|
41
|
+
* @returns {@link GetAuthorizationTokenCommandOutput}
|
|
35
42
|
* @see {@link GetAuthorizationTokenCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link GetAuthorizationTokenCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
68
75
|
export declare class GetAuthorizationTokenCommand extends $Command<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput, ECRClientResolvedConfig> {
|
|
69
76
|
readonly input: GetAuthorizationTokenCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: GetAuthorizationTokenCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { GetDownloadUrlForLayerRequest, GetDownloadUrlForLayerResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDownloadUrlForLayerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDownloadUrlForLayerCommandInput extends GetDownloadUrlForLayerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDownloadUrlForLayerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDownloadUrlForLayerCommandOutput extends GetDownloadUrlForLayerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the pre-signed Amazon S3 download URL corresponding to an image layer. You can
|
|
18
23
|
* only get URLs for image layers that are referenced in an image.</p>
|
|
19
24
|
* <p>When an image is pulled, the GetDownloadUrlForLayer API is called once per image layer
|
|
@@ -32,6 +37,8 @@ export interface GetDownloadUrlForLayerCommandOutput extends GetDownloadUrlForLa
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param GetDownloadUrlForLayerCommandInput - {@link GetDownloadUrlForLayerCommandInput}
|
|
41
|
+
* @returns {@link GetDownloadUrlForLayerCommandOutput}
|
|
35
42
|
* @see {@link GetDownloadUrlForLayerCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link GetDownloadUrlForLayerCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface GetDownloadUrlForLayerCommandOutput extends GetDownloadUrlForLa
|
|
|
60
67
|
export declare class GetDownloadUrlForLayerCommand extends $Command<GetDownloadUrlForLayerCommandInput, GetDownloadUrlForLayerCommandOutput, ECRClientResolvedConfig> {
|
|
61
68
|
readonly input: GetDownloadUrlForLayerCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: GetDownloadUrlForLayerCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDownloadUrlForLayerCommandInput, GetDownloadUrlForLayerCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLifecyclePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLifecyclePolicyCommandInput extends GetLifecyclePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLifecyclePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the lifecycle 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 GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLifecyclePolicyCommandInput - {@link GetLifecyclePolicyCommandInput}
|
|
34
|
+
* @returns {@link GetLifecyclePolicyCommandOutput}
|
|
28
35
|
* @see {@link GetLifecyclePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLifecyclePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo
|
|
|
49
56
|
export declare class GetLifecyclePolicyCommand extends $Command<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, ECRClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLifecyclePolicyCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLifecyclePolicyCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { GetLifecyclePolicyPreviewRequest, GetLifecyclePolicyPreviewResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLifecyclePolicyPreviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLifecyclePolicyPreviewCommandInput extends GetLifecyclePolicyPreviewRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLifecyclePolicyPreviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLifecyclePolicyPreviewCommandOutput extends GetLifecyclePolicyPreviewResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the results of the lifecycle policy preview request for the specified
|
|
18
23
|
* repository.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetLifecyclePolicyPreviewCommandOutput extends GetLifecyclePoli
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetLifecyclePolicyPreviewCommandInput - {@link GetLifecyclePolicyPreviewCommandInput}
|
|
35
|
+
* @returns {@link GetLifecyclePolicyPreviewCommandOutput}
|
|
29
36
|
* @see {@link GetLifecyclePolicyPreviewCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetLifecyclePolicyPreviewCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLifecyclePolicyPreviewCommandOutput extends GetLifecyclePoli
|
|
|
49
56
|
export declare class GetLifecyclePolicyPreviewCommand extends $Command<GetLifecyclePolicyPreviewCommandInput, GetLifecyclePolicyPreviewCommandOutput, ECRClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLifecyclePolicyPreviewCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLifecyclePolicyPreviewCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLifecyclePolicyPreviewCommandInput, GetLifecyclePolicyPreviewCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { GetRegistryPolicyRequest, GetRegistryPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRegistryPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRegistryPolicyCommandInput extends GetRegistryPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRegistryPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRegistryPolicyCommandOutput extends GetRegistryPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the permissions policy for a 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 GetRegistryPolicyCommandOutput extends GetRegistryPolicyRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRegistryPolicyCommandInput - {@link GetRegistryPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetRegistryPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetRegistryPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRegistryPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetRegistryPolicyCommandOutput extends GetRegistryPolicyRespons
|
|
|
47
54
|
export declare class GetRegistryPolicyCommand extends $Command<GetRegistryPolicyCommandInput, GetRegistryPolicyCommandOutput, ECRClientResolvedConfig> {
|
|
48
55
|
readonly input: GetRegistryPolicyCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetRegistryPolicyCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRegistryPolicyCommandInput, GetRegistryPolicyCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { GetRegistryScanningConfigurationRequest, GetRegistryScanningConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRegistryScanningConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRegistryScanningConfigurationCommandInput extends GetRegistryScanningConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRegistryScanningConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRegistryScanningConfigurationCommandOutput extends GetRegistryScanningConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the scanning configuration for a 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 GetRegistryScanningConfigurationCommandOutput extends GetRegist
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRegistryScanningConfigurationCommandInput - {@link GetRegistryScanningConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetRegistryScanningConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetRegistryScanningConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRegistryScanningConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetRegistryScanningConfigurationCommandOutput extends GetRegist
|
|
|
44
51
|
export declare class GetRegistryScanningConfigurationCommand extends $Command<GetRegistryScanningConfigurationCommandInput, GetRegistryScanningConfigurationCommandOutput, ECRClientResolvedConfig> {
|
|
45
52
|
readonly input: GetRegistryScanningConfigurationCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetRegistryScanningConfigurationCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRegistryScanningConfigurationCommandInput, GetRegistryScanningConfigurationCommandOutput>;
|
|
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 { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
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 ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
|
|
|
67
74
|
export declare class GetRepositoryPolicyCommand extends $Command<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput, ECRClientResolvedConfig> {
|
|
68
75
|
readonly input: GetRepositoryPolicyCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: GetRepositoryPolicyCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
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 per image layer
|
|
19
24
|
* that has not already been uploaded. Whether or not an image layer has been uploaded is
|
|
@@ -32,6 +37,8 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param InitiateLayerUploadCommandInput - {@link InitiateLayerUploadCommandInput}
|
|
41
|
+
* @returns {@link InitiateLayerUploadCommandOutput}
|
|
35
42
|
* @see {@link InitiateLayerUploadCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link InitiateLayerUploadCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
|
|
|
55
62
|
export declare class InitiateLayerUploadCommand extends $Command<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput, ECRClientResolvedConfig> {
|
|
56
63
|
readonly input: InitiateLayerUploadCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: InitiateLayerUploadCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { ListImagesRequest, ListImagesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListImagesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListImagesCommandInput extends ListImagesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListImagesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the image IDs for the specified repository.</p>
|
|
18
23
|
* <p>You can filter images based on whether or not they are tagged by using the
|
|
19
24
|
* <code>tagStatus</code> filter and specifying either <code>TAGGED</code>,
|
|
@@ -31,6 +36,8 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListImagesCommandInput - {@link ListImagesCommandInput}
|
|
40
|
+
* @returns {@link ListImagesCommandOutput}
|
|
34
41
|
* @see {@link ListImagesCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListImagesCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
|
|
|
72
79
|
export declare class ListImagesCommand extends $Command<ListImagesCommandInput, ListImagesCommandOutput, ECRClientResolvedConfig> {
|
|
73
80
|
readonly input: ListImagesCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: ListImagesCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListImagesCommandInput, ListImagesCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
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 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 ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
45
52
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECRClientResolvedConfig> {
|
|
46
53
|
readonly input: ListTagsForResourceCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListTagsForResourceCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
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 associated with an image.</p>
|
|
18
23
|
* <p>When an image is pushed and all new image layers have been uploaded, the PutImage API
|
|
19
24
|
* is called once to create or update the image manifest and the tags associated with the
|
|
@@ -33,6 +38,8 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param PutImageCommandInput - {@link PutImageCommandInput}
|
|
42
|
+
* @returns {@link PutImageCommandOutput}
|
|
36
43
|
* @see {@link PutImageCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link PutImageCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -80,11 +87,20 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
|
|
|
80
87
|
export declare class PutImageCommand extends $Command<PutImageCommandInput, PutImageCommandOutput, ECRClientResolvedConfig> {
|
|
81
88
|
readonly input: PutImageCommandInput;
|
|
82
89
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
83
93
|
constructor(input: PutImageCommandInput);
|
|
84
94
|
/**
|
|
85
95
|
* @internal
|
|
86
96
|
*/
|
|
87
97
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutImageCommandInput, PutImageCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
88
101
|
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
89
105
|
private deserialize;
|
|
90
106
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { PutImageScanningConfigurationRequest, PutImageScanningConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutImageScanningConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutImageScanningConfigurationCommandInput extends PutImageScanningConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutImageScanningConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutImageScanningConfigurationCommandOutput extends PutImageScanningConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <important>
|
|
18
23
|
* <p>The <code>PutImageScanningConfiguration</code> API is being deprecated, in favor
|
|
19
24
|
* of specifying the image scanning configuration at the registry level. For more
|
|
@@ -30,6 +35,8 @@ export interface PutImageScanningConfigurationCommandOutput extends PutImageScan
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param PutImageScanningConfigurationCommandInput - {@link PutImageScanningConfigurationCommandInput}
|
|
39
|
+
* @returns {@link PutImageScanningConfigurationCommandOutput}
|
|
33
40
|
* @see {@link PutImageScanningConfigurationCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link PutImageScanningConfigurationCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface PutImageScanningConfigurationCommandOutput extends PutImageScan
|
|
|
53
60
|
export declare class PutImageScanningConfigurationCommand extends $Command<PutImageScanningConfigurationCommandInput, PutImageScanningConfigurationCommandOutput, ECRClientResolvedConfig> {
|
|
54
61
|
readonly input: PutImageScanningConfigurationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: PutImageScanningConfigurationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutImageScanningConfigurationCommandInput, PutImageScanningConfigurationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient";
|
|
5
5
|
import { PutImageTagMutabilityRequest, PutImageTagMutabilityResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutImageTagMutabilityCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutImageTagMutabilityCommandInput extends PutImageTagMutabilityRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutImageTagMutabilityCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutImageTagMutabilityCommandOutput extends PutImageTagMutabilityResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the image tag mutability settings for the specified repository. For more
|
|
18
23
|
* information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-tag-mutability.html">Image tag
|
|
19
24
|
* mutability</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface PutImageTagMutabilityCommandOutput extends PutImageTagMutabilit
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param PutImageTagMutabilityCommandInput - {@link PutImageTagMutabilityCommandInput}
|
|
36
|
+
* @returns {@link PutImageTagMutabilityCommandOutput}
|
|
30
37
|
* @see {@link PutImageTagMutabilityCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link PutImageTagMutabilityCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface PutImageTagMutabilityCommandOutput extends PutImageTagMutabilit
|
|
|
47
54
|
export declare class PutImageTagMutabilityCommand extends $Command<PutImageTagMutabilityCommandInput, PutImageTagMutabilityCommandOutput, ECRClientResolvedConfig> {
|
|
48
55
|
readonly input: PutImageTagMutabilityCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: PutImageTagMutabilityCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutImageTagMutabilityCommandInput, PutImageTagMutabilityCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|