@aws-sdk/client-ecr-public 3.298.0 → 3.300.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-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +7 -0
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +10 -0
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +8 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +21 -0
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +5 -0
- package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DescribeImageTagsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +12 -0
- package/dist-types/commands/DescribeRegistriesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +8 -0
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +1 -0
- package/dist-types/commands/GetRegistryCatalogDataCommand.d.ts +1 -0
- package/dist-types/commands/GetRepositoryCatalogDataCommand.d.ts +4 -0
- package/dist-types/commands/GetRepositoryPolicyCommand.d.ts +4 -0
- package/dist-types/commands/InitiateLayerUploadCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PutImageCommand.d.ts +8 -0
- package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +3 -0
- package/dist-types/commands/PutRepositoryCatalogDataCommand.d.ts +16 -0
- package/dist-types/commands/SetRepositoryPolicyCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UploadLayerPartCommand.d.ts +8 -0
- package/package.json +12 -12
|
@@ -32,6 +32,13 @@ 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 = {
|
|
36
|
+
* registryId: "STRING_VALUE",
|
|
37
|
+
* repositoryName: "STRING_VALUE", // required
|
|
38
|
+
* layerDigests: [ // required
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
35
42
|
* const command = new BatchCheckLayerAvailabilityCommand(input);
|
|
36
43
|
* const response = await client.send(command);
|
|
37
44
|
* ```
|
|
@@ -32,6 +32,16 @@ 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 = {
|
|
36
|
+
* registryId: "STRING_VALUE",
|
|
37
|
+
* repositoryName: "STRING_VALUE", // required
|
|
38
|
+
* imageIds: [ // required
|
|
39
|
+
* {
|
|
40
|
+
* imageDigest: "STRING_VALUE",
|
|
41
|
+
* imageTag: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
35
45
|
* const command = new BatchDeleteImageCommand(input);
|
|
36
46
|
* const response = await client.send(command);
|
|
37
47
|
* ```
|
|
@@ -33,6 +33,14 @@ 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 = {
|
|
37
|
+
* registryId: "STRING_VALUE",
|
|
38
|
+
* repositoryName: "STRING_VALUE", // required
|
|
39
|
+
* uploadId: "STRING_VALUE", // required
|
|
40
|
+
* layerDigests: [ // required
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
36
44
|
* const command = new CompleteLayerUploadCommand(input);
|
|
37
45
|
* const response = await client.send(command);
|
|
38
46
|
* ```
|
|
@@ -27,6 +27,27 @@ 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 = {
|
|
31
|
+
* repositoryName: "STRING_VALUE", // required
|
|
32
|
+
* catalogData: {
|
|
33
|
+
* description: "STRING_VALUE",
|
|
34
|
+
* architectures: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* operatingSystems: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* logoImageBlob: "BLOB_VALUE",
|
|
41
|
+
* aboutText: "STRING_VALUE",
|
|
42
|
+
* usageText: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* tags: [
|
|
45
|
+
* {
|
|
46
|
+
* Key: "STRING_VALUE",
|
|
47
|
+
* Value: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* };
|
|
30
51
|
* const command = new CreateRepositoryCommand(input);
|
|
31
52
|
* const response = await client.send(command);
|
|
32
53
|
* ```
|
|
@@ -28,6 +28,11 @@ 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 = {
|
|
32
|
+
* registryId: "STRING_VALUE",
|
|
33
|
+
* repositoryName: "STRING_VALUE", // required
|
|
34
|
+
* force: true || false,
|
|
35
|
+
* };
|
|
31
36
|
* const command = new DeleteRepositoryCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* registryId: "STRING_VALUE",
|
|
31
|
+
* repositoryName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteRepositoryPolicyCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* registryId: "STRING_VALUE",
|
|
31
|
+
* repositoryName: "STRING_VALUE", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeImageTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -33,6 +33,18 @@ 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 = {
|
|
37
|
+
* registryId: "STRING_VALUE",
|
|
38
|
+
* repositoryName: "STRING_VALUE", // required
|
|
39
|
+
* imageIds: [
|
|
40
|
+
* {
|
|
41
|
+
* imageDigest: "STRING_VALUE",
|
|
42
|
+
* imageTag: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* nextToken: "STRING_VALUE",
|
|
46
|
+
* maxResults: Number("int"),
|
|
47
|
+
* };
|
|
36
48
|
* const command = new DescribeImagesCommand(input);
|
|
37
49
|
* const response = await client.send(command);
|
|
38
50
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeRegistriesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,14 @@ 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 = {
|
|
30
|
+
* registryId: "STRING_VALUE",
|
|
31
|
+
* repositoryNames: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DescribeRepositoriesCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -30,6 +30,7 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke
|
|
|
30
30
|
* import { ECRPUBLICClient, GetAuthorizationTokenCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
|
|
31
31
|
* // const { ECRPUBLICClient, GetAuthorizationTokenCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
|
|
32
32
|
* const client = new ECRPUBLICClient(config);
|
|
33
|
+
* const input = {};
|
|
33
34
|
* const command = new GetAuthorizationTokenCommand(input);
|
|
34
35
|
* const response = await client.send(command);
|
|
35
36
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD
|
|
|
26
26
|
* import { ECRPUBLICClient, GetRegistryCatalogDataCommand } from "@aws-sdk/client-ecr-public"; // ES Modules import
|
|
27
27
|
* // const { ECRPUBLICClient, GetRegistryCatalogDataCommand } = require("@aws-sdk/client-ecr-public"); // CommonJS import
|
|
28
28
|
* const client = new ECRPUBLICClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetRegistryCatalogDataCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -27,6 +27,10 @@ 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 = {
|
|
31
|
+
* registryId: "STRING_VALUE",
|
|
32
|
+
* repositoryName: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new GetRepositoryCatalogDataCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* registryId: "STRING_VALUE",
|
|
31
|
+
* repositoryName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetRepositoryPolicyCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -32,6 +32,10 @@ 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 = {
|
|
36
|
+
* registryId: "STRING_VALUE",
|
|
37
|
+
* repositoryName: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
35
39
|
* const command = new InitiateLayerUploadCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -33,6 +33,14 @@ 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 = {
|
|
37
|
+
* registryId: "STRING_VALUE",
|
|
38
|
+
* repositoryName: "STRING_VALUE", // required
|
|
39
|
+
* imageManifest: "STRING_VALUE", // required
|
|
40
|
+
* imageManifestMediaType: "STRING_VALUE",
|
|
41
|
+
* imageTag: "STRING_VALUE",
|
|
42
|
+
* imageDigest: "STRING_VALUE",
|
|
43
|
+
* };
|
|
36
44
|
* const command = new PutImageCommand(input);
|
|
37
45
|
* const response = await client.send(command);
|
|
38
46
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* displayName: "STRING_VALUE",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new PutRegistryCatalogDataCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,22 @@ 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 = {
|
|
30
|
+
* registryId: "STRING_VALUE",
|
|
31
|
+
* repositoryName: "STRING_VALUE", // required
|
|
32
|
+
* catalogData: {
|
|
33
|
+
* description: "STRING_VALUE",
|
|
34
|
+
* architectures: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* operatingSystems: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* logoImageBlob: "BLOB_VALUE",
|
|
41
|
+
* aboutText: "STRING_VALUE",
|
|
42
|
+
* usageText: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
29
45
|
* const command = new PutRepositoryCatalogDataCommand(input);
|
|
30
46
|
* const response = await client.send(command);
|
|
31
47
|
* ```
|
|
@@ -28,6 +28,12 @@ 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 = {
|
|
32
|
+
* registryId: "STRING_VALUE",
|
|
33
|
+
* repositoryName: "STRING_VALUE", // required
|
|
34
|
+
* policyText: "STRING_VALUE", // required
|
|
35
|
+
* force: true || false,
|
|
36
|
+
* };
|
|
31
37
|
* const command = new SetRepositoryPolicyCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -29,6 +29,15 @@ 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 = {
|
|
33
|
+
* resourceArn: "STRING_VALUE", // required
|
|
34
|
+
* tags: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* Key: "STRING_VALUE",
|
|
37
|
+
* Value: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
32
41
|
* const command = new TagResourceCommand(input);
|
|
33
42
|
* const response = await client.send(command);
|
|
34
43
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -32,6 +32,14 @@ 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 = {
|
|
36
|
+
* registryId: "STRING_VALUE",
|
|
37
|
+
* repositoryName: "STRING_VALUE", // required
|
|
38
|
+
* uploadId: "STRING_VALUE", // required
|
|
39
|
+
* partFirstByte: Number("long"), // required
|
|
40
|
+
* partLastByte: Number("long"), // required
|
|
41
|
+
* layerPartBlob: "BLOB_VALUE", // required
|
|
42
|
+
* };
|
|
35
43
|
* const command = new UploadLayerPartCommand(input);
|
|
36
44
|
* const response = await client.send(command);
|
|
37
45
|
* ```
|
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.
|
|
4
|
+
"version": "3.300.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,23 +21,23 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.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",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|