@aws-sdk/client-ecr 3.952.0 → 3.954.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 +1003 -718
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +2 -2
- package/dist-es/commands/BatchDeleteImageCommand.js +2 -2
- package/dist-es/commands/BatchGetImageCommand.js +2 -2
- package/dist-es/commands/BatchGetRepositoryScanningConfigurationCommand.js +2 -2
- package/dist-es/commands/CompleteLayerUploadCommand.js +2 -2
- package/dist-es/commands/CreatePullThroughCacheRuleCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryCreationTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/DeletePullThroughCacheRuleCommand.js +2 -2
- package/dist-es/commands/DeleteRegistryPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryCreationTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteSigningConfigurationCommand.js +2 -2
- package/dist-es/commands/DeregisterPullTimeUpdateExclusionCommand.js +2 -2
- package/dist-es/commands/DescribeImageReplicationStatusCommand.js +2 -2
- package/dist-es/commands/DescribeImageScanFindingsCommand.js +2 -2
- package/dist-es/commands/DescribeImageSigningStatusCommand.js +2 -2
- package/dist-es/commands/DescribeImagesCommand.js +2 -2
- package/dist-es/commands/DescribePullThroughCacheRulesCommand.js +2 -2
- package/dist-es/commands/DescribeRegistryCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoriesCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoryCreationTemplatesCommand.js +2 -2
- package/dist-es/commands/GetAccountSettingCommand.js +2 -2
- package/dist-es/commands/GetAuthorizationTokenCommand.js +2 -2
- package/dist-es/commands/GetDownloadUrlForLayerCommand.js +2 -2
- package/dist-es/commands/GetLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/GetLifecyclePolicyPreviewCommand.js +2 -2
- package/dist-es/commands/GetRegistryPolicyCommand.js +2 -2
- package/dist-es/commands/GetRegistryScanningConfigurationCommand.js +2 -2
- package/dist-es/commands/GetRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/GetSigningConfigurationCommand.js +2 -2
- package/dist-es/commands/InitiateLayerUploadCommand.js +2 -2
- package/dist-es/commands/ListImageReferrersCommand.js +2 -2
- package/dist-es/commands/ListImagesCommand.js +2 -2
- package/dist-es/commands/ListPullTimeUpdateExclusionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutAccountSettingCommand.js +2 -2
- package/dist-es/commands/PutImageCommand.js +2 -2
- package/dist-es/commands/PutImageScanningConfigurationCommand.js +2 -2
- package/dist-es/commands/PutImageTagMutabilityCommand.js +2 -2
- package/dist-es/commands/PutLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/PutRegistryPolicyCommand.js +2 -2
- package/dist-es/commands/PutRegistryScanningConfigurationCommand.js +2 -2
- package/dist-es/commands/PutReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/PutSigningConfigurationCommand.js +2 -2
- package/dist-es/commands/RegisterPullTimeUpdateExclusionCommand.js +2 -2
- package/dist-es/commands/SetRepositoryPolicyCommand.js +2 -2
- package/dist-es/commands/StartImageScanCommand.js +2 -2
- package/dist-es/commands/StartLifecyclePolicyPreviewCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateImageStorageClassCommand.js +2 -2
- package/dist-es/commands/UpdatePullThroughCacheRuleCommand.js +2 -2
- package/dist-es/commands/UpdateRepositoryCreationTemplateCommand.js +2 -2
- package/dist-es/commands/UploadLayerPartCommand.js +2 -2
- package/dist-es/commands/ValidatePullThroughCacheRuleCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +550 -542
- package/dist-types/ECRClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +278 -330
- package/dist-types/ts3.4/ECRClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +277 -330
- package/package.json +35 -35
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.ecr",
|
|
32
|
+
xmlNamespace: "http://ecr.amazonaws.com/doc/2015-09-21/",
|
|
33
|
+
version: "2015-09-21",
|
|
34
|
+
serviceTarget: "AmazonEC2ContainerRegistry_V20150921",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "ECR",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchCheckLayerAvailability } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchCheckLayerAvailability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchCheckLayerAvailabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchCheckLayerAvailabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchCheckLayerAvailability", {})
|
|
13
13
|
.n("ECRClient", "BatchCheckLayerAvailabilityCommand")
|
|
14
|
-
.sc(BatchCheckLayerAvailability)
|
|
14
|
+
.sc(BatchCheckLayerAvailability$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchDeleteImage } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchDeleteImage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchDeleteImageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchDeleteImageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchDeleteImage", {})
|
|
13
13
|
.n("ECRClient", "BatchDeleteImageCommand")
|
|
14
|
-
.sc(BatchDeleteImage)
|
|
14
|
+
.sc(BatchDeleteImage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetImage } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetImage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetImageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetImageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchGetImage", {})
|
|
13
13
|
.n("ECRClient", "BatchGetImageCommand")
|
|
14
|
-
.sc(BatchGetImage)
|
|
14
|
+
.sc(BatchGetImage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetRepositoryScanningConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetRepositoryScanningConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetRepositoryScanningConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetRepositoryScanningConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "BatchGetRepositoryScanningConfiguration", {})
|
|
13
13
|
.n("ECRClient", "BatchGetRepositoryScanningConfigurationCommand")
|
|
14
|
-
.sc(BatchGetRepositoryScanningConfiguration)
|
|
14
|
+
.sc(BatchGetRepositoryScanningConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CompleteLayerUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { CompleteLayerUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CompleteLayerUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CompleteLayerUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "CompleteLayerUpload", {})
|
|
13
13
|
.n("ECRClient", "CompleteLayerUploadCommand")
|
|
14
|
-
.sc(CompleteLayerUpload)
|
|
14
|
+
.sc(CompleteLayerUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePullThroughCacheRule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePullThroughCacheRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePullThroughCacheRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePullThroughCacheRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreatePullThroughCacheRule", {})
|
|
13
13
|
.n("ECRClient", "CreatePullThroughCacheRuleCommand")
|
|
14
|
-
.sc(CreatePullThroughCacheRule)
|
|
14
|
+
.sc(CreatePullThroughCacheRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreateRepository", {})
|
|
13
13
|
.n("ECRClient", "CreateRepositoryCommand")
|
|
14
|
-
.sc(CreateRepository)
|
|
14
|
+
.sc(CreateRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRepositoryCreationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRepositoryCreationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRepositoryCreationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRepositoryCreationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "CreateRepositoryCreationTemplate", {})
|
|
13
13
|
.n("ECRClient", "CreateRepositoryCreationTemplateCommand")
|
|
14
|
-
.sc(CreateRepositoryCreationTemplate)
|
|
14
|
+
.sc(CreateRepositoryCreationTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLifecyclePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLifecyclePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLifecyclePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLifecyclePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteLifecyclePolicy", {})
|
|
13
13
|
.n("ECRClient", "DeleteLifecyclePolicyCommand")
|
|
14
|
-
.sc(DeleteLifecyclePolicy)
|
|
14
|
+
.sc(DeleteLifecyclePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePullThroughCacheRule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePullThroughCacheRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePullThroughCacheRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePullThroughCacheRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeletePullThroughCacheRule", {})
|
|
13
13
|
.n("ECRClient", "DeletePullThroughCacheRuleCommand")
|
|
14
|
-
.sc(DeletePullThroughCacheRule)
|
|
14
|
+
.sc(DeletePullThroughCacheRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRegistryPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRegistryPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRegistryPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRegistryPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRegistryPolicy", {})
|
|
13
13
|
.n("ECRClient", "DeleteRegistryPolicyCommand")
|
|
14
|
-
.sc(DeleteRegistryPolicy)
|
|
14
|
+
.sc(DeleteRegistryPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepository", {})
|
|
13
13
|
.n("ECRClient", "DeleteRepositoryCommand")
|
|
14
|
-
.sc(DeleteRepository)
|
|
14
|
+
.sc(DeleteRepository$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepositoryCreationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepositoryCreationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryCreationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryCreationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryCreationTemplate", {})
|
|
13
13
|
.n("ECRClient", "DeleteRepositoryCreationTemplateCommand")
|
|
14
|
-
.sc(DeleteRepositoryCreationTemplate)
|
|
14
|
+
.sc(DeleteRepositoryCreationTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepositoryPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepositoryPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteRepositoryPolicy", {})
|
|
13
13
|
.n("ECRClient", "DeleteRepositoryPolicyCommand")
|
|
14
|
-
.sc(DeleteRepositoryPolicy)
|
|
14
|
+
.sc(DeleteRepositoryPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSigningConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSigningConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSigningConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSigningConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeleteSigningConfiguration", {})
|
|
13
13
|
.n("ECRClient", "DeleteSigningConfigurationCommand")
|
|
14
|
-
.sc(DeleteSigningConfiguration)
|
|
14
|
+
.sc(DeleteSigningConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeregisterPullTimeUpdateExclusion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterPullTimeUpdateExclusion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterPullTimeUpdateExclusionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterPullTimeUpdateExclusionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DeregisterPullTimeUpdateExclusion", {})
|
|
13
13
|
.n("ECRClient", "DeregisterPullTimeUpdateExclusionCommand")
|
|
14
|
-
.sc(DeregisterPullTimeUpdateExclusion)
|
|
14
|
+
.sc(DeregisterPullTimeUpdateExclusion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeImageReplicationStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImageReplicationStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImageReplicationStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeImageReplicationStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageReplicationStatus", {})
|
|
13
13
|
.n("ECRClient", "DescribeImageReplicationStatusCommand")
|
|
14
|
-
.sc(DescribeImageReplicationStatus)
|
|
14
|
+
.sc(DescribeImageReplicationStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeImageScanFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImageScanFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImageScanFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeImageScanFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageScanFindings", {})
|
|
13
13
|
.n("ECRClient", "DescribeImageScanFindingsCommand")
|
|
14
|
-
.sc(DescribeImageScanFindings)
|
|
14
|
+
.sc(DescribeImageScanFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeImageSigningStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImageSigningStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImageSigningStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeImageSigningStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImageSigningStatus", {})
|
|
13
13
|
.n("ECRClient", "DescribeImageSigningStatusCommand")
|
|
14
|
-
.sc(DescribeImageSigningStatus)
|
|
14
|
+
.sc(DescribeImageSigningStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeImages } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeImagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeImages", {})
|
|
13
13
|
.n("ECRClient", "DescribeImagesCommand")
|
|
14
|
-
.sc(DescribeImages)
|
|
14
|
+
.sc(DescribeImages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePullThroughCacheRules } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePullThroughCacheRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePullThroughCacheRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePullThroughCacheRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribePullThroughCacheRules", {})
|
|
13
13
|
.n("ECRClient", "DescribePullThroughCacheRulesCommand")
|
|
14
|
-
.sc(DescribePullThroughCacheRules)
|
|
14
|
+
.sc(DescribePullThroughCacheRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRegistry } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRegistry$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRegistryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRegistryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRegistry", {})
|
|
13
13
|
.n("ECRClient", "DescribeRegistryCommand")
|
|
14
|
-
.sc(DescribeRegistry)
|
|
14
|
+
.sc(DescribeRegistry$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRepositories } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRepositories$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRepositoriesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRepositoriesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositories", {})
|
|
13
13
|
.n("ECRClient", "DescribeRepositoriesCommand")
|
|
14
|
-
.sc(DescribeRepositories)
|
|
14
|
+
.sc(DescribeRepositories$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRepositoryCreationTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRepositoryCreationTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRepositoryCreationTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRepositoryCreationTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "DescribeRepositoryCreationTemplates", {})
|
|
13
13
|
.n("ECRClient", "DescribeRepositoryCreationTemplatesCommand")
|
|
14
|
-
.sc(DescribeRepositoryCreationTemplates)
|
|
14
|
+
.sc(DescribeRepositoryCreationTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAccountSetting } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountSetting$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountSettingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountSettingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetAccountSetting", {})
|
|
13
13
|
.n("ECRClient", "GetAccountSettingCommand")
|
|
14
|
-
.sc(GetAccountSetting)
|
|
14
|
+
.sc(GetAccountSetting$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAuthorizationToken } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAuthorizationToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAuthorizationTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAuthorizationTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetAuthorizationToken", {})
|
|
13
13
|
.n("ECRClient", "GetAuthorizationTokenCommand")
|
|
14
|
-
.sc(GetAuthorizationToken)
|
|
14
|
+
.sc(GetAuthorizationToken$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDownloadUrlForLayer } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDownloadUrlForLayer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDownloadUrlForLayerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDownloadUrlForLayerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetDownloadUrlForLayer", {})
|
|
13
13
|
.n("ECRClient", "GetDownloadUrlForLayerCommand")
|
|
14
|
-
.sc(GetDownloadUrlForLayer)
|
|
14
|
+
.sc(GetDownloadUrlForLayer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLifecyclePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLifecyclePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLifecyclePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLifecyclePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicy", {})
|
|
13
13
|
.n("ECRClient", "GetLifecyclePolicyCommand")
|
|
14
|
-
.sc(GetLifecyclePolicy)
|
|
14
|
+
.sc(GetLifecyclePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLifecyclePolicyPreview } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLifecyclePolicyPreview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLifecyclePolicyPreviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLifecyclePolicyPreviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetLifecyclePolicyPreview", {})
|
|
13
13
|
.n("ECRClient", "GetLifecyclePolicyPreviewCommand")
|
|
14
|
-
.sc(GetLifecyclePolicyPreview)
|
|
14
|
+
.sc(GetLifecyclePolicyPreview$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRegistryPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRegistryPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRegistryPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRegistryPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryPolicy", {})
|
|
13
13
|
.n("ECRClient", "GetRegistryPolicyCommand")
|
|
14
|
-
.sc(GetRegistryPolicy)
|
|
14
|
+
.sc(GetRegistryPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRegistryScanningConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRegistryScanningConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRegistryScanningConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRegistryScanningConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRegistryScanningConfiguration", {})
|
|
13
13
|
.n("ECRClient", "GetRegistryScanningConfigurationCommand")
|
|
14
|
-
.sc(GetRegistryScanningConfiguration)
|
|
14
|
+
.sc(GetRegistryScanningConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRepositoryPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRepositoryPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRepositoryPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRepositoryPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetRepositoryPolicy", {})
|
|
13
13
|
.n("ECRClient", "GetRepositoryPolicyCommand")
|
|
14
|
-
.sc(GetRepositoryPolicy)
|
|
14
|
+
.sc(GetRepositoryPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSigningConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSigningConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSigningConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSigningConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "GetSigningConfiguration", {})
|
|
13
13
|
.n("ECRClient", "GetSigningConfigurationCommand")
|
|
14
|
-
.sc(GetSigningConfiguration)
|
|
14
|
+
.sc(GetSigningConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitiateLayerUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { InitiateLayerUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitiateLayerUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitiateLayerUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonEC2ContainerRegistry_V20150921", "InitiateLayerUpload", {})
|
|
13
13
|
.n("ECRClient", "InitiateLayerUploadCommand")
|
|
14
|
-
.sc(InitiateLayerUpload)
|
|
14
|
+
.sc(InitiateLayerUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|