@aws-sdk/client-ecr 3.296.0 → 3.297.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.
Files changed (53) hide show
  1. package/dist-types/ECR.d.ts +42 -0
  2. package/dist-types/ECRClient.d.ts +24 -4
  3. package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchDeleteImageCommand.d.ts +16 -0
  5. package/dist-types/commands/BatchGetImageCommand.d.ts +16 -0
  6. package/dist-types/commands/BatchGetRepositoryScanningConfigurationCommand.d.ts +16 -0
  7. package/dist-types/commands/CompleteLayerUploadCommand.d.ts +16 -0
  8. package/dist-types/commands/CreatePullThroughCacheRuleCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateRepositoryCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeletePullThroughCacheRuleCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteRegistryPolicyCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteRepositoryCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeImageReplicationStatusCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeImageScanFindingsCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeImagesCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribePullThroughCacheRulesCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeRegistryCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeRepositoriesCommand.d.ts +16 -0
  21. package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +16 -0
  22. package/dist-types/commands/GetDownloadUrlForLayerCommand.d.ts +16 -0
  23. package/dist-types/commands/GetLifecyclePolicyCommand.d.ts +16 -0
  24. package/dist-types/commands/GetLifecyclePolicyPreviewCommand.d.ts +16 -0
  25. package/dist-types/commands/GetRegistryPolicyCommand.d.ts +16 -0
  26. package/dist-types/commands/GetRegistryScanningConfigurationCommand.d.ts +16 -0
  27. package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +16 -0
  28. package/dist-types/commands/InitiateLayerUploadCommand.d.ts +16 -0
  29. package/dist-types/commands/ListImagesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/PutImageCommand.d.ts +16 -0
  32. package/dist-types/commands/PutImageScanningConfigurationCommand.d.ts +16 -0
  33. package/dist-types/commands/PutImageTagMutabilityCommand.d.ts +16 -0
  34. package/dist-types/commands/PutLifecyclePolicyCommand.d.ts +16 -0
  35. package/dist-types/commands/PutRegistryPolicyCommand.d.ts +16 -0
  36. package/dist-types/commands/PutRegistryScanningConfigurationCommand.d.ts +16 -0
  37. package/dist-types/commands/PutReplicationConfigurationCommand.d.ts +16 -0
  38. package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +16 -0
  39. package/dist-types/commands/StartImageScanCommand.d.ts +16 -0
  40. package/dist-types/commands/StartLifecyclePolicyPreviewCommand.d.ts +16 -0
  41. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  42. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UploadLayerPartCommand.d.ts +16 -0
  44. package/dist-types/models/ECRServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +370 -0
  46. package/dist-types/pagination/DescribeImageScanFindingsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/DescribeImagesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/DescribePullThroughCacheRulesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/DescribeRepositoriesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/GetLifecyclePolicyPreviewPaginator.d.ts +3 -0
  51. package/dist-types/pagination/Interfaces.d.ts +3 -0
  52. package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
  53. package/package.json +3 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeImageScanFindingsCommandInput, DescribeImageScanFindingsCommandOutput } from "../commands/DescribeImageScanFindingsCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeImageScanFindings(config: ECRPaginationConfiguration, input: DescribeImageScanFindingsCommandInput, ...additionalArguments: any): Paginator<DescribeImageScanFindingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "../commands/DescribeImagesCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeImages(config: ECRPaginationConfiguration, input: DescribeImagesCommandInput, ...additionalArguments: any): Paginator<DescribeImagesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribePullThroughCacheRulesCommandInput, DescribePullThroughCacheRulesCommandOutput } from "../commands/DescribePullThroughCacheRulesCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribePullThroughCacheRules(config: ECRPaginationConfiguration, input: DescribePullThroughCacheRulesCommandInput, ...additionalArguments: any): Paginator<DescribePullThroughCacheRulesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput } from "../commands/DescribeRepositoriesCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeRepositories(config: ECRPaginationConfiguration, input: DescribeRepositoriesCommandInput, ...additionalArguments: any): Paginator<DescribeRepositoriesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetLifecyclePolicyPreviewCommandInput, GetLifecyclePolicyPreviewCommandOutput } from "../commands/GetLifecyclePolicyPreviewCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetLifecyclePolicyPreview(config: ECRPaginationConfiguration, input: GetLifecyclePolicyPreviewCommandInput, ...additionalArguments: any): Paginator<GetLifecyclePolicyPreviewCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { ECRClient } from "../ECRClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface ECRPaginationConfiguration extends PaginationConfiguration {
4
7
  client: ECRClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand";
3
3
  import { ECRPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListImages(config: ECRPaginationConfiguration, input: ListImagesCommandInput, ...additionalArguments: any): Paginator<ListImagesCommandOutput>;
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.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",