You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ECR::Types::UploadLayerPartRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UploadLayerPartRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
  upload_id: "UploadId", # required
  part_first_byte: 1, # required
  part_last_byte: 1, # required
  layer_part_blob: "data", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#layer_part_blobString

The base64-encoded layer part payload.

Returns:

  • (String)

    The base64-encoded layer part payload.

#part_first_byteInteger

The position of the first byte of the layer part witin the overall image layer.

Returns:

  • (Integer)

    The position of the first byte of the layer part witin the overall image layer.

#part_last_byteInteger

The position of the last byte of the layer part within the overall image layer.

Returns:

  • (Integer)

    The position of the last byte of the layer part within the overall image layer.

#registry_idString

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.

Returns:

  • (String)

    The AWS account ID associated with the registry to which you are uploading layer parts.

#repository_nameString

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

Returns:

  • (String)

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

#upload_idString

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

Returns:

  • (String)

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