@aws-sdk/client-ecr-public 3.927.0 → 3.929.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-cjs/index.js +1001 -1142
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/ECRPUBLICClient.js +2 -0
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +3 -9
- package/dist-es/commands/BatchDeleteImageCommand.js +3 -9
- package/dist-es/commands/CompleteLayerUploadCommand.js +3 -9
- package/dist-es/commands/CreateRepositoryCommand.js +3 -9
- package/dist-es/commands/DeleteRepositoryCommand.js +3 -9
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/DescribeImageTagsCommand.js +3 -9
- package/dist-es/commands/DescribeImagesCommand.js +3 -9
- package/dist-es/commands/DescribeRegistriesCommand.js +3 -9
- package/dist-es/commands/DescribeRepositoriesCommand.js +3 -9
- package/dist-es/commands/GetAuthorizationTokenCommand.js +3 -9
- package/dist-es/commands/GetRegistryCatalogDataCommand.js +3 -9
- package/dist-es/commands/GetRepositoryCatalogDataCommand.js +3 -9
- package/dist-es/commands/GetRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/InitiateLayerUploadCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutImageCommand.js +3 -9
- package/dist-es/commands/PutRegistryCatalogDataCommand.js +3 -9
- package/dist-es/commands/PutRepositoryCatalogDataCommand.js +3 -9
- package/dist-es/commands/SetRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UploadLayerPartCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +889 -0
- package/dist-types/ECRPUBLICClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +129 -0
- package/dist-types/ts3.4/ECRPUBLICClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -913
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -281
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { BatchCheckLayerAvailabilityCommandInput, BatchCheckLayerAvailabilityCommandOutput } from "./commands/BatchCheckLayerAvailabilityCommand";
|
|
11
11
|
import { BatchDeleteImageCommandInput, BatchDeleteImageCommandOutput } from "./commands/BatchDeleteImageCommand";
|
|
@@ -164,6 +164,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
164
164
|
* Optional extensions
|
|
165
165
|
*/
|
|
166
166
|
extensions?: RuntimeExtension[];
|
|
167
|
+
/**
|
|
168
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
169
|
+
* may be overridden. A default will always be set by the client.
|
|
170
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
171
|
+
* the client.
|
|
172
|
+
* @alpha
|
|
173
|
+
*
|
|
174
|
+
*/
|
|
175
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
167
176
|
/**
|
|
168
177
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
169
178
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -8,16 +8,13 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
?: import("@smithy/types").Logger;
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
16
12
|
}) => import("@smithy/types").EndpointV2;
|
|
17
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ECRPUBLICHttpAuthSchemeProvider;
|
|
19
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
21
18
|
serviceId: string;
|
|
22
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AuthorizationData: StaticStructureSchema;
|
|
3
|
+
export declare var BatchCheckLayerAvailabilityRequest: StaticStructureSchema;
|
|
4
|
+
export declare var BatchCheckLayerAvailabilityResponse: StaticStructureSchema;
|
|
5
|
+
export declare var BatchDeleteImageRequest: StaticStructureSchema;
|
|
6
|
+
export declare var BatchDeleteImageResponse: StaticStructureSchema;
|
|
7
|
+
export declare var CompleteLayerUploadRequest: StaticStructureSchema;
|
|
8
|
+
export declare var CompleteLayerUploadResponse: StaticStructureSchema;
|
|
9
|
+
export declare var CreateRepositoryRequest: StaticStructureSchema;
|
|
10
|
+
export declare var CreateRepositoryResponse: StaticStructureSchema;
|
|
11
|
+
export declare var DeleteRepositoryPolicyRequest: StaticStructureSchema;
|
|
12
|
+
export declare var DeleteRepositoryPolicyResponse: StaticStructureSchema;
|
|
13
|
+
export declare var DeleteRepositoryRequest: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteRepositoryResponse: StaticStructureSchema;
|
|
15
|
+
export declare var DescribeImagesRequest: StaticStructureSchema;
|
|
16
|
+
export declare var DescribeImagesResponse: StaticStructureSchema;
|
|
17
|
+
export declare var DescribeImageTagsRequest: StaticStructureSchema;
|
|
18
|
+
export declare var DescribeImageTagsResponse: StaticStructureSchema;
|
|
19
|
+
export declare var DescribeRegistriesRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeRegistriesResponse: StaticStructureSchema;
|
|
21
|
+
export declare var DescribeRepositoriesRequest: StaticStructureSchema;
|
|
22
|
+
export declare var DescribeRepositoriesResponse: StaticStructureSchema;
|
|
23
|
+
export declare var EmptyUploadException: StaticErrorSchema;
|
|
24
|
+
export declare var GetAuthorizationTokenRequest: StaticStructureSchema;
|
|
25
|
+
export declare var GetAuthorizationTokenResponse: StaticStructureSchema;
|
|
26
|
+
export declare var GetRegistryCatalogDataRequest: StaticStructureSchema;
|
|
27
|
+
export declare var GetRegistryCatalogDataResponse: StaticStructureSchema;
|
|
28
|
+
export declare var GetRepositoryCatalogDataRequest: StaticStructureSchema;
|
|
29
|
+
export declare var GetRepositoryCatalogDataResponse: StaticStructureSchema;
|
|
30
|
+
export declare var GetRepositoryPolicyRequest: StaticStructureSchema;
|
|
31
|
+
export declare var GetRepositoryPolicyResponse: StaticStructureSchema;
|
|
32
|
+
export declare var Image: StaticStructureSchema;
|
|
33
|
+
export declare var ImageAlreadyExistsException: StaticErrorSchema;
|
|
34
|
+
export declare var ImageDetail: StaticStructureSchema;
|
|
35
|
+
export declare var ImageDigestDoesNotMatchException: StaticErrorSchema;
|
|
36
|
+
export declare var ImageFailure: StaticStructureSchema;
|
|
37
|
+
export declare var ImageIdentifier: StaticStructureSchema;
|
|
38
|
+
export declare var ImageNotFoundException: StaticErrorSchema;
|
|
39
|
+
export declare var ImageTagAlreadyExistsException: StaticErrorSchema;
|
|
40
|
+
export declare var ImageTagDetail: StaticStructureSchema;
|
|
41
|
+
export declare var InitiateLayerUploadRequest: StaticStructureSchema;
|
|
42
|
+
export declare var InitiateLayerUploadResponse: StaticStructureSchema;
|
|
43
|
+
export declare var InvalidLayerException: StaticErrorSchema;
|
|
44
|
+
export declare var InvalidLayerPartException: StaticErrorSchema;
|
|
45
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
46
|
+
export declare var InvalidTagParameterException: StaticErrorSchema;
|
|
47
|
+
export declare var Layer: StaticStructureSchema;
|
|
48
|
+
export declare var LayerAlreadyExistsException: StaticErrorSchema;
|
|
49
|
+
export declare var LayerFailure: StaticStructureSchema;
|
|
50
|
+
export declare var LayerPartTooSmallException: StaticErrorSchema;
|
|
51
|
+
export declare var LayersNotFoundException: StaticErrorSchema;
|
|
52
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
53
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
55
|
+
export declare var PutImageRequest: StaticStructureSchema;
|
|
56
|
+
export declare var PutImageResponse: StaticStructureSchema;
|
|
57
|
+
export declare var PutRegistryCatalogDataRequest: StaticStructureSchema;
|
|
58
|
+
export declare var PutRegistryCatalogDataResponse: StaticStructureSchema;
|
|
59
|
+
export declare var PutRepositoryCatalogDataRequest: StaticStructureSchema;
|
|
60
|
+
export declare var PutRepositoryCatalogDataResponse: StaticStructureSchema;
|
|
61
|
+
export declare var ReferencedImageDetail: StaticStructureSchema;
|
|
62
|
+
export declare var ReferencedImagesNotFoundException: StaticErrorSchema;
|
|
63
|
+
export declare var Registry: StaticStructureSchema;
|
|
64
|
+
export declare var RegistryAlias: StaticStructureSchema;
|
|
65
|
+
export declare var RegistryCatalogData: StaticStructureSchema;
|
|
66
|
+
export declare var RegistryNotFoundException: StaticErrorSchema;
|
|
67
|
+
export declare var Repository: StaticStructureSchema;
|
|
68
|
+
export declare var RepositoryAlreadyExistsException: StaticErrorSchema;
|
|
69
|
+
export declare var RepositoryCatalogData: StaticStructureSchema;
|
|
70
|
+
export declare var RepositoryCatalogDataInput: StaticStructureSchema;
|
|
71
|
+
export declare var RepositoryCatalogDataNotFoundException: StaticErrorSchema;
|
|
72
|
+
export declare var RepositoryNotEmptyException: StaticErrorSchema;
|
|
73
|
+
export declare var RepositoryNotFoundException: StaticErrorSchema;
|
|
74
|
+
export declare var RepositoryPolicyNotFoundException: StaticErrorSchema;
|
|
75
|
+
export declare var ServerException: StaticErrorSchema;
|
|
76
|
+
export declare var SetRepositoryPolicyRequest: StaticStructureSchema;
|
|
77
|
+
export declare var SetRepositoryPolicyResponse: StaticStructureSchema;
|
|
78
|
+
export declare var Tag: StaticStructureSchema;
|
|
79
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
80
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
81
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
82
|
+
export declare var UnsupportedCommandException: StaticErrorSchema;
|
|
83
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
84
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
85
|
+
export declare var UploadLayerPartRequest: StaticStructureSchema;
|
|
86
|
+
export declare var UploadLayerPartResponse: StaticStructureSchema;
|
|
87
|
+
export declare var UploadNotFoundException: StaticErrorSchema;
|
|
88
|
+
export declare var __Unit: "unit";
|
|
89
|
+
export declare var ECRPUBLICServiceException: StaticErrorSchema;
|
|
90
|
+
export declare var ArchitectureList: number;
|
|
91
|
+
export declare var BatchedOperationLayerDigestList: number;
|
|
92
|
+
export declare var ImageDetailList: StaticListSchema;
|
|
93
|
+
export declare var ImageFailureList: StaticListSchema;
|
|
94
|
+
export declare var ImageIdentifierList: StaticListSchema;
|
|
95
|
+
export declare var ImageTagDetailList: StaticListSchema;
|
|
96
|
+
export declare var ImageTagList: number;
|
|
97
|
+
export declare var LayerDigestList: number;
|
|
98
|
+
export declare var LayerFailureList: StaticListSchema;
|
|
99
|
+
export declare var LayerList: StaticListSchema;
|
|
100
|
+
export declare var OperatingSystemList: number;
|
|
101
|
+
export declare var RegistryAliasList: StaticListSchema;
|
|
102
|
+
export declare var RegistryList: StaticListSchema;
|
|
103
|
+
export declare var RepositoryList: StaticListSchema;
|
|
104
|
+
export declare var RepositoryNameList: number;
|
|
105
|
+
export declare var TagKeyList: number;
|
|
106
|
+
export declare var TagList: StaticListSchema;
|
|
107
|
+
export declare var BatchCheckLayerAvailability: StaticOperationSchema;
|
|
108
|
+
export declare var BatchDeleteImage: StaticOperationSchema;
|
|
109
|
+
export declare var CompleteLayerUpload: StaticOperationSchema;
|
|
110
|
+
export declare var CreateRepository: StaticOperationSchema;
|
|
111
|
+
export declare var DeleteRepository: StaticOperationSchema;
|
|
112
|
+
export declare var DeleteRepositoryPolicy: StaticOperationSchema;
|
|
113
|
+
export declare var DescribeImages: StaticOperationSchema;
|
|
114
|
+
export declare var DescribeImageTags: StaticOperationSchema;
|
|
115
|
+
export declare var DescribeRegistries: StaticOperationSchema;
|
|
116
|
+
export declare var DescribeRepositories: StaticOperationSchema;
|
|
117
|
+
export declare var GetAuthorizationToken: StaticOperationSchema;
|
|
118
|
+
export declare var GetRegistryCatalogData: StaticOperationSchema;
|
|
119
|
+
export declare var GetRepositoryCatalogData: StaticOperationSchema;
|
|
120
|
+
export declare var GetRepositoryPolicy: StaticOperationSchema;
|
|
121
|
+
export declare var InitiateLayerUpload: StaticOperationSchema;
|
|
122
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
123
|
+
export declare var PutImage: StaticOperationSchema;
|
|
124
|
+
export declare var PutRegistryCatalogData: StaticOperationSchema;
|
|
125
|
+
export declare var PutRepositoryCatalogData: StaticOperationSchema;
|
|
126
|
+
export declare var SetRepositoryPolicy: StaticOperationSchema;
|
|
127
|
+
export declare var TagResource: StaticOperationSchema;
|
|
128
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
129
|
+
export declare var UploadLayerPart: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -216,6 +219,7 @@ export interface ClientDefaults
|
|
|
216
219
|
retryMode?: string | __Provider<string>;
|
|
217
220
|
logger?: __Logger;
|
|
218
221
|
extensions?: RuntimeExtension[];
|
|
222
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
219
223
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
220
224
|
}
|
|
221
225
|
export type ECRPUBLICClientConfigType = Partial<
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ECRPUBLICHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AuthorizationData: StaticStructureSchema;
|
|
8
|
+
export declare var BatchCheckLayerAvailabilityRequest: StaticStructureSchema;
|
|
9
|
+
export declare var BatchCheckLayerAvailabilityResponse: StaticStructureSchema;
|
|
10
|
+
export declare var BatchDeleteImageRequest: StaticStructureSchema;
|
|
11
|
+
export declare var BatchDeleteImageResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CompleteLayerUploadRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CompleteLayerUploadResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateRepositoryRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateRepositoryResponse: StaticStructureSchema;
|
|
16
|
+
export declare var DeleteRepositoryPolicyRequest: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteRepositoryPolicyResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteRepositoryRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteRepositoryResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeImagesRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DescribeImagesResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DescribeImageTagsRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DescribeImageTagsResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DescribeRegistriesRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DescribeRegistriesResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DescribeRepositoriesRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DescribeRepositoriesResponse: StaticStructureSchema;
|
|
28
|
+
export declare var EmptyUploadException: StaticErrorSchema;
|
|
29
|
+
export declare var GetAuthorizationTokenRequest: StaticStructureSchema;
|
|
30
|
+
export declare var GetAuthorizationTokenResponse: StaticStructureSchema;
|
|
31
|
+
export declare var GetRegistryCatalogDataRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetRegistryCatalogDataResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetRepositoryCatalogDataRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetRepositoryCatalogDataResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetRepositoryPolicyRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetRepositoryPolicyResponse: StaticStructureSchema;
|
|
37
|
+
export declare var Image: StaticStructureSchema;
|
|
38
|
+
export declare var ImageAlreadyExistsException: StaticErrorSchema;
|
|
39
|
+
export declare var ImageDetail: StaticStructureSchema;
|
|
40
|
+
export declare var ImageDigestDoesNotMatchException: StaticErrorSchema;
|
|
41
|
+
export declare var ImageFailure: StaticStructureSchema;
|
|
42
|
+
export declare var ImageIdentifier: StaticStructureSchema;
|
|
43
|
+
export declare var ImageNotFoundException: StaticErrorSchema;
|
|
44
|
+
export declare var ImageTagAlreadyExistsException: StaticErrorSchema;
|
|
45
|
+
export declare var ImageTagDetail: StaticStructureSchema;
|
|
46
|
+
export declare var InitiateLayerUploadRequest: StaticStructureSchema;
|
|
47
|
+
export declare var InitiateLayerUploadResponse: StaticStructureSchema;
|
|
48
|
+
export declare var InvalidLayerException: StaticErrorSchema;
|
|
49
|
+
export declare var InvalidLayerPartException: StaticErrorSchema;
|
|
50
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
51
|
+
export declare var InvalidTagParameterException: StaticErrorSchema;
|
|
52
|
+
export declare var Layer: StaticStructureSchema;
|
|
53
|
+
export declare var LayerAlreadyExistsException: StaticErrorSchema;
|
|
54
|
+
export declare var LayerFailure: StaticStructureSchema;
|
|
55
|
+
export declare var LayerPartTooSmallException: StaticErrorSchema;
|
|
56
|
+
export declare var LayersNotFoundException: StaticErrorSchema;
|
|
57
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
58
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
60
|
+
export declare var PutImageRequest: StaticStructureSchema;
|
|
61
|
+
export declare var PutImageResponse: StaticStructureSchema;
|
|
62
|
+
export declare var PutRegistryCatalogDataRequest: StaticStructureSchema;
|
|
63
|
+
export declare var PutRegistryCatalogDataResponse: StaticStructureSchema;
|
|
64
|
+
export declare var PutRepositoryCatalogDataRequest: StaticStructureSchema;
|
|
65
|
+
export declare var PutRepositoryCatalogDataResponse: StaticStructureSchema;
|
|
66
|
+
export declare var ReferencedImageDetail: StaticStructureSchema;
|
|
67
|
+
export declare var ReferencedImagesNotFoundException: StaticErrorSchema;
|
|
68
|
+
export declare var Registry: StaticStructureSchema;
|
|
69
|
+
export declare var RegistryAlias: StaticStructureSchema;
|
|
70
|
+
export declare var RegistryCatalogData: StaticStructureSchema;
|
|
71
|
+
export declare var RegistryNotFoundException: StaticErrorSchema;
|
|
72
|
+
export declare var Repository: StaticStructureSchema;
|
|
73
|
+
export declare var RepositoryAlreadyExistsException: StaticErrorSchema;
|
|
74
|
+
export declare var RepositoryCatalogData: StaticStructureSchema;
|
|
75
|
+
export declare var RepositoryCatalogDataInput: StaticStructureSchema;
|
|
76
|
+
export declare var RepositoryCatalogDataNotFoundException: StaticErrorSchema;
|
|
77
|
+
export declare var RepositoryNotEmptyException: StaticErrorSchema;
|
|
78
|
+
export declare var RepositoryNotFoundException: StaticErrorSchema;
|
|
79
|
+
export declare var RepositoryPolicyNotFoundException: StaticErrorSchema;
|
|
80
|
+
export declare var ServerException: StaticErrorSchema;
|
|
81
|
+
export declare var SetRepositoryPolicyRequest: StaticStructureSchema;
|
|
82
|
+
export declare var SetRepositoryPolicyResponse: StaticStructureSchema;
|
|
83
|
+
export declare var Tag: StaticStructureSchema;
|
|
84
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
85
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
86
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
87
|
+
export declare var UnsupportedCommandException: StaticErrorSchema;
|
|
88
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
89
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
90
|
+
export declare var UploadLayerPartRequest: StaticStructureSchema;
|
|
91
|
+
export declare var UploadLayerPartResponse: StaticStructureSchema;
|
|
92
|
+
export declare var UploadNotFoundException: StaticErrorSchema;
|
|
93
|
+
export declare var __Unit: "unit";
|
|
94
|
+
export declare var ECRPUBLICServiceException: StaticErrorSchema;
|
|
95
|
+
export declare var ArchitectureList: number;
|
|
96
|
+
export declare var BatchedOperationLayerDigestList: number;
|
|
97
|
+
export declare var ImageDetailList: StaticListSchema;
|
|
98
|
+
export declare var ImageFailureList: StaticListSchema;
|
|
99
|
+
export declare var ImageIdentifierList: StaticListSchema;
|
|
100
|
+
export declare var ImageTagDetailList: StaticListSchema;
|
|
101
|
+
export declare var ImageTagList: number;
|
|
102
|
+
export declare var LayerDigestList: number;
|
|
103
|
+
export declare var LayerFailureList: StaticListSchema;
|
|
104
|
+
export declare var LayerList: StaticListSchema;
|
|
105
|
+
export declare var OperatingSystemList: number;
|
|
106
|
+
export declare var RegistryAliasList: StaticListSchema;
|
|
107
|
+
export declare var RegistryList: StaticListSchema;
|
|
108
|
+
export declare var RepositoryList: StaticListSchema;
|
|
109
|
+
export declare var RepositoryNameList: number;
|
|
110
|
+
export declare var TagKeyList: number;
|
|
111
|
+
export declare var TagList: StaticListSchema;
|
|
112
|
+
export declare var BatchCheckLayerAvailability: StaticOperationSchema;
|
|
113
|
+
export declare var BatchDeleteImage: StaticOperationSchema;
|
|
114
|
+
export declare var CompleteLayerUpload: StaticOperationSchema;
|
|
115
|
+
export declare var CreateRepository: StaticOperationSchema;
|
|
116
|
+
export declare var DeleteRepository: StaticOperationSchema;
|
|
117
|
+
export declare var DeleteRepositoryPolicy: StaticOperationSchema;
|
|
118
|
+
export declare var DescribeImages: StaticOperationSchema;
|
|
119
|
+
export declare var DescribeImageTags: StaticOperationSchema;
|
|
120
|
+
export declare var DescribeRegistries: StaticOperationSchema;
|
|
121
|
+
export declare var DescribeRepositories: StaticOperationSchema;
|
|
122
|
+
export declare var GetAuthorizationToken: StaticOperationSchema;
|
|
123
|
+
export declare var GetRegistryCatalogData: StaticOperationSchema;
|
|
124
|
+
export declare var GetRepositoryCatalogData: StaticOperationSchema;
|
|
125
|
+
export declare var GetRepositoryPolicy: StaticOperationSchema;
|
|
126
|
+
export declare var InitiateLayerUpload: StaticOperationSchema;
|
|
127
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
128
|
+
export declare var PutImage: StaticOperationSchema;
|
|
129
|
+
export declare var PutRegistryCatalogData: StaticOperationSchema;
|
|
130
|
+
export declare var PutRepositoryCatalogData: StaticOperationSchema;
|
|
131
|
+
export declare var SetRepositoryPolicy: StaticOperationSchema;
|
|
132
|
+
export declare var TagResource: StaticOperationSchema;
|
|
133
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
134
|
+
export declare var UploadLayerPart: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecr-public",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ecr-public",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|