@aws-sdk/client-ecr 3.490.0 → 3.495.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/ECR.js +1 -97
- package/dist-cjs/ECRClient.js +1 -43
- package/dist-cjs/commands/BatchCheckLayerAvailabilityCommand.js +1 -28
- package/dist-cjs/commands/BatchDeleteImageCommand.js +1 -28
- package/dist-cjs/commands/BatchGetImageCommand.js +1 -28
- package/dist-cjs/commands/BatchGetRepositoryScanningConfigurationCommand.js +1 -28
- package/dist-cjs/commands/CompleteLayerUploadCommand.js +1 -28
- package/dist-cjs/commands/CreatePullThroughCacheRuleCommand.js +1 -28
- package/dist-cjs/commands/CreateRepositoryCommand.js +1 -28
- package/dist-cjs/commands/DeleteLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/DeletePullThroughCacheRuleCommand.js +1 -28
- package/dist-cjs/commands/DeleteRegistryPolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteRepositoryCommand.js +1 -28
- package/dist-cjs/commands/DeleteRepositoryPolicyCommand.js +1 -28
- package/dist-cjs/commands/DescribeImageReplicationStatusCommand.js +1 -28
- package/dist-cjs/commands/DescribeImageScanFindingsCommand.js +1 -28
- package/dist-cjs/commands/DescribeImagesCommand.js +1 -28
- package/dist-cjs/commands/DescribePullThroughCacheRulesCommand.js +1 -28
- package/dist-cjs/commands/DescribeRegistryCommand.js +1 -28
- package/dist-cjs/commands/DescribeRepositoriesCommand.js +1 -28
- package/dist-cjs/commands/GetAuthorizationTokenCommand.js +1 -28
- package/dist-cjs/commands/GetDownloadUrlForLayerCommand.js +1 -28
- package/dist-cjs/commands/GetLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/GetLifecyclePolicyPreviewCommand.js +1 -28
- package/dist-cjs/commands/GetRegistryPolicyCommand.js +1 -28
- package/dist-cjs/commands/GetRegistryScanningConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetRepositoryPolicyCommand.js +1 -28
- package/dist-cjs/commands/InitiateLayerUploadCommand.js +1 -28
- package/dist-cjs/commands/ListImagesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PutImageCommand.js +1 -28
- package/dist-cjs/commands/PutImageScanningConfigurationCommand.js +1 -28
- package/dist-cjs/commands/PutImageTagMutabilityCommand.js +1 -28
- package/dist-cjs/commands/PutLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/PutRegistryPolicyCommand.js +1 -28
- package/dist-cjs/commands/PutRegistryScanningConfigurationCommand.js +1 -28
- package/dist-cjs/commands/PutReplicationConfigurationCommand.js +1 -28
- package/dist-cjs/commands/SetRepositoryPolicyCommand.js +1 -28
- package/dist-cjs/commands/StartImageScanCommand.js +1 -28
- package/dist-cjs/commands/StartLifecyclePolicyPreviewCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdatePullThroughCacheRuleCommand.js +1 -28
- package/dist-cjs/commands/UploadLayerPartCommand.js +1 -28
- package/dist-cjs/commands/ValidatePullThroughCacheRuleCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -46
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +4820 -12
- package/dist-cjs/models/ECRServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -595
- package/dist-cjs/pagination/DescribeImageScanFindingsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeImagesPaginator.js +1 -7
- package/dist-cjs/pagination/DescribePullThroughCacheRulesPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeRepositoriesPaginator.js +1 -7
- package/dist-cjs/pagination/GetLifecyclePolicyPreviewPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListImagesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -10
- package/dist-cjs/protocols/Aws_json1_1.js +1 -2934
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-cjs/waiters/index.js +1 -5
- package/dist-cjs/waiters/waitForImageScanComplete.js +1 -45
- package/dist-cjs/waiters/waitForLifecyclePolicyPreviewComplete.js +1 -45
- package/package.json +41 -41
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./DescribeImageScanFindingsPaginator"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./DescribeImagesPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./DescribePullThroughCacheRulesPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./DescribeRepositoriesPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./GetLifecyclePolicyPreviewPaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./ListImagesPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|