Cloneable
, ReadLimitInfo
, ToCopyableBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>
@Generated("software.amazon.awssdk:codegen") public class UploadLayerPartRequest extends AmazonWebServiceRequest implements ToCopyableBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>
Modifier and Type | Class | Description |
---|---|---|
static interface |
UploadLayerPartRequest.Builder |
NOOP
Modifier and Type | Method | Description |
---|---|---|
static UploadLayerPartRequest.Builder |
builder() |
|
boolean |
equals(Object obj) |
|
int |
hashCode() |
|
ByteBuffer |
layerPartBlob() |
The base64-encoded layer part payload.
|
Long |
partFirstByte() |
The integer value of the first byte of the layer part.
|
Long |
partLastByte() |
The integer value of the last byte of the layer part.
|
String |
registryId() |
The AWS account ID associated with the registry that you are uploading layer parts to.
|
String |
repositoryName() |
The name of the repository that you are uploading layer parts to.
|
static Class<? extends UploadLayerPartRequest.Builder> |
serializableBuilderClass() |
|
UploadLayerPartRequest.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
|
String |
uploadId() |
The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.
|
clone, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout
public String registryId()
The AWS account ID associated with the registry that you are uploading layer parts to. If you do not specify a registry, the default registry is assumed.
public String repositoryName()
The name of the repository that you are uploading layer parts to.
public String uploadId()
The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.
public Long partFirstByte()
The integer value of the first byte of the layer part.
public Long partLastByte()
The integer value of the last byte of the layer part.
public ByteBuffer layerPartBlob()
The base64-encoded layer part payload.
ByteBuffer
s are stateful. Calling their get
methods changes their position
. We recommend
using ByteBuffer.asReadOnlyBuffer()
to create a read-only view of the buffer with an independent
position
, and calling get
methods on this rather than directly on the returned ByteBuffer
. Doing so will ensure that anyone else using the ByteBuffer
will not be affected by changes to the
position
.
public UploadLayerPartRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>
public static UploadLayerPartRequest.Builder builder()
public static Class<? extends UploadLayerPartRequest.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.