Interface PutImageRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutImageRequest.Builder,PutImageRequest>,EcrPublicRequest.Builder,SdkBuilder<PutImageRequest.Builder,PutImageRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutImageRequest
public static interface PutImageRequest.Builder extends EcrPublicRequest.Builder, SdkPojo, CopyableBuilder<PutImageRequest.Builder,PutImageRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutImageRequest.BuilderimageDigest(String imageDigest)The image digest of the image manifest that corresponds to the image.PutImageRequest.BuilderimageManifest(String imageManifest)The image manifest that corresponds to the image to be uploaded.PutImageRequest.BuilderimageManifestMediaType(String imageManifestMediaType)The media type of the image manifest.PutImageRequest.BuilderimageTag(String imageTag)The tag to associate with the image.PutImageRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutImageRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutImageRequest.BuilderregistryId(String registryId)The Amazon Web Services account ID, or registry alias, that's associated with the public registry that contains the repository where the image is put.PutImageRequest.BuilderrepositoryName(String repositoryName)The name of the repository where the image is put.-
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
PutImageRequest.Builder registryId(String registryId)
The Amazon Web Services account ID, or registry alias, that's associated with the public registry that contains the repository where the image is put. 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 public registry that contains the repository where the image is put. 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
PutImageRequest.Builder repositoryName(String repositoryName)
The name of the repository where the image is put.
- Parameters:
repositoryName- The name of the repository where the image is put.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageManifest
PutImageRequest.Builder imageManifest(String imageManifest)
The image manifest that corresponds to the image to be uploaded.
- Parameters:
imageManifest- The image manifest that corresponds to the image to be uploaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageManifestMediaType
PutImageRequest.Builder imageManifestMediaType(String imageManifestMediaType)
The media type of the image manifest. If you push an image manifest that doesn't contain the
mediaTypefield, you must specify theimageManifestMediaTypein the request.- Parameters:
imageManifestMediaType- The media type of the image manifest. If you push an image manifest that doesn't contain themediaTypefield, you must specify theimageManifestMediaTypein the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageTag
PutImageRequest.Builder imageTag(String imageTag)
The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.
- Parameters:
imageTag- The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageDigest
PutImageRequest.Builder imageDigest(String imageDigest)
The image digest of the image manifest that corresponds to the image.
- Parameters:
imageDigest- The image digest of the image manifest that corresponds to the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PutImageRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutImageRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-