@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,32 @@
|
|
|
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 { PutImageRequest, PutImageResponse } from "../models/models_0";
|
|
14
|
+
export interface PutImageCommandInput extends PutImageRequest {}
|
|
15
|
+
export interface PutImageCommandOutput
|
|
16
|
+
extends PutImageResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class PutImageCommand extends $Command<
|
|
19
|
+
PutImageCommandInput,
|
|
20
|
+
PutImageCommandOutput,
|
|
21
|
+
ECRPUBLICClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PutImageCommandInput;
|
|
24
|
+
constructor(input: PutImageCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutImageCommandInput, PutImageCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
PutRegistryCatalogDataRequest,
|
|
15
|
+
PutRegistryCatalogDataResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutRegistryCatalogDataCommandInput
|
|
18
|
+
extends PutRegistryCatalogDataRequest {}
|
|
19
|
+
export interface PutRegistryCatalogDataCommandOutput
|
|
20
|
+
extends PutRegistryCatalogDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutRegistryCatalogDataCommand extends $Command<
|
|
23
|
+
PutRegistryCatalogDataCommandInput,
|
|
24
|
+
PutRegistryCatalogDataCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutRegistryCatalogDataCommandInput;
|
|
28
|
+
constructor(input: PutRegistryCatalogDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
PutRegistryCatalogDataCommandInput,
|
|
35
|
+
PutRegistryCatalogDataCommandOutput
|
|
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
|
+
PutRepositoryCatalogDataRequest,
|
|
15
|
+
PutRepositoryCatalogDataResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutRepositoryCatalogDataCommandInput
|
|
18
|
+
extends PutRepositoryCatalogDataRequest {}
|
|
19
|
+
export interface PutRepositoryCatalogDataCommandOutput
|
|
20
|
+
extends PutRepositoryCatalogDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutRepositoryCatalogDataCommand extends $Command<
|
|
23
|
+
PutRepositoryCatalogDataCommandInput,
|
|
24
|
+
PutRepositoryCatalogDataCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutRepositoryCatalogDataCommandInput;
|
|
28
|
+
constructor(input: PutRepositoryCatalogDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
PutRepositoryCatalogDataCommandInput,
|
|
35
|
+
PutRepositoryCatalogDataCommandOutput
|
|
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
|
+
SetRepositoryPolicyRequest,
|
|
15
|
+
SetRepositoryPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface SetRepositoryPolicyCommandInput
|
|
18
|
+
extends SetRepositoryPolicyRequest {}
|
|
19
|
+
export interface SetRepositoryPolicyCommandOutput
|
|
20
|
+
extends SetRepositoryPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class SetRepositoryPolicyCommand extends $Command<
|
|
23
|
+
SetRepositoryPolicyCommandInput,
|
|
24
|
+
SetRepositoryPolicyCommandOutput,
|
|
25
|
+
ECRPUBLICClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SetRepositoryPolicyCommandInput;
|
|
28
|
+
constructor(input: SetRepositoryPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
ECRPUBLICClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
ECRPUBLICClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
UploadLayerPartRequest,
|
|
15
|
+
UploadLayerPartResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UploadLayerPartCommandInput extends UploadLayerPartRequest {}
|
|
18
|
+
export interface UploadLayerPartCommandOutput
|
|
19
|
+
extends UploadLayerPartResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UploadLayerPartCommand extends $Command<
|
|
22
|
+
UploadLayerPartCommandInput,
|
|
23
|
+
UploadLayerPartCommandOutput,
|
|
24
|
+
ECRPUBLICClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UploadLayerPartCommandInput;
|
|
27
|
+
constructor(input: UploadLayerPartCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ECRPUBLICClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UploadLayerPartCommandInput, UploadLayerPartCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export * from "./BatchCheckLayerAvailabilityCommand";
|
|
2
|
-
export * from "./BatchDeleteImageCommand";
|
|
3
|
-
export * from "./CompleteLayerUploadCommand";
|
|
4
|
-
export * from "./CreateRepositoryCommand";
|
|
5
|
-
export * from "./DeleteRepositoryCommand";
|
|
6
|
-
export * from "./DeleteRepositoryPolicyCommand";
|
|
7
|
-
export * from "./DescribeImageTagsCommand";
|
|
8
|
-
export * from "./DescribeImagesCommand";
|
|
9
|
-
export * from "./DescribeRegistriesCommand";
|
|
10
|
-
export * from "./DescribeRepositoriesCommand";
|
|
11
|
-
export * from "./GetAuthorizationTokenCommand";
|
|
12
|
-
export * from "./GetRegistryCatalogDataCommand";
|
|
13
|
-
export * from "./GetRepositoryCatalogDataCommand";
|
|
14
|
-
export * from "./GetRepositoryPolicyCommand";
|
|
15
|
-
export * from "./InitiateLayerUploadCommand";
|
|
16
|
-
export * from "./ListTagsForResourceCommand";
|
|
17
|
-
export * from "./PutImageCommand";
|
|
18
|
-
export * from "./PutRegistryCatalogDataCommand";
|
|
19
|
-
export * from "./PutRepositoryCatalogDataCommand";
|
|
20
|
-
export * from "./SetRepositoryPolicyCommand";
|
|
21
|
-
export * from "./TagResourceCommand";
|
|
22
|
-
export * from "./UntagResourceCommand";
|
|
23
|
-
export * from "./UploadLayerPartCommand";
|
|
1
|
+
export * from "./BatchCheckLayerAvailabilityCommand";
|
|
2
|
+
export * from "./BatchDeleteImageCommand";
|
|
3
|
+
export * from "./CompleteLayerUploadCommand";
|
|
4
|
+
export * from "./CreateRepositoryCommand";
|
|
5
|
+
export * from "./DeleteRepositoryCommand";
|
|
6
|
+
export * from "./DeleteRepositoryPolicyCommand";
|
|
7
|
+
export * from "./DescribeImageTagsCommand";
|
|
8
|
+
export * from "./DescribeImagesCommand";
|
|
9
|
+
export * from "./DescribeRegistriesCommand";
|
|
10
|
+
export * from "./DescribeRepositoriesCommand";
|
|
11
|
+
export * from "./GetAuthorizationTokenCommand";
|
|
12
|
+
export * from "./GetRegistryCatalogDataCommand";
|
|
13
|
+
export * from "./GetRepositoryCatalogDataCommand";
|
|
14
|
+
export * from "./GetRepositoryPolicyCommand";
|
|
15
|
+
export * from "./InitiateLayerUploadCommand";
|
|
16
|
+
export * from "./ListTagsForResourceCommand";
|
|
17
|
+
export * from "./PutImageCommand";
|
|
18
|
+
export * from "./PutRegistryCatalogDataCommand";
|
|
19
|
+
export * from "./PutRepositoryCatalogDataCommand";
|
|
20
|
+
export * from "./SetRepositoryPolicyCommand";
|
|
21
|
+
export * from "./TagResourceCommand";
|
|
22
|
+
export * from "./UntagResourceCommand";
|
|
23
|
+
export * from "./UploadLayerPartCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ECRPUBLIC";
|
|
2
|
-
export * from "./ECRPUBLICClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ECRPUBLICServiceException } from "./models/ECRPUBLICServiceException";
|
|
1
|
+
export * from "./ECRPUBLIC";
|
|
2
|
+
export * from "./ECRPUBLICClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ECRPUBLICServiceException } from "./models/ECRPUBLICServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class ECRPUBLICServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|