paws.compute (version 0.1.0)

ecr_upload_layer_part: Uploads an image layer part to Amazon ECR

Description

Uploads an image layer part to Amazon ECR.

Usage

ecr_upload_layer_part(registryId, repositoryName, uploadId,
  partFirstByte, partLastByte, layerPartBlob)

Arguments

registryId

The AWS account ID associated with the registry to which you are uploading layer parts. If you do not specify a registry, the default registry is assumed.

repositoryName

[required] The name of the repository to which you are uploading layer parts.

uploadId

[required] The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.

partFirstByte

[required] The integer value of the first byte of the layer part.

partLastByte

[required] The integer value of the last byte of the layer part.

layerPartBlob

[required] The base64-encoded layer part payload.

Request syntax

svc$upload_layer_part(
  registryId = "string",
  repositoryName = "string",
  uploadId = "string",
  partFirstByte = 123,
  partLastByte = 123,
  layerPartBlob = raw
)

Details

This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.