@aws-sdk/client-ecr-public 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ECRPUBLIC.d.ts +395 -120
- package/dist-types/ts3.4/ECRPUBLICClient.d.ts +242 -96
- package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeImageTagsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeRegistriesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRegistryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRepositoryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutImageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutRegistryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutRepositoryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ECRPUBLICServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +659 -797
- package/dist-types/ts3.4/pagination/DescribeImageTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeImagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRegistriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRepositoriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteRepositoryPolicyRequest,
|
|
15
|
+
DeleteRepositoryPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteRepositoryPolicyCommandInput
|
|
18
|
+
extends DeleteRepositoryPolicyRequest {}
|
|
19
|
+
export interface DeleteRepositoryPolicyCommandOutput
|
|
20
|
+
extends DeleteRepositoryPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteRepositoryPolicyCommand extends $Command<
|
|
23
|
+
DeleteRepositoryPolicyCommandInput,
|
|
24
|
+
DeleteRepositoryPolicyCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteRepositoryPolicyCommandInput;
|
|
28
|
+
constructor(input: DeleteRepositoryPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteRepositoryPolicyCommandInput,
|
|
35
|
+
DeleteRepositoryPolicyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeImageTagsRequest,
|
|
15
|
+
DescribeImageTagsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeImageTagsCommandInput
|
|
18
|
+
extends DescribeImageTagsRequest {}
|
|
19
|
+
export interface DescribeImageTagsCommandOutput
|
|
20
|
+
extends DescribeImageTagsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeImageTagsCommand extends $Command<
|
|
23
|
+
DescribeImageTagsCommandInput,
|
|
24
|
+
DescribeImageTagsCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeImageTagsCommandInput;
|
|
28
|
+
constructor(input: DescribeImageTagsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeImageTagsCommandInput, DescribeImageTagsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeImagesRequest,
|
|
15
|
+
DescribeImagesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeImagesCommandInput extends DescribeImagesRequest {}
|
|
18
|
+
export interface DescribeImagesCommandOutput
|
|
19
|
+
extends DescribeImagesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeImagesCommand extends $Command<
|
|
22
|
+
DescribeImagesCommandInput,
|
|
23
|
+
DescribeImagesCommandOutput,
|
|
24
|
+
ECRPUBLICClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeImagesCommandInput;
|
|
27
|
+
constructor(input: DescribeImagesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeImagesCommandInput, DescribeImagesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeRegistriesRequest,
|
|
15
|
+
DescribeRegistriesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeRegistriesCommandInput
|
|
18
|
+
extends DescribeRegistriesRequest {}
|
|
19
|
+
export interface DescribeRegistriesCommandOutput
|
|
20
|
+
extends DescribeRegistriesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeRegistriesCommand extends $Command<
|
|
23
|
+
DescribeRegistriesCommandInput,
|
|
24
|
+
DescribeRegistriesCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeRegistriesCommandInput;
|
|
28
|
+
constructor(input: DescribeRegistriesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeRepositoriesRequest,
|
|
15
|
+
DescribeRepositoriesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeRepositoriesCommandInput
|
|
18
|
+
extends DescribeRepositoriesRequest {}
|
|
19
|
+
export interface DescribeRepositoriesCommandOutput
|
|
20
|
+
extends DescribeRepositoriesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeRepositoriesCommand extends $Command<
|
|
23
|
+
DescribeRepositoriesCommandInput,
|
|
24
|
+
DescribeRepositoriesCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeRepositoriesCommandInput;
|
|
28
|
+
constructor(input: DescribeRepositoriesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeRepositoriesCommandInput,
|
|
35
|
+
DescribeRepositoriesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
GetAuthorizationTokenRequest,
|
|
15
|
+
GetAuthorizationTokenResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetAuthorizationTokenCommandInput
|
|
18
|
+
extends GetAuthorizationTokenRequest {}
|
|
19
|
+
export interface GetAuthorizationTokenCommandOutput
|
|
20
|
+
extends GetAuthorizationTokenResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetAuthorizationTokenCommand extends $Command<
|
|
23
|
+
GetAuthorizationTokenCommandInput,
|
|
24
|
+
GetAuthorizationTokenCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAuthorizationTokenCommandInput;
|
|
28
|
+
constructor(input: GetAuthorizationTokenCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetAuthorizationTokenCommandInput,
|
|
35
|
+
GetAuthorizationTokenCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRegistryCatalogDataRequest,
|
|
15
|
+
GetRegistryCatalogDataResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRegistryCatalogDataCommandInput
|
|
18
|
+
extends GetRegistryCatalogDataRequest {}
|
|
19
|
+
export interface GetRegistryCatalogDataCommandOutput
|
|
20
|
+
extends GetRegistryCatalogDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetRegistryCatalogDataCommand extends $Command<
|
|
23
|
+
GetRegistryCatalogDataCommandInput,
|
|
24
|
+
GetRegistryCatalogDataCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRegistryCatalogDataCommandInput;
|
|
28
|
+
constructor(input: GetRegistryCatalogDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetRegistryCatalogDataCommandInput,
|
|
35
|
+
GetRegistryCatalogDataCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRepositoryCatalogDataRequest,
|
|
15
|
+
GetRepositoryCatalogDataResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRepositoryCatalogDataCommandInput
|
|
18
|
+
extends GetRepositoryCatalogDataRequest {}
|
|
19
|
+
export interface GetRepositoryCatalogDataCommandOutput
|
|
20
|
+
extends GetRepositoryCatalogDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetRepositoryCatalogDataCommand extends $Command<
|
|
23
|
+
GetRepositoryCatalogDataCommandInput,
|
|
24
|
+
GetRepositoryCatalogDataCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRepositoryCatalogDataCommandInput;
|
|
28
|
+
constructor(input: GetRepositoryCatalogDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetRepositoryCatalogDataCommandInput,
|
|
35
|
+
GetRepositoryCatalogDataCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRepositoryPolicyRequest,
|
|
15
|
+
GetRepositoryPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRepositoryPolicyCommandInput
|
|
18
|
+
extends GetRepositoryPolicyRequest {}
|
|
19
|
+
export interface GetRepositoryPolicyCommandOutput
|
|
20
|
+
extends GetRepositoryPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetRepositoryPolicyCommand extends $Command<
|
|
23
|
+
GetRepositoryPolicyCommandInput,
|
|
24
|
+
GetRepositoryPolicyCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRepositoryPolicyCommandInput;
|
|
28
|
+
constructor(input: GetRepositoryPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
InitiateLayerUploadRequest,
|
|
15
|
+
InitiateLayerUploadResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface InitiateLayerUploadCommandInput
|
|
18
|
+
extends InitiateLayerUploadRequest {}
|
|
19
|
+
export interface InitiateLayerUploadCommandOutput
|
|
20
|
+
extends InitiateLayerUploadResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class InitiateLayerUploadCommand extends $Command<
|
|
23
|
+
InitiateLayerUploadCommandInput,
|
|
24
|
+
InitiateLayerUploadCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: InitiateLayerUploadCommandInput;
|
|
28
|
+
constructor(input: InitiateLayerUploadCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ECRPUBLICClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ECRPUBLICClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|