@aws-sdk/client-ecr-public 3.300.0 → 3.301.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.
@@ -32,10 +32,10 @@ export interface BatchCheckLayerAvailabilityCommandOutput extends BatchCheckLaye
32
32
  * import { ECRPUBLICClient, BatchCheckLayerAvailabilityCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
33
33
  * // const { ECRPUBLICClient, BatchCheckLayerAvailabilityCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
34
34
  * const client = new ECRPUBLICClient(config);
35
- * const input = {
35
+ * const input = { // BatchCheckLayerAvailabilityRequest
36
36
  * registryId: "STRING_VALUE",
37
37
  * repositoryName: "STRING_VALUE", // required
38
- * layerDigests: [ // required
38
+ * layerDigests: [ // BatchedOperationLayerDigestList // required
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * };
@@ -32,11 +32,11 @@ export interface BatchDeleteImageCommandOutput extends BatchDeleteImageResponse,
32
32
  * import { ECRPUBLICClient, BatchDeleteImageCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
33
33
  * // const { ECRPUBLICClient, BatchDeleteImageCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
34
34
  * const client = new ECRPUBLICClient(config);
35
- * const input = {
35
+ * const input = { // BatchDeleteImageRequest
36
36
  * registryId: "STRING_VALUE",
37
37
  * repositoryName: "STRING_VALUE", // required
38
- * imageIds: [ // required
39
- * {
38
+ * imageIds: [ // ImageIdentifierList // required
39
+ * { // ImageIdentifier
40
40
  * imageDigest: "STRING_VALUE",
41
41
  * imageTag: "STRING_VALUE",
42
42
  * },
@@ -33,11 +33,11 @@ export interface CompleteLayerUploadCommandOutput extends CompleteLayerUploadRes
33
33
  * import { ECRPUBLICClient, CompleteLayerUploadCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
34
34
  * // const { ECRPUBLICClient, CompleteLayerUploadCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
35
35
  * const client = new ECRPUBLICClient(config);
36
- * const input = {
36
+ * const input = { // CompleteLayerUploadRequest
37
37
  * registryId: "STRING_VALUE",
38
38
  * repositoryName: "STRING_VALUE", // required
39
39
  * uploadId: "STRING_VALUE", // required
40
- * layerDigests: [ // required
40
+ * layerDigests: [ // LayerDigestList // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * };
@@ -27,22 +27,22 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResponse,
27
27
  * import { ECRPUBLICClient, CreateRepositoryCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
28
28
  * // const { ECRPUBLICClient, CreateRepositoryCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
29
29
  * const client = new ECRPUBLICClient(config);
30
- * const input = {
30
+ * const input = { // CreateRepositoryRequest
31
31
  * repositoryName: "STRING_VALUE", // required
32
- * catalogData: {
32
+ * catalogData: { // RepositoryCatalogDataInput
33
33
  * description: "STRING_VALUE",
34
- * architectures: [
34
+ * architectures: [ // ArchitectureList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
- * operatingSystems: [
37
+ * operatingSystems: [ // OperatingSystemList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * logoImageBlob: "BLOB_VALUE",
41
41
  * aboutText: "STRING_VALUE",
42
42
  * usageText: "STRING_VALUE",
43
43
  * },
44
- * tags: [
45
- * {
44
+ * tags: [ // TagList
45
+ * { // Tag
46
46
  * Key: "STRING_VALUE",
47
47
  * Value: "STRING_VALUE",
48
48
  * },
@@ -28,7 +28,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResponse,
28
28
  * import { ECRPUBLICClient, DeleteRepositoryCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
29
29
  * // const { ECRPUBLICClient, DeleteRepositoryCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
30
30
  * const client = new ECRPUBLICClient(config);
31
- * const input = {
31
+ * const input = { // DeleteRepositoryRequest
32
32
  * registryId: "STRING_VALUE",
33
33
  * repositoryName: "STRING_VALUE", // required
34
34
  * force: true || false,
@@ -26,7 +26,7 @@ export interface DeleteRepositoryPolicyCommandOutput extends DeleteRepositoryPol
26
26
  * import { ECRPUBLICClient, DeleteRepositoryPolicyCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, DeleteRepositoryPolicyCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // DeleteRepositoryPolicyRequest
30
30
  * registryId: "STRING_VALUE",
31
31
  * repositoryName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeImageTagsCommandOutput extends DescribeImageTagsRespons
26
26
  * import { ECRPUBLICClient, DescribeImageTagsCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, DescribeImageTagsCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // DescribeImageTagsRequest
30
30
  * registryId: "STRING_VALUE",
31
31
  * repositoryName: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
@@ -33,11 +33,11 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
33
33
  * import { ECRPUBLICClient, DescribeImagesCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
34
34
  * // const { ECRPUBLICClient, DescribeImagesCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
35
35
  * const client = new ECRPUBLICClient(config);
36
- * const input = {
36
+ * const input = { // DescribeImagesRequest
37
37
  * registryId: "STRING_VALUE",
38
38
  * repositoryName: "STRING_VALUE", // required
39
- * imageIds: [
40
- * {
39
+ * imageIds: [ // ImageIdentifierList
40
+ * { // ImageIdentifier
41
41
  * imageDigest: "STRING_VALUE",
42
42
  * imageTag: "STRING_VALUE",
43
43
  * },
@@ -26,7 +26,7 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo
26
26
  * import { ECRPUBLICClient, DescribeRegistriesCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, DescribeRegistriesCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // DescribeRegistriesRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,9 +26,9 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR
26
26
  * import { ECRPUBLICClient, DescribeRepositoriesCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, DescribeRepositoriesCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // DescribeRepositoriesRequest
30
30
  * registryId: "STRING_VALUE",
31
- * repositoryNames: [
31
+ * repositoryNames: [ // RepositoryNameList
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * nextToken: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata
27
27
  * import { ECRPUBLICClient, GetRepositoryCatalogDataCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
28
28
  * // const { ECRPUBLICClient, GetRepositoryCatalogDataCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
29
29
  * const client = new ECRPUBLICClient(config);
30
- * const input = {
30
+ * const input = { // GetRepositoryCatalogDataRequest
31
31
  * registryId: "STRING_VALUE",
32
32
  * repositoryName: "STRING_VALUE", // required
33
33
  * };
@@ -26,7 +26,7 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes
26
26
  * import { ECRPUBLICClient, GetRepositoryPolicyCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, GetRepositoryPolicyCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // GetRepositoryPolicyRequest
30
30
  * registryId: "STRING_VALUE",
31
31
  * repositoryName: "STRING_VALUE", // required
32
32
  * };
@@ -32,7 +32,7 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes
32
32
  * import { ECRPUBLICClient, InitiateLayerUploadCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
33
33
  * // const { ECRPUBLICClient, InitiateLayerUploadCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
34
34
  * const client = new ECRPUBLICClient(config);
35
- * const input = {
35
+ * const input = { // InitiateLayerUploadRequest
36
36
  * registryId: "STRING_VALUE",
37
37
  * repositoryName: "STRING_VALUE", // required
38
38
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ECRPUBLICClient, ListTagsForResourceCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -33,7 +33,7 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare
33
33
  * import { ECRPUBLICClient, PutImageCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
34
34
  * // const { ECRPUBLICClient, PutImageCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
35
35
  * const client = new ECRPUBLICClient(config);
36
- * const input = {
36
+ * const input = { // PutImageRequest
37
37
  * registryId: "STRING_VALUE",
38
38
  * repositoryName: "STRING_VALUE", // required
39
39
  * imageManifest: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD
26
26
  * import { ECRPUBLICClient, PutRegistryCatalogDataCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, PutRegistryCatalogDataCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // PutRegistryCatalogDataRequest
30
30
  * displayName: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new PutRegistryCatalogDataCommand(input);
@@ -26,15 +26,15 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata
26
26
  * import { ECRPUBLICClient, PutRepositoryCatalogDataCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, PutRepositoryCatalogDataCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // PutRepositoryCatalogDataRequest
30
30
  * registryId: "STRING_VALUE",
31
31
  * repositoryName: "STRING_VALUE", // required
32
- * catalogData: {
32
+ * catalogData: { // RepositoryCatalogDataInput
33
33
  * description: "STRING_VALUE",
34
- * architectures: [
34
+ * architectures: [ // ArchitectureList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
- * operatingSystems: [
37
+ * operatingSystems: [ // OperatingSystemList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * logoImageBlob: "BLOB_VALUE",
@@ -28,7 +28,7 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes
28
28
  * import { ECRPUBLICClient, SetRepositoryPolicyCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
29
29
  * // const { ECRPUBLICClient, SetRepositoryPolicyCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
30
30
  * const client = new ECRPUBLICClient(config);
31
- * const input = {
31
+ * const input = { // SetRepositoryPolicyRequest
32
32
  * registryId: "STRING_VALUE",
33
33
  * repositoryName: "STRING_VALUE", // required
34
34
  * policyText: "STRING_VALUE", // required
@@ -29,10 +29,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
29
29
  * import { ECRPUBLICClient, TagResourceCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
30
30
  * // const { ECRPUBLICClient, TagResourceCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
31
31
  * const client = new ECRPUBLICClient(config);
32
- * const input = {
32
+ * const input = { // TagResourceRequest
33
33
  * resourceArn: "STRING_VALUE", // required
34
- * tags: [ // required
35
- * {
34
+ * tags: [ // TagList // required
35
+ * { // Tag
36
36
  * Key: "STRING_VALUE",
37
37
  * Value: "STRING_VALUE",
38
38
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { ECRPUBLICClient, UntagResourceCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
27
27
  * // const { ECRPUBLICClient, UntagResourceCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
28
28
  * const client = new ECRPUBLICClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -32,7 +32,7 @@ export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, _
32
32
  * import { ECRPUBLICClient, UploadLayerPartCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
33
33
  * // const { ECRPUBLICClient, UploadLayerPartCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
34
34
  * const client = new ECRPUBLICClient(config);
35
- * const input = {
35
+ * const input = { // UploadLayerPartRequest
36
36
  * registryId: "STRING_VALUE",
37
37
  * repositoryName: "STRING_VALUE", // required
38
38
  * uploadId: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecr-public",
3
3
  "description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",