@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.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ECRPUBLIC.d.ts +395 -120
  3. package/dist-types/ts3.4/ECRPUBLICClient.d.ts +242 -96
  4. package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeImageTagsCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeRegistriesCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetRegistryCatalogDataCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/GetRepositoryCatalogDataCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/PutImageCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/PutRegistryCatalogDataCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/PutRepositoryCatalogDataCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/ECRPUBLICServiceException.d.ts +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +659 -797
  33. package/dist-types/ts3.4/pagination/DescribeImageTagsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/DescribeImagesPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/DescribeRegistriesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeRepositoriesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { PutImageRequest, PutImageResponse } from "../models/models_0";
5
- export interface PutImageCommandInput extends PutImageRequest {
6
- }
7
- export interface PutImageCommandOutput extends PutImageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutImageCommand extends $Command<PutImageCommandInput, PutImageCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: PutImageCommandInput;
12
- constructor(input: PutImageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutImageCommandInput, PutImageCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { PutRegistryCatalogDataRequest, PutRegistryCatalogDataResponse } from "../models/models_0";
5
- export interface PutRegistryCatalogDataCommandInput extends PutRegistryCatalogDataRequest {
6
- }
7
- export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogDataResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRegistryCatalogDataCommand extends $Command<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: PutRegistryCatalogDataCommandInput;
12
- constructor(input: PutRegistryCatalogDataCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { PutRepositoryCatalogDataRequest, PutRepositoryCatalogDataResponse } from "../models/models_0";
5
- export interface PutRepositoryCatalogDataCommandInput extends PutRepositoryCatalogDataRequest {
6
- }
7
- export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCatalogDataResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRepositoryCatalogDataCommand extends $Command<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: PutRepositoryCatalogDataCommandInput;
12
- constructor(input: PutRepositoryCatalogDataCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0";
5
- export interface SetRepositoryPolicyCommandInput extends SetRepositoryPolicyRequest {
6
- }
7
- export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SetRepositoryPolicyCommand extends $Command<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: SetRepositoryPolicyCommandInput;
12
- constructor(input: SetRepositoryPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient";
4
- import { UploadLayerPartRequest, UploadLayerPartResponse } from "../models/models_0";
5
- export interface UploadLayerPartCommandInput extends UploadLayerPartRequest {
6
- }
7
- export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UploadLayerPartCommand extends $Command<UploadLayerPartCommandInput, UploadLayerPartCommandOutput, ECRPUBLICClientResolvedConfig> {
11
- readonly input: UploadLayerPartCommandInput;
12
- constructor(input: UploadLayerPartCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECRPUBLICClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UploadLayerPartCommandInput, UploadLayerPartCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ECRPUBLICServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
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";