@aws-sdk/client-ecr 3.45.0 → 3.47.2
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 +44 -0
- package/dist-cjs/models/models_0.js +3 -202
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/models/models_0.js +0 -132
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/ECRClient.d.ts +5 -1
- package/dist-types/models/models_0.d.ts +0 -198
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/ECRClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -132
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +40 -47
|
@@ -64,10 +64,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
64
64
|
|
|
65
65
|
message?: string;
|
|
66
66
|
}
|
|
67
|
-
export declare namespace InvalidParameterException {
|
|
68
|
-
|
|
69
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
70
|
-
}
|
|
71
67
|
|
|
72
68
|
export interface RepositoryNotFoundException extends __SmithyException, $MetadataBearer {
|
|
73
69
|
name: "RepositoryNotFoundException";
|
|
@@ -75,10 +71,6 @@ export interface RepositoryNotFoundException extends __SmithyException, $Metadat
|
|
|
75
71
|
|
|
76
72
|
message?: string;
|
|
77
73
|
}
|
|
78
|
-
export declare namespace RepositoryNotFoundException {
|
|
79
|
-
|
|
80
|
-
const filterSensitiveLog: (obj: RepositoryNotFoundException) => any;
|
|
81
|
-
}
|
|
82
74
|
|
|
83
75
|
export interface ServerException extends __SmithyException, $MetadataBearer {
|
|
84
76
|
name: "ServerException";
|
|
@@ -86,10 +78,6 @@ export interface ServerException extends __SmithyException, $MetadataBearer {
|
|
|
86
78
|
|
|
87
79
|
message?: string;
|
|
88
80
|
}
|
|
89
|
-
export declare namespace ServerException {
|
|
90
|
-
|
|
91
|
-
const filterSensitiveLog: (obj: ServerException) => any;
|
|
92
|
-
}
|
|
93
81
|
|
|
94
82
|
export interface ImageIdentifier {
|
|
95
83
|
|
|
@@ -263,10 +251,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
263
251
|
$fault: "client";
|
|
264
252
|
message?: string;
|
|
265
253
|
}
|
|
266
|
-
export declare namespace ValidationException {
|
|
267
|
-
|
|
268
|
-
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
269
|
-
}
|
|
270
254
|
export interface CompleteLayerUploadRequest {
|
|
271
255
|
|
|
272
256
|
registryId?: string;
|
|
@@ -302,10 +286,6 @@ export interface EmptyUploadException extends __SmithyException, $MetadataBearer
|
|
|
302
286
|
|
|
303
287
|
message?: string;
|
|
304
288
|
}
|
|
305
|
-
export declare namespace EmptyUploadException {
|
|
306
|
-
|
|
307
|
-
const filterSensitiveLog: (obj: EmptyUploadException) => any;
|
|
308
|
-
}
|
|
309
289
|
|
|
310
290
|
export interface InvalidLayerException extends __SmithyException, $MetadataBearer {
|
|
311
291
|
name: "InvalidLayerException";
|
|
@@ -313,10 +293,6 @@ export interface InvalidLayerException extends __SmithyException, $MetadataBeare
|
|
|
313
293
|
|
|
314
294
|
message?: string;
|
|
315
295
|
}
|
|
316
|
-
export declare namespace InvalidLayerException {
|
|
317
|
-
|
|
318
|
-
const filterSensitiveLog: (obj: InvalidLayerException) => any;
|
|
319
|
-
}
|
|
320
296
|
|
|
321
297
|
export interface KmsException extends __SmithyException, $MetadataBearer {
|
|
322
298
|
name: "KmsException";
|
|
@@ -325,10 +301,6 @@ export interface KmsException extends __SmithyException, $MetadataBearer {
|
|
|
325
301
|
|
|
326
302
|
kmsError?: string;
|
|
327
303
|
}
|
|
328
|
-
export declare namespace KmsException {
|
|
329
|
-
|
|
330
|
-
const filterSensitiveLog: (obj: KmsException) => any;
|
|
331
|
-
}
|
|
332
304
|
|
|
333
305
|
export interface LayerAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
334
306
|
name: "LayerAlreadyExistsException";
|
|
@@ -336,10 +308,6 @@ export interface LayerAlreadyExistsException extends __SmithyException, $Metadat
|
|
|
336
308
|
|
|
337
309
|
message?: string;
|
|
338
310
|
}
|
|
339
|
-
export declare namespace LayerAlreadyExistsException {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: LayerAlreadyExistsException) => any;
|
|
342
|
-
}
|
|
343
311
|
|
|
344
312
|
export interface LayerPartTooSmallException extends __SmithyException, $MetadataBearer {
|
|
345
313
|
name: "LayerPartTooSmallException";
|
|
@@ -347,10 +315,6 @@ export interface LayerPartTooSmallException extends __SmithyException, $Metadata
|
|
|
347
315
|
|
|
348
316
|
message?: string;
|
|
349
317
|
}
|
|
350
|
-
export declare namespace LayerPartTooSmallException {
|
|
351
|
-
|
|
352
|
-
const filterSensitiveLog: (obj: LayerPartTooSmallException) => any;
|
|
353
|
-
}
|
|
354
318
|
|
|
355
319
|
export interface UploadNotFoundException extends __SmithyException, $MetadataBearer {
|
|
356
320
|
name: "UploadNotFoundException";
|
|
@@ -358,10 +322,6 @@ export interface UploadNotFoundException extends __SmithyException, $MetadataBea
|
|
|
358
322
|
|
|
359
323
|
message?: string;
|
|
360
324
|
}
|
|
361
|
-
export declare namespace UploadNotFoundException {
|
|
362
|
-
|
|
363
|
-
const filterSensitiveLog: (obj: UploadNotFoundException) => any;
|
|
364
|
-
}
|
|
365
325
|
export interface CreatePullThroughCacheRuleRequest {
|
|
366
326
|
|
|
367
327
|
ecrRepositoryPrefix: string | undefined;
|
|
@@ -395,30 +355,18 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
395
355
|
|
|
396
356
|
message?: string;
|
|
397
357
|
}
|
|
398
|
-
export declare namespace LimitExceededException {
|
|
399
|
-
|
|
400
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
401
|
-
}
|
|
402
358
|
|
|
403
359
|
export interface PullThroughCacheRuleAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
404
360
|
name: "PullThroughCacheRuleAlreadyExistsException";
|
|
405
361
|
$fault: "client";
|
|
406
362
|
message?: string;
|
|
407
363
|
}
|
|
408
|
-
export declare namespace PullThroughCacheRuleAlreadyExistsException {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: PullThroughCacheRuleAlreadyExistsException) => any;
|
|
411
|
-
}
|
|
412
364
|
|
|
413
365
|
export interface UnsupportedUpstreamRegistryException extends __SmithyException, $MetadataBearer {
|
|
414
366
|
name: "UnsupportedUpstreamRegistryException";
|
|
415
367
|
$fault: "client";
|
|
416
368
|
message?: string;
|
|
417
369
|
}
|
|
418
|
-
export declare namespace UnsupportedUpstreamRegistryException {
|
|
419
|
-
|
|
420
|
-
const filterSensitiveLog: (obj: UnsupportedUpstreamRegistryException) => any;
|
|
421
|
-
}
|
|
422
370
|
export declare enum EncryptionType {
|
|
423
371
|
AES256 = "AES256",
|
|
424
372
|
KMS = "KMS"
|
|
@@ -513,10 +461,6 @@ export interface InvalidTagParameterException extends __SmithyException, $Metada
|
|
|
513
461
|
$fault: "client";
|
|
514
462
|
message?: string;
|
|
515
463
|
}
|
|
516
|
-
export declare namespace InvalidTagParameterException {
|
|
517
|
-
|
|
518
|
-
const filterSensitiveLog: (obj: InvalidTagParameterException) => any;
|
|
519
|
-
}
|
|
520
464
|
|
|
521
465
|
export interface RepositoryAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
522
466
|
name: "RepositoryAlreadyExistsException";
|
|
@@ -524,20 +468,12 @@ export interface RepositoryAlreadyExistsException extends __SmithyException, $Me
|
|
|
524
468
|
|
|
525
469
|
message?: string;
|
|
526
470
|
}
|
|
527
|
-
export declare namespace RepositoryAlreadyExistsException {
|
|
528
|
-
|
|
529
|
-
const filterSensitiveLog: (obj: RepositoryAlreadyExistsException) => any;
|
|
530
|
-
}
|
|
531
471
|
|
|
532
472
|
export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
|
|
533
473
|
name: "TooManyTagsException";
|
|
534
474
|
$fault: "client";
|
|
535
475
|
message?: string;
|
|
536
476
|
}
|
|
537
|
-
export declare namespace TooManyTagsException {
|
|
538
|
-
|
|
539
|
-
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
540
|
-
}
|
|
541
477
|
export interface DeleteLifecyclePolicyRequest {
|
|
542
478
|
|
|
543
479
|
registryId?: string;
|
|
@@ -568,10 +504,6 @@ export interface LifecyclePolicyNotFoundException extends __SmithyException, $Me
|
|
|
568
504
|
$fault: "client";
|
|
569
505
|
message?: string;
|
|
570
506
|
}
|
|
571
|
-
export declare namespace LifecyclePolicyNotFoundException {
|
|
572
|
-
|
|
573
|
-
const filterSensitiveLog: (obj: LifecyclePolicyNotFoundException) => any;
|
|
574
|
-
}
|
|
575
507
|
export interface DeletePullThroughCacheRuleRequest {
|
|
576
508
|
|
|
577
509
|
ecrRepositoryPrefix: string | undefined;
|
|
@@ -602,10 +534,6 @@ export interface PullThroughCacheRuleNotFoundException extends __SmithyException
|
|
|
602
534
|
$fault: "client";
|
|
603
535
|
message?: string;
|
|
604
536
|
}
|
|
605
|
-
export declare namespace PullThroughCacheRuleNotFoundException {
|
|
606
|
-
|
|
607
|
-
const filterSensitiveLog: (obj: PullThroughCacheRuleNotFoundException) => any;
|
|
608
|
-
}
|
|
609
537
|
export interface DeleteRegistryPolicyRequest {
|
|
610
538
|
}
|
|
611
539
|
export declare namespace DeleteRegistryPolicyRequest {
|
|
@@ -628,10 +556,6 @@ export interface RegistryPolicyNotFoundException extends __SmithyException, $Met
|
|
|
628
556
|
$fault: "client";
|
|
629
557
|
message?: string;
|
|
630
558
|
}
|
|
631
|
-
export declare namespace RegistryPolicyNotFoundException {
|
|
632
|
-
|
|
633
|
-
const filterSensitiveLog: (obj: RegistryPolicyNotFoundException) => any;
|
|
634
|
-
}
|
|
635
559
|
export interface DeleteRepositoryRequest {
|
|
636
560
|
|
|
637
561
|
registryId?: string;
|
|
@@ -659,10 +583,6 @@ export interface RepositoryNotEmptyException extends __SmithyException, $Metadat
|
|
|
659
583
|
|
|
660
584
|
message?: string;
|
|
661
585
|
}
|
|
662
|
-
export declare namespace RepositoryNotEmptyException {
|
|
663
|
-
|
|
664
|
-
const filterSensitiveLog: (obj: RepositoryNotEmptyException) => any;
|
|
665
|
-
}
|
|
666
586
|
export interface DeleteRepositoryPolicyRequest {
|
|
667
587
|
|
|
668
588
|
registryId?: string;
|
|
@@ -692,10 +612,6 @@ export interface RepositoryPolicyNotFoundException extends __SmithyException, $M
|
|
|
692
612
|
|
|
693
613
|
message?: string;
|
|
694
614
|
}
|
|
695
|
-
export declare namespace RepositoryPolicyNotFoundException {
|
|
696
|
-
|
|
697
|
-
const filterSensitiveLog: (obj: RepositoryPolicyNotFoundException) => any;
|
|
698
|
-
}
|
|
699
615
|
export interface DescribeImageReplicationStatusRequest {
|
|
700
616
|
|
|
701
617
|
repositoryName: string | undefined;
|
|
@@ -746,10 +662,6 @@ export interface ImageNotFoundException extends __SmithyException, $MetadataBear
|
|
|
746
662
|
$fault: "client";
|
|
747
663
|
message?: string;
|
|
748
664
|
}
|
|
749
|
-
export declare namespace ImageNotFoundException {
|
|
750
|
-
|
|
751
|
-
const filterSensitiveLog: (obj: ImageNotFoundException) => any;
|
|
752
|
-
}
|
|
753
665
|
export declare enum TagStatus {
|
|
754
666
|
ANY = "ANY",
|
|
755
667
|
TAGGED = "TAGGED",
|
|
@@ -1158,10 +1070,6 @@ export interface ScanNotFoundException extends __SmithyException, $MetadataBeare
|
|
|
1158
1070
|
$fault: "client";
|
|
1159
1071
|
message?: string;
|
|
1160
1072
|
}
|
|
1161
|
-
export declare namespace ScanNotFoundException {
|
|
1162
|
-
|
|
1163
|
-
const filterSensitiveLog: (obj: ScanNotFoundException) => any;
|
|
1164
|
-
}
|
|
1165
1073
|
export interface DescribePullThroughCacheRulesRequest {
|
|
1166
1074
|
|
|
1167
1075
|
registryId?: string;
|
|
@@ -1344,10 +1252,6 @@ export interface LayerInaccessibleException extends __SmithyException, $Metadata
|
|
|
1344
1252
|
|
|
1345
1253
|
message?: string;
|
|
1346
1254
|
}
|
|
1347
|
-
export declare namespace LayerInaccessibleException {
|
|
1348
|
-
|
|
1349
|
-
const filterSensitiveLog: (obj: LayerInaccessibleException) => any;
|
|
1350
|
-
}
|
|
1351
1255
|
|
|
1352
1256
|
export interface LayersNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1353
1257
|
name: "LayersNotFoundException";
|
|
@@ -1355,10 +1259,6 @@ export interface LayersNotFoundException extends __SmithyException, $MetadataBea
|
|
|
1355
1259
|
|
|
1356
1260
|
message?: string;
|
|
1357
1261
|
}
|
|
1358
|
-
export declare namespace LayersNotFoundException {
|
|
1359
|
-
|
|
1360
|
-
const filterSensitiveLog: (obj: LayersNotFoundException) => any;
|
|
1361
|
-
}
|
|
1362
1262
|
export interface GetLifecyclePolicyRequest {
|
|
1363
1263
|
|
|
1364
1264
|
registryId?: string;
|
|
@@ -1480,10 +1380,6 @@ export interface LifecyclePolicyPreviewNotFoundException extends __SmithyExcepti
|
|
|
1480
1380
|
$fault: "client";
|
|
1481
1381
|
message?: string;
|
|
1482
1382
|
}
|
|
1483
|
-
export declare namespace LifecyclePolicyPreviewNotFoundException {
|
|
1484
|
-
|
|
1485
|
-
const filterSensitiveLog: (obj: LifecyclePolicyPreviewNotFoundException) => any;
|
|
1486
|
-
}
|
|
1487
1383
|
export interface GetRegistryPolicyRequest {
|
|
1488
1384
|
}
|
|
1489
1385
|
export declare namespace GetRegistryPolicyRequest {
|
|
@@ -1642,30 +1538,18 @@ export interface ImageAlreadyExistsException extends __SmithyException, $Metadat
|
|
|
1642
1538
|
|
|
1643
1539
|
message?: string;
|
|
1644
1540
|
}
|
|
1645
|
-
export declare namespace ImageAlreadyExistsException {
|
|
1646
|
-
|
|
1647
|
-
const filterSensitiveLog: (obj: ImageAlreadyExistsException) => any;
|
|
1648
|
-
}
|
|
1649
1541
|
|
|
1650
1542
|
export interface ImageDigestDoesNotMatchException extends __SmithyException, $MetadataBearer {
|
|
1651
1543
|
name: "ImageDigestDoesNotMatchException";
|
|
1652
1544
|
$fault: "client";
|
|
1653
1545
|
message?: string;
|
|
1654
1546
|
}
|
|
1655
|
-
export declare namespace ImageDigestDoesNotMatchException {
|
|
1656
|
-
|
|
1657
|
-
const filterSensitiveLog: (obj: ImageDigestDoesNotMatchException) => any;
|
|
1658
|
-
}
|
|
1659
1547
|
|
|
1660
1548
|
export interface ImageTagAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
1661
1549
|
name: "ImageTagAlreadyExistsException";
|
|
1662
1550
|
$fault: "client";
|
|
1663
1551
|
message?: string;
|
|
1664
1552
|
}
|
|
1665
|
-
export declare namespace ImageTagAlreadyExistsException {
|
|
1666
|
-
|
|
1667
|
-
const filterSensitiveLog: (obj: ImageTagAlreadyExistsException) => any;
|
|
1668
|
-
}
|
|
1669
1553
|
export interface PutImageRequest {
|
|
1670
1554
|
|
|
1671
1555
|
registryId?: string;
|
|
@@ -1698,10 +1582,6 @@ export interface ReferencedImagesNotFoundException extends __SmithyException, $M
|
|
|
1698
1582
|
$fault: "client";
|
|
1699
1583
|
message?: string;
|
|
1700
1584
|
}
|
|
1701
|
-
export declare namespace ReferencedImagesNotFoundException {
|
|
1702
|
-
|
|
1703
|
-
const filterSensitiveLog: (obj: ReferencedImagesNotFoundException) => any;
|
|
1704
|
-
}
|
|
1705
1585
|
export interface PutImageScanningConfigurationRequest {
|
|
1706
1586
|
|
|
1707
1587
|
registryId?: string;
|
|
@@ -1884,20 +1764,12 @@ export interface UnsupportedImageTypeException extends __SmithyException, $Metad
|
|
|
1884
1764
|
$fault: "client";
|
|
1885
1765
|
message?: string;
|
|
1886
1766
|
}
|
|
1887
|
-
export declare namespace UnsupportedImageTypeException {
|
|
1888
|
-
|
|
1889
|
-
const filterSensitiveLog: (obj: UnsupportedImageTypeException) => any;
|
|
1890
|
-
}
|
|
1891
1767
|
|
|
1892
1768
|
export interface LifecyclePolicyPreviewInProgressException extends __SmithyException, $MetadataBearer {
|
|
1893
1769
|
name: "LifecyclePolicyPreviewInProgressException";
|
|
1894
1770
|
$fault: "client";
|
|
1895
1771
|
message?: string;
|
|
1896
1772
|
}
|
|
1897
|
-
export declare namespace LifecyclePolicyPreviewInProgressException {
|
|
1898
|
-
|
|
1899
|
-
const filterSensitiveLog: (obj: LifecyclePolicyPreviewInProgressException) => any;
|
|
1900
|
-
}
|
|
1901
1773
|
export interface StartLifecyclePolicyPreviewRequest {
|
|
1902
1774
|
|
|
1903
1775
|
registryId?: string;
|
|
@@ -1971,10 +1843,6 @@ export interface InvalidLayerPartException extends __SmithyException, $MetadataB
|
|
|
1971
1843
|
|
|
1972
1844
|
message?: string;
|
|
1973
1845
|
}
|
|
1974
|
-
export declare namespace InvalidLayerPartException {
|
|
1975
|
-
|
|
1976
|
-
const filterSensitiveLog: (obj: InvalidLayerPartException) => any;
|
|
1977
|
-
}
|
|
1978
1846
|
export interface UploadLayerPartRequest {
|
|
1979
1847
|
|
|
1980
1848
|
registryId?: string;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { ECRClientConfig } from "./ECRClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ECRClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { ECRClientConfig } from "./ECRClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ECRClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.2",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,49 +18,45 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
52
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.2",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.2",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.2",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.2",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.2",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.2",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.2",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.2",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.2",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.2",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.2",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.2",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.2",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.2",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.2",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.2",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.2",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.2",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.2",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.2",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.2",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.47.2",
|
|
53
52
|
"tslib": "^2.3.0"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
57
|
-
"@types/node": "^12.7.5"
|
|
58
|
-
"downlevel-dts": "0.7.0",
|
|
59
|
-
"jest": "^26.1.0",
|
|
60
|
-
"rimraf": "^3.0.0",
|
|
61
|
-
"ts-jest": "^26.4.1",
|
|
62
|
-
"typedoc": "^0.19.2",
|
|
63
|
-
"typescript": "~4.3.5"
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
56
|
+
"@types/node": "^12.7.5"
|
|
64
57
|
},
|
|
65
58
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
59
|
+
"node": ">=12.0.0"
|
|
67
60
|
},
|
|
68
61
|
"typesVersions": {
|
|
69
62
|
"<4.0": {
|