@aws-sdk/client-ecr 3.36.1 → 3.40.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.
@@ -1,46 +1,6 @@
1
- export * from "./ECRClient";
2
1
  export * from "./ECR";
3
- export * from "./commands/BatchCheckLayerAvailabilityCommand";
4
- export * from "./commands/BatchDeleteImageCommand";
5
- export * from "./commands/BatchGetImageCommand";
6
- export * from "./commands/CompleteLayerUploadCommand";
7
- export * from "./commands/CreateRepositoryCommand";
8
- export * from "./commands/DeleteLifecyclePolicyCommand";
9
- export * from "./commands/DeleteRegistryPolicyCommand";
10
- export * from "./commands/DeleteRepositoryCommand";
11
- export * from "./commands/DeleteRepositoryPolicyCommand";
12
- export * from "./commands/DescribeImageReplicationStatusCommand";
13
- export * from "./commands/DescribeImagesCommand";
14
- export * from "./pagination/DescribeImagesPaginator";
15
- export * from "./commands/DescribeImageScanFindingsCommand";
16
- export * from "./pagination/DescribeImageScanFindingsPaginator";
17
- export * from "./waiters/waitForImageScanComplete";
18
- export * from "./commands/DescribeRegistryCommand";
19
- export * from "./commands/DescribeRepositoriesCommand";
20
- export * from "./pagination/DescribeRepositoriesPaginator";
21
- export * from "./commands/GetAuthorizationTokenCommand";
22
- export * from "./commands/GetDownloadUrlForLayerCommand";
23
- export * from "./commands/GetLifecyclePolicyCommand";
24
- export * from "./commands/GetLifecyclePolicyPreviewCommand";
25
- export * from "./pagination/GetLifecyclePolicyPreviewPaginator";
26
- export * from "./waiters/waitForLifecyclePolicyPreviewComplete";
27
- export * from "./commands/GetRegistryPolicyCommand";
28
- export * from "./commands/GetRepositoryPolicyCommand";
29
- export * from "./commands/InitiateLayerUploadCommand";
30
- export * from "./commands/ListImagesCommand";
31
- export * from "./pagination/ListImagesPaginator";
32
- export * from "./commands/ListTagsForResourceCommand";
33
- export * from "./commands/PutImageCommand";
34
- export * from "./commands/PutImageScanningConfigurationCommand";
35
- export * from "./commands/PutImageTagMutabilityCommand";
36
- export * from "./commands/PutLifecyclePolicyCommand";
37
- export * from "./commands/PutRegistryPolicyCommand";
38
- export * from "./commands/PutReplicationConfigurationCommand";
39
- export * from "./commands/SetRepositoryPolicyCommand";
40
- export * from "./commands/StartImageScanCommand";
41
- export * from "./commands/StartLifecyclePolicyPreviewCommand";
42
- export * from "./commands/TagResourceCommand";
43
- export * from "./commands/UntagResourceCommand";
44
- export * from "./commands/UploadLayerPartCommand";
45
- export * from "./pagination/Interfaces";
46
- export * from "./models/index";
2
+ export * from "./ECRClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
@@ -0,0 +1,6 @@
1
+ export * from "./DescribeImageScanFindingsPaginator";
2
+ export * from "./DescribeImagesPaginator";
3
+ export * from "./DescribeRepositoriesPaginator";
4
+ export * from "./GetLifecyclePolicyPreviewPaginator";
5
+ export * from "./Interfaces";
6
+ export * from "./ListImagesPaginator";
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
16
16
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
17
  sha256: import("@aws-sdk/types").HashConstructor;
18
18
  streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
21
  utf8Decoder: import("@aws-sdk/types").Decoder;
20
22
  utf8Encoder: import("@aws-sdk/types").Encoder;
21
23
  apiVersion: string;
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
16
16
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
17
  sha256: import("@aws-sdk/types").HashConstructor;
18
18
  streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
21
  utf8Decoder: import("@aws-sdk/types").Decoder;
20
22
  utf8Encoder: import("@aws-sdk/types").Encoder;
21
23
  apiVersion: string;
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
18
18
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
19
  retryMode: string | import("@aws-sdk/types").Provider<string>;
20
20
  logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
23
  serviceId: string;
22
24
  region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
@@ -73,6 +73,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
73
73
 
74
74
  logger?: __Logger;
75
75
 
76
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
77
+
78
+ useFipsEndpoint?: boolean | __Provider<boolean>;
79
+
76
80
  serviceId?: string;
77
81
 
78
82
  region?: string | __Provider<string>;
@@ -0,0 +1,35 @@
1
+ export * from "./BatchCheckLayerAvailabilityCommand";
2
+ export * from "./BatchDeleteImageCommand";
3
+ export * from "./BatchGetImageCommand";
4
+ export * from "./CompleteLayerUploadCommand";
5
+ export * from "./CreateRepositoryCommand";
6
+ export * from "./DeleteLifecyclePolicyCommand";
7
+ export * from "./DeleteRegistryPolicyCommand";
8
+ export * from "./DeleteRepositoryCommand";
9
+ export * from "./DeleteRepositoryPolicyCommand";
10
+ export * from "./DescribeImageReplicationStatusCommand";
11
+ export * from "./DescribeImageScanFindingsCommand";
12
+ export * from "./DescribeImagesCommand";
13
+ export * from "./DescribeRegistryCommand";
14
+ export * from "./DescribeRepositoriesCommand";
15
+ export * from "./GetAuthorizationTokenCommand";
16
+ export * from "./GetDownloadUrlForLayerCommand";
17
+ export * from "./GetLifecyclePolicyCommand";
18
+ export * from "./GetLifecyclePolicyPreviewCommand";
19
+ export * from "./GetRegistryPolicyCommand";
20
+ export * from "./GetRepositoryPolicyCommand";
21
+ export * from "./InitiateLayerUploadCommand";
22
+ export * from "./ListImagesCommand";
23
+ export * from "./ListTagsForResourceCommand";
24
+ export * from "./PutImageCommand";
25
+ export * from "./PutImageScanningConfigurationCommand";
26
+ export * from "./PutImageTagMutabilityCommand";
27
+ export * from "./PutLifecyclePolicyCommand";
28
+ export * from "./PutRegistryPolicyCommand";
29
+ export * from "./PutReplicationConfigurationCommand";
30
+ export * from "./SetRepositoryPolicyCommand";
31
+ export * from "./StartImageScanCommand";
32
+ export * from "./StartLifecyclePolicyPreviewCommand";
33
+ export * from "./TagResourceCommand";
34
+ export * from "./UntagResourceCommand";
35
+ export * from "./UploadLayerPartCommand";
@@ -1,46 +1,6 @@
1
- export * from "./ECRClient";
2
1
  export * from "./ECR";
3
- export * from "./commands/BatchCheckLayerAvailabilityCommand";
4
- export * from "./commands/BatchDeleteImageCommand";
5
- export * from "./commands/BatchGetImageCommand";
6
- export * from "./commands/CompleteLayerUploadCommand";
7
- export * from "./commands/CreateRepositoryCommand";
8
- export * from "./commands/DeleteLifecyclePolicyCommand";
9
- export * from "./commands/DeleteRegistryPolicyCommand";
10
- export * from "./commands/DeleteRepositoryCommand";
11
- export * from "./commands/DeleteRepositoryPolicyCommand";
12
- export * from "./commands/DescribeImageReplicationStatusCommand";
13
- export * from "./commands/DescribeImagesCommand";
14
- export * from "./pagination/DescribeImagesPaginator";
15
- export * from "./commands/DescribeImageScanFindingsCommand";
16
- export * from "./pagination/DescribeImageScanFindingsPaginator";
17
- export * from "./waiters/waitForImageScanComplete";
18
- export * from "./commands/DescribeRegistryCommand";
19
- export * from "./commands/DescribeRepositoriesCommand";
20
- export * from "./pagination/DescribeRepositoriesPaginator";
21
- export * from "./commands/GetAuthorizationTokenCommand";
22
- export * from "./commands/GetDownloadUrlForLayerCommand";
23
- export * from "./commands/GetLifecyclePolicyCommand";
24
- export * from "./commands/GetLifecyclePolicyPreviewCommand";
25
- export * from "./pagination/GetLifecyclePolicyPreviewPaginator";
26
- export * from "./waiters/waitForLifecyclePolicyPreviewComplete";
27
- export * from "./commands/GetRegistryPolicyCommand";
28
- export * from "./commands/GetRepositoryPolicyCommand";
29
- export * from "./commands/InitiateLayerUploadCommand";
30
- export * from "./commands/ListImagesCommand";
31
- export * from "./pagination/ListImagesPaginator";
32
- export * from "./commands/ListTagsForResourceCommand";
33
- export * from "./commands/PutImageCommand";
34
- export * from "./commands/PutImageScanningConfigurationCommand";
35
- export * from "./commands/PutImageTagMutabilityCommand";
36
- export * from "./commands/PutLifecyclePolicyCommand";
37
- export * from "./commands/PutRegistryPolicyCommand";
38
- export * from "./commands/PutReplicationConfigurationCommand";
39
- export * from "./commands/SetRepositoryPolicyCommand";
40
- export * from "./commands/StartImageScanCommand";
41
- export * from "./commands/StartLifecyclePolicyPreviewCommand";
42
- export * from "./commands/TagResourceCommand";
43
- export * from "./commands/UntagResourceCommand";
44
- export * from "./commands/UploadLayerPartCommand";
45
- export * from "./pagination/Interfaces";
46
- export * from "./models/index";
2
+ export * from "./ECRClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
@@ -0,0 +1,6 @@
1
+ export * from "./DescribeImageScanFindingsPaginator";
2
+ export * from "./DescribeImagesPaginator";
3
+ export * from "./DescribeRepositoriesPaginator";
4
+ export * from "./GetLifecyclePolicyPreviewPaginator";
5
+ export * from "./Interfaces";
6
+ export * from "./ListImagesPaginator";
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: ECRClientConfig) => {
16
16
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
18
18
  logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
21
  serviceId: string;
20
22
  region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
21
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
@@ -0,0 +1,2 @@
1
+ export * from "./waitForImageScanComplete";
2
+ export * from "./waitForLifecyclePolicyPreviewComplete";
@@ -0,0 +1,2 @@
1
+ export * from "./waitForImageScanComplete";
2
+ export * from "./waitForLifecyclePolicyPreviewComplete";
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.36.1",
4
+ "version": "3.40.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -19,41 +19,41 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-crypto/sha256-browser": "^1.0.0",
23
- "@aws-crypto/sha256-js": "^1.0.0",
24
- "@aws-sdk/client-sts": "3.36.1",
25
- "@aws-sdk/config-resolver": "3.36.0",
26
- "@aws-sdk/credential-provider-node": "3.36.1",
27
- "@aws-sdk/fetch-http-handler": "3.36.0",
28
- "@aws-sdk/hash-node": "3.36.0",
29
- "@aws-sdk/invalid-dependency": "3.36.0",
30
- "@aws-sdk/middleware-content-length": "3.36.0",
31
- "@aws-sdk/middleware-host-header": "3.36.0",
32
- "@aws-sdk/middleware-logger": "3.36.0",
33
- "@aws-sdk/middleware-retry": "3.36.0",
34
- "@aws-sdk/middleware-serde": "3.36.0",
35
- "@aws-sdk/middleware-signing": "3.36.0",
36
- "@aws-sdk/middleware-stack": "3.36.0",
37
- "@aws-sdk/middleware-user-agent": "3.36.0",
38
- "@aws-sdk/node-config-provider": "3.36.0",
39
- "@aws-sdk/node-http-handler": "3.36.0",
40
- "@aws-sdk/protocol-http": "3.36.0",
41
- "@aws-sdk/smithy-client": "3.36.0",
42
- "@aws-sdk/types": "3.36.0",
43
- "@aws-sdk/url-parser": "3.36.0",
44
- "@aws-sdk/util-base64-browser": "3.36.0",
45
- "@aws-sdk/util-base64-node": "3.36.0",
46
- "@aws-sdk/util-body-length-browser": "3.36.0",
47
- "@aws-sdk/util-body-length-node": "3.36.0",
48
- "@aws-sdk/util-user-agent-browser": "3.36.0",
49
- "@aws-sdk/util-user-agent-node": "3.36.0",
50
- "@aws-sdk/util-utf8-browser": "3.36.0",
51
- "@aws-sdk/util-utf8-node": "3.36.0",
52
- "@aws-sdk/util-waiter": "3.36.0",
22
+ "@aws-crypto/sha256-browser": "2.0.0",
23
+ "@aws-crypto/sha256-js": "2.0.0",
24
+ "@aws-sdk/client-sts": "3.40.0",
25
+ "@aws-sdk/config-resolver": "3.40.0",
26
+ "@aws-sdk/credential-provider-node": "3.40.0",
27
+ "@aws-sdk/fetch-http-handler": "3.40.0",
28
+ "@aws-sdk/hash-node": "3.40.0",
29
+ "@aws-sdk/invalid-dependency": "3.40.0",
30
+ "@aws-sdk/middleware-content-length": "3.40.0",
31
+ "@aws-sdk/middleware-host-header": "3.40.0",
32
+ "@aws-sdk/middleware-logger": "3.40.0",
33
+ "@aws-sdk/middleware-retry": "3.40.0",
34
+ "@aws-sdk/middleware-serde": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.40.0",
36
+ "@aws-sdk/middleware-stack": "3.40.0",
37
+ "@aws-sdk/middleware-user-agent": "3.40.0",
38
+ "@aws-sdk/node-config-provider": "3.40.0",
39
+ "@aws-sdk/node-http-handler": "3.40.0",
40
+ "@aws-sdk/protocol-http": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.40.0",
42
+ "@aws-sdk/types": "3.40.0",
43
+ "@aws-sdk/url-parser": "3.40.0",
44
+ "@aws-sdk/util-base64-browser": "3.37.0",
45
+ "@aws-sdk/util-base64-node": "3.37.0",
46
+ "@aws-sdk/util-body-length-browser": "3.37.0",
47
+ "@aws-sdk/util-body-length-node": "3.37.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.40.0",
49
+ "@aws-sdk/util-user-agent-node": "3.40.0",
50
+ "@aws-sdk/util-utf8-browser": "3.37.0",
51
+ "@aws-sdk/util-utf8-node": "3.37.0",
52
+ "@aws-sdk/util-waiter": "3.40.0",
53
53
  "tslib": "^2.3.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/client-documentation-generator": "3.36.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.38.0",
57
57
  "@types/node": "^12.7.5",
58
58
  "downlevel-dts": "0.7.0",
59
59
  "jest": "^26.1.0",