@aws-sdk/client-ecr-public 3.721.0 → 3.723.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 +273 -199
- package/dist-es/ECRPUBLICClient.js +1 -0
- package/dist-es/models/models_0.js +52 -48
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ECRPUBLICClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -8,62 +8,62 @@ export const LayerAvailability = {
|
|
|
8
8
|
UNAVAILABLE: "UNAVAILABLE",
|
|
9
9
|
};
|
|
10
10
|
export class InvalidParameterException extends __BaseException {
|
|
11
|
+
name = "InvalidParameterException";
|
|
12
|
+
$fault = "client";
|
|
11
13
|
constructor(opts) {
|
|
12
14
|
super({
|
|
13
15
|
name: "InvalidParameterException",
|
|
14
16
|
$fault: "client",
|
|
15
17
|
...opts,
|
|
16
18
|
});
|
|
17
|
-
this.name = "InvalidParameterException";
|
|
18
|
-
this.$fault = "client";
|
|
19
19
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
export class RegistryNotFoundException extends __BaseException {
|
|
23
|
+
name = "RegistryNotFoundException";
|
|
24
|
+
$fault = "client";
|
|
23
25
|
constructor(opts) {
|
|
24
26
|
super({
|
|
25
27
|
name: "RegistryNotFoundException",
|
|
26
28
|
$fault: "client",
|
|
27
29
|
...opts,
|
|
28
30
|
});
|
|
29
|
-
this.name = "RegistryNotFoundException";
|
|
30
|
-
this.$fault = "client";
|
|
31
31
|
Object.setPrototypeOf(this, RegistryNotFoundException.prototype);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
export class RepositoryNotFoundException extends __BaseException {
|
|
35
|
+
name = "RepositoryNotFoundException";
|
|
36
|
+
$fault = "client";
|
|
35
37
|
constructor(opts) {
|
|
36
38
|
super({
|
|
37
39
|
name: "RepositoryNotFoundException",
|
|
38
40
|
$fault: "client",
|
|
39
41
|
...opts,
|
|
40
42
|
});
|
|
41
|
-
this.name = "RepositoryNotFoundException";
|
|
42
|
-
this.$fault = "client";
|
|
43
43
|
Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
export class ServerException extends __BaseException {
|
|
47
|
+
name = "ServerException";
|
|
48
|
+
$fault = "server";
|
|
47
49
|
constructor(opts) {
|
|
48
50
|
super({
|
|
49
51
|
name: "ServerException",
|
|
50
52
|
$fault: "server",
|
|
51
53
|
...opts,
|
|
52
54
|
});
|
|
53
|
-
this.name = "ServerException";
|
|
54
|
-
this.$fault = "server";
|
|
55
55
|
Object.setPrototypeOf(this, ServerException.prototype);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
export class UnsupportedCommandException extends __BaseException {
|
|
59
|
+
name = "UnsupportedCommandException";
|
|
60
|
+
$fault = "client";
|
|
59
61
|
constructor(opts) {
|
|
60
62
|
super({
|
|
61
63
|
name: "UnsupportedCommandException",
|
|
62
64
|
$fault: "client",
|
|
63
65
|
...opts,
|
|
64
66
|
});
|
|
65
|
-
this.name = "UnsupportedCommandException";
|
|
66
|
-
this.$fault = "client";
|
|
67
67
|
Object.setPrototypeOf(this, UnsupportedCommandException.prototype);
|
|
68
68
|
}
|
|
69
69
|
}
|
|
@@ -77,146 +77,146 @@ export const ImageFailureCode = {
|
|
|
77
77
|
MissingDigestAndTag: "MissingDigestAndTag",
|
|
78
78
|
};
|
|
79
79
|
export class EmptyUploadException extends __BaseException {
|
|
80
|
+
name = "EmptyUploadException";
|
|
81
|
+
$fault = "client";
|
|
80
82
|
constructor(opts) {
|
|
81
83
|
super({
|
|
82
84
|
name: "EmptyUploadException",
|
|
83
85
|
$fault: "client",
|
|
84
86
|
...opts,
|
|
85
87
|
});
|
|
86
|
-
this.name = "EmptyUploadException";
|
|
87
|
-
this.$fault = "client";
|
|
88
88
|
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
export class InvalidLayerException extends __BaseException {
|
|
92
|
+
name = "InvalidLayerException";
|
|
93
|
+
$fault = "client";
|
|
92
94
|
constructor(opts) {
|
|
93
95
|
super({
|
|
94
96
|
name: "InvalidLayerException",
|
|
95
97
|
$fault: "client",
|
|
96
98
|
...opts,
|
|
97
99
|
});
|
|
98
|
-
this.name = "InvalidLayerException";
|
|
99
|
-
this.$fault = "client";
|
|
100
100
|
Object.setPrototypeOf(this, InvalidLayerException.prototype);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
export class LayerAlreadyExistsException extends __BaseException {
|
|
104
|
+
name = "LayerAlreadyExistsException";
|
|
105
|
+
$fault = "client";
|
|
104
106
|
constructor(opts) {
|
|
105
107
|
super({
|
|
106
108
|
name: "LayerAlreadyExistsException",
|
|
107
109
|
$fault: "client",
|
|
108
110
|
...opts,
|
|
109
111
|
});
|
|
110
|
-
this.name = "LayerAlreadyExistsException";
|
|
111
|
-
this.$fault = "client";
|
|
112
112
|
Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
export class LayerPartTooSmallException extends __BaseException {
|
|
116
|
+
name = "LayerPartTooSmallException";
|
|
117
|
+
$fault = "client";
|
|
116
118
|
constructor(opts) {
|
|
117
119
|
super({
|
|
118
120
|
name: "LayerPartTooSmallException",
|
|
119
121
|
$fault: "client",
|
|
120
122
|
...opts,
|
|
121
123
|
});
|
|
122
|
-
this.name = "LayerPartTooSmallException";
|
|
123
|
-
this.$fault = "client";
|
|
124
124
|
Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
export class UploadNotFoundException extends __BaseException {
|
|
128
|
+
name = "UploadNotFoundException";
|
|
129
|
+
$fault = "client";
|
|
128
130
|
constructor(opts) {
|
|
129
131
|
super({
|
|
130
132
|
name: "UploadNotFoundException",
|
|
131
133
|
$fault: "client",
|
|
132
134
|
...opts,
|
|
133
135
|
});
|
|
134
|
-
this.name = "UploadNotFoundException";
|
|
135
|
-
this.$fault = "client";
|
|
136
136
|
Object.setPrototypeOf(this, UploadNotFoundException.prototype);
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
export class InvalidTagParameterException extends __BaseException {
|
|
140
|
+
name = "InvalidTagParameterException";
|
|
141
|
+
$fault = "client";
|
|
140
142
|
constructor(opts) {
|
|
141
143
|
super({
|
|
142
144
|
name: "InvalidTagParameterException",
|
|
143
145
|
$fault: "client",
|
|
144
146
|
...opts,
|
|
145
147
|
});
|
|
146
|
-
this.name = "InvalidTagParameterException";
|
|
147
|
-
this.$fault = "client";
|
|
148
148
|
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
151
|
export class LimitExceededException extends __BaseException {
|
|
152
|
+
name = "LimitExceededException";
|
|
153
|
+
$fault = "client";
|
|
152
154
|
constructor(opts) {
|
|
153
155
|
super({
|
|
154
156
|
name: "LimitExceededException",
|
|
155
157
|
$fault: "client",
|
|
156
158
|
...opts,
|
|
157
159
|
});
|
|
158
|
-
this.name = "LimitExceededException";
|
|
159
|
-
this.$fault = "client";
|
|
160
160
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
export class RepositoryAlreadyExistsException extends __BaseException {
|
|
164
|
+
name = "RepositoryAlreadyExistsException";
|
|
165
|
+
$fault = "client";
|
|
164
166
|
constructor(opts) {
|
|
165
167
|
super({
|
|
166
168
|
name: "RepositoryAlreadyExistsException",
|
|
167
169
|
$fault: "client",
|
|
168
170
|
...opts,
|
|
169
171
|
});
|
|
170
|
-
this.name = "RepositoryAlreadyExistsException";
|
|
171
|
-
this.$fault = "client";
|
|
172
172
|
Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
export class TooManyTagsException extends __BaseException {
|
|
176
|
+
name = "TooManyTagsException";
|
|
177
|
+
$fault = "client";
|
|
176
178
|
constructor(opts) {
|
|
177
179
|
super({
|
|
178
180
|
name: "TooManyTagsException",
|
|
179
181
|
$fault: "client",
|
|
180
182
|
...opts,
|
|
181
183
|
});
|
|
182
|
-
this.name = "TooManyTagsException";
|
|
183
|
-
this.$fault = "client";
|
|
184
184
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
export class RepositoryNotEmptyException extends __BaseException {
|
|
188
|
+
name = "RepositoryNotEmptyException";
|
|
189
|
+
$fault = "client";
|
|
188
190
|
constructor(opts) {
|
|
189
191
|
super({
|
|
190
192
|
name: "RepositoryNotEmptyException",
|
|
191
193
|
$fault: "client",
|
|
192
194
|
...opts,
|
|
193
195
|
});
|
|
194
|
-
this.name = "RepositoryNotEmptyException";
|
|
195
|
-
this.$fault = "client";
|
|
196
196
|
Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
export class RepositoryPolicyNotFoundException extends __BaseException {
|
|
200
|
+
name = "RepositoryPolicyNotFoundException";
|
|
201
|
+
$fault = "client";
|
|
200
202
|
constructor(opts) {
|
|
201
203
|
super({
|
|
202
204
|
name: "RepositoryPolicyNotFoundException",
|
|
203
205
|
$fault: "client",
|
|
204
206
|
...opts,
|
|
205
207
|
});
|
|
206
|
-
this.name = "RepositoryPolicyNotFoundException";
|
|
207
|
-
this.$fault = "client";
|
|
208
208
|
Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
export class ImageNotFoundException extends __BaseException {
|
|
212
|
+
name = "ImageNotFoundException";
|
|
213
|
+
$fault = "client";
|
|
212
214
|
constructor(opts) {
|
|
213
215
|
super({
|
|
214
216
|
name: "ImageNotFoundException",
|
|
215
217
|
$fault: "client",
|
|
216
218
|
...opts,
|
|
217
219
|
});
|
|
218
|
-
this.name = "ImageNotFoundException";
|
|
219
|
-
this.$fault = "client";
|
|
220
220
|
Object.setPrototypeOf(this, ImageNotFoundException.prototype);
|
|
221
221
|
}
|
|
222
222
|
}
|
|
@@ -226,62 +226,66 @@ export const RegistryAliasStatus = {
|
|
|
226
226
|
REJECTED: "REJECTED",
|
|
227
227
|
};
|
|
228
228
|
export class RepositoryCatalogDataNotFoundException extends __BaseException {
|
|
229
|
+
name = "RepositoryCatalogDataNotFoundException";
|
|
230
|
+
$fault = "client";
|
|
229
231
|
constructor(opts) {
|
|
230
232
|
super({
|
|
231
233
|
name: "RepositoryCatalogDataNotFoundException",
|
|
232
234
|
$fault: "client",
|
|
233
235
|
...opts,
|
|
234
236
|
});
|
|
235
|
-
this.name = "RepositoryCatalogDataNotFoundException";
|
|
236
|
-
this.$fault = "client";
|
|
237
237
|
Object.setPrototypeOf(this, RepositoryCatalogDataNotFoundException.prototype);
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
240
|
export class ImageAlreadyExistsException extends __BaseException {
|
|
241
|
+
name = "ImageAlreadyExistsException";
|
|
242
|
+
$fault = "client";
|
|
241
243
|
constructor(opts) {
|
|
242
244
|
super({
|
|
243
245
|
name: "ImageAlreadyExistsException",
|
|
244
246
|
$fault: "client",
|
|
245
247
|
...opts,
|
|
246
248
|
});
|
|
247
|
-
this.name = "ImageAlreadyExistsException";
|
|
248
|
-
this.$fault = "client";
|
|
249
249
|
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
252
|
export class ImageDigestDoesNotMatchException extends __BaseException {
|
|
253
|
+
name = "ImageDigestDoesNotMatchException";
|
|
254
|
+
$fault = "client";
|
|
253
255
|
constructor(opts) {
|
|
254
256
|
super({
|
|
255
257
|
name: "ImageDigestDoesNotMatchException",
|
|
256
258
|
$fault: "client",
|
|
257
259
|
...opts,
|
|
258
260
|
});
|
|
259
|
-
this.name = "ImageDigestDoesNotMatchException";
|
|
260
|
-
this.$fault = "client";
|
|
261
261
|
Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
264
|
export class ImageTagAlreadyExistsException extends __BaseException {
|
|
265
|
+
name = "ImageTagAlreadyExistsException";
|
|
266
|
+
$fault = "client";
|
|
265
267
|
constructor(opts) {
|
|
266
268
|
super({
|
|
267
269
|
name: "ImageTagAlreadyExistsException",
|
|
268
270
|
$fault: "client",
|
|
269
271
|
...opts,
|
|
270
272
|
});
|
|
271
|
-
this.name = "ImageTagAlreadyExistsException";
|
|
272
|
-
this.$fault = "client";
|
|
273
273
|
Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
|
|
274
274
|
}
|
|
275
275
|
}
|
|
276
276
|
export class InvalidLayerPartException extends __BaseException {
|
|
277
|
+
name = "InvalidLayerPartException";
|
|
278
|
+
$fault = "client";
|
|
279
|
+
registryId;
|
|
280
|
+
repositoryName;
|
|
281
|
+
uploadId;
|
|
282
|
+
lastValidByteReceived;
|
|
277
283
|
constructor(opts) {
|
|
278
284
|
super({
|
|
279
285
|
name: "InvalidLayerPartException",
|
|
280
286
|
$fault: "client",
|
|
281
287
|
...opts,
|
|
282
288
|
});
|
|
283
|
-
this.name = "InvalidLayerPartException";
|
|
284
|
-
this.$fault = "client";
|
|
285
289
|
Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
|
|
286
290
|
this.registryId = opts.registryId;
|
|
287
291
|
this.repositoryName = opts.repositoryName;
|
|
@@ -290,26 +294,26 @@ export class InvalidLayerPartException extends __BaseException {
|
|
|
290
294
|
}
|
|
291
295
|
}
|
|
292
296
|
export class LayersNotFoundException extends __BaseException {
|
|
297
|
+
name = "LayersNotFoundException";
|
|
298
|
+
$fault = "client";
|
|
293
299
|
constructor(opts) {
|
|
294
300
|
super({
|
|
295
301
|
name: "LayersNotFoundException",
|
|
296
302
|
$fault: "client",
|
|
297
303
|
...opts,
|
|
298
304
|
});
|
|
299
|
-
this.name = "LayersNotFoundException";
|
|
300
|
-
this.$fault = "client";
|
|
301
305
|
Object.setPrototypeOf(this, LayersNotFoundException.prototype);
|
|
302
306
|
}
|
|
303
307
|
}
|
|
304
308
|
export class ReferencedImagesNotFoundException extends __BaseException {
|
|
309
|
+
name = "ReferencedImagesNotFoundException";
|
|
310
|
+
$fault = "client";
|
|
305
311
|
constructor(opts) {
|
|
306
312
|
super({
|
|
307
313
|
name: "ReferencedImagesNotFoundException",
|
|
308
314
|
$fault: "client",
|
|
309
315
|
...opts,
|
|
310
316
|
});
|
|
311
|
-
this.name = "ReferencedImagesNotFoundException";
|
|
312
|
-
this.$fault = "client";
|
|
313
317
|
Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
|
|
314
318
|
}
|
|
315
319
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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> | undefined;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.723.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,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|