Interface UploadLayerPartRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>,EcrPublicRequest.Builder,SdkBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UploadLayerPartRequest
public static interface UploadLayerPartRequest.Builder extends EcrPublicRequest.Builder, SdkPojo, CopyableBuilder<UploadLayerPartRequest.Builder,UploadLayerPartRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UploadLayerPartRequest.BuilderlayerPartBlob(SdkBytes layerPartBlob)The base64-encoded layer part payload.UploadLayerPartRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UploadLayerPartRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UploadLayerPartRequest.BuilderpartFirstByte(Long partFirstByte)The position of the first byte of the layer part witin the overall image layer.UploadLayerPartRequest.BuilderpartLastByte(Long partLastByte)The position of the last byte of the layer part within the overall image layer.UploadLayerPartRequest.BuilderregistryId(String registryId)The Amazon Web Services account ID, or registry alias, that's associated with the registry that you're uploading layer parts to.UploadLayerPartRequest.BuilderrepositoryName(String repositoryName)The name of the repository that you're uploading layer parts to.UploadLayerPartRequest.BuilderuploadId(String uploadId)The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ecrpublic.model.EcrPublicRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
registryId
UploadLayerPartRequest.Builder registryId(String registryId)
The Amazon Web Services account ID, or registry alias, that's associated with the registry that you're uploading layer parts to. If you do not specify a registry, the default public registry is assumed.
- Parameters:
registryId- The Amazon Web Services account ID, or registry alias, that's associated with the registry that you're uploading layer parts to. If you do not specify a registry, the default public registry is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
repositoryName
UploadLayerPartRequest.Builder repositoryName(String repositoryName)
The name of the repository that you're uploading layer parts to.
- Parameters:
repositoryName- The name of the repository that you're uploading layer parts to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadId
UploadLayerPartRequest.Builder uploadId(String uploadId)
The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.
- Parameters:
uploadId- The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partFirstByte
UploadLayerPartRequest.Builder partFirstByte(Long partFirstByte)
The position of the first byte of the layer part witin the overall image layer.
- Parameters:
partFirstByte- The position of the first byte of the layer part witin the overall image layer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partLastByte
UploadLayerPartRequest.Builder partLastByte(Long partLastByte)
The position of the last byte of the layer part within the overall image layer.
- Parameters:
partLastByte- The position of the last byte of the layer part within the overall image layer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
layerPartBlob
UploadLayerPartRequest.Builder layerPartBlob(SdkBytes layerPartBlob)
The base64-encoded layer part payload.
- Parameters:
layerPartBlob- The base64-encoded layer part payload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UploadLayerPartRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UploadLayerPartRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-