Class AbstractAmazonECRAsync

  • All Implemented Interfaces:
    AmazonECR, AmazonECRAsync

    public class AbstractAmazonECRAsync
    extends AbstractAmazonECR
    implements AmazonECRAsync
    Abstract implementation of AmazonECRAsync. Convenient method forms pass through to the corresponding overload that takes a request object and an AsyncHandler, which throws an UnsupportedOperationException.
    • Constructor Detail

      • AbstractAmazonECRAsync

        protected AbstractAmazonECRAsync()
    • Method Detail

      • batchDeleteImageAsync

        public Future<BatchDeleteImageResult> batchDeleteImageAsync​(BatchDeleteImageRequest request)
        Description copied from interface: AmazonECRAsync

        Deletes a list of specified images within a specified repository. Images are specified with either imageTag or imageDigest.

        Specified by:
        batchDeleteImageAsync in interface AmazonECRAsync
        Parameters:
        request - Deletes specified images within a specified repository. Images are specified with either the imageTag or imageDigest.
        Returns:
        A Java Future containing the result of the BatchDeleteImage operation returned by the service.
      • batchDeleteImageAsync

        public Future<BatchDeleteImageResult> batchDeleteImageAsync​(BatchDeleteImageRequest request,
                                                                    AsyncHandler<BatchDeleteImageRequest,​BatchDeleteImageResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Deletes a list of specified images within a specified repository. Images are specified with either imageTag or imageDigest.

        Specified by:
        batchDeleteImageAsync in interface AmazonECRAsync
        Parameters:
        request - Deletes specified images within a specified repository. Images are specified with either the imageTag or imageDigest.
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the BatchDeleteImage operation returned by the service.
      • batchGetImageAsync

        public Future<BatchGetImageResult> batchGetImageAsync​(BatchGetImageRequest request)
        Description copied from interface: AmazonECRAsync

        Gets detailed information for specified images within a specified repository. Images are specified with either imageTag or imageDigest.

        Specified by:
        batchGetImageAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the BatchGetImage operation returned by the service.
      • batchGetImageAsync

        public Future<BatchGetImageResult> batchGetImageAsync​(BatchGetImageRequest request,
                                                              AsyncHandler<BatchGetImageRequest,​BatchGetImageResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Gets detailed information for specified images within a specified repository. Images are specified with either imageTag or imageDigest.

        Specified by:
        batchGetImageAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the BatchGetImage operation returned by the service.
      • completeLayerUploadAsync

        public Future<CompleteLayerUploadResult> completeLayerUploadAsync​(CompleteLayerUploadRequest request)
        Description copied from interface: AmazonECRAsync

        Inform Amazon ECR that the image layer upload for a specified registry, repository name, and upload ID, has completed. You can optionally provide a sha256 digest of the image layer for data validation purposes.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        completeLayerUploadAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the CompleteLayerUpload operation returned by the service.
      • completeLayerUploadAsync

        public Future<CompleteLayerUploadResult> completeLayerUploadAsync​(CompleteLayerUploadRequest request,
                                                                          AsyncHandler<CompleteLayerUploadRequest,​CompleteLayerUploadResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Inform Amazon ECR that the image layer upload for a specified registry, repository name, and upload ID, has completed. You can optionally provide a sha256 digest of the image layer for data validation purposes.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        completeLayerUploadAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CompleteLayerUpload operation returned by the service.
      • deleteRepositoryAsync

        public Future<DeleteRepositoryResult> deleteRepositoryAsync​(DeleteRepositoryRequest request,
                                                                    AsyncHandler<DeleteRepositoryRequest,​DeleteRepositoryResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Deletes an existing image repository. If a repository contains images, you must use the force option to delete it.

        Specified by:
        deleteRepositoryAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteRepository operation returned by the service.
      • getAuthorizationTokenAsync

        public Future<GetAuthorizationTokenResult> getAuthorizationTokenAsync​(GetAuthorizationTokenRequest request)
        Description copied from interface: AmazonECRAsync

        Retrieves a token that is valid for a specified registry for 12 hours. This command allows you to use the docker CLI to push and pull images with Amazon ECR. If you do not specify a registry, the default registry is assumed.

        The authorizationToken returned for each registry specified is a base64 encoded string that can be decoded and used in a docker login command to authenticate to a registry. The AWS CLI offers an aws ecr get-login command that simplifies the login process.

        Specified by:
        getAuthorizationTokenAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the GetAuthorizationToken operation returned by the service.
      • getAuthorizationTokenAsync

        public Future<GetAuthorizationTokenResult> getAuthorizationTokenAsync​(GetAuthorizationTokenRequest request,
                                                                              AsyncHandler<GetAuthorizationTokenRequest,​GetAuthorizationTokenResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Retrieves a token that is valid for a specified registry for 12 hours. This command allows you to use the docker CLI to push and pull images with Amazon ECR. If you do not specify a registry, the default registry is assumed.

        The authorizationToken returned for each registry specified is a base64 encoded string that can be decoded and used in a docker login command to authenticate to a registry. The AWS CLI offers an aws ecr get-login command that simplifies the login process.

        Specified by:
        getAuthorizationTokenAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the GetAuthorizationToken operation returned by the service.
      • getDownloadUrlForLayerAsync

        public Future<GetDownloadUrlForLayerResult> getDownloadUrlForLayerAsync​(GetDownloadUrlForLayerRequest request)
        Description copied from interface: AmazonECRAsync

        Retrieves the pre-signed Amazon S3 download URL corresponding to an image layer. You can only get URLs for image layers that are referenced in an image.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        getDownloadUrlForLayerAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the GetDownloadUrlForLayer operation returned by the service.
      • getDownloadUrlForLayerAsync

        public Future<GetDownloadUrlForLayerResult> getDownloadUrlForLayerAsync​(GetDownloadUrlForLayerRequest request,
                                                                                AsyncHandler<GetDownloadUrlForLayerRequest,​GetDownloadUrlForLayerResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Retrieves the pre-signed Amazon S3 download URL corresponding to an image layer. You can only get URLs for image layers that are referenced in an image.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        getDownloadUrlForLayerAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the GetDownloadUrlForLayer operation returned by the service.
      • initiateLayerUploadAsync

        public Future<InitiateLayerUploadResult> initiateLayerUploadAsync​(InitiateLayerUploadRequest request)
        Description copied from interface: AmazonECRAsync

        Notify Amazon ECR that you intend to upload an image layer.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        initiateLayerUploadAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the InitiateLayerUpload operation returned by the service.
      • initiateLayerUploadAsync

        public Future<InitiateLayerUploadResult> initiateLayerUploadAsync​(InitiateLayerUploadRequest request,
                                                                          AsyncHandler<InitiateLayerUploadRequest,​InitiateLayerUploadResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Notify Amazon ECR that you intend to upload an image layer.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        initiateLayerUploadAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the InitiateLayerUpload operation returned by the service.
      • listImagesAsync

        public Future<ListImagesResult> listImagesAsync​(ListImagesRequest request,
                                                        AsyncHandler<ListImagesRequest,​ListImagesResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Lists all the image IDs for a given repository.

        Specified by:
        listImagesAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListImages operation returned by the service.
      • putImageAsync

        public Future<PutImageResult> putImageAsync​(PutImageRequest request)
        Description copied from interface: AmazonECRAsync

        Creates or updates the image manifest associated with an image.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        putImageAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the PutImage operation returned by the service.
      • putImageAsync

        public Future<PutImageResult> putImageAsync​(PutImageRequest request,
                                                    AsyncHandler<PutImageRequest,​PutImageResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Creates or updates the image manifest associated with an image.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        putImageAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the PutImage operation returned by the service.
      • uploadLayerPartAsync

        public Future<UploadLayerPartResult> uploadLayerPartAsync​(UploadLayerPartRequest request)
        Description copied from interface: AmazonECRAsync

        Uploads an image layer part to Amazon ECR.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        uploadLayerPartAsync in interface AmazonECRAsync
        Returns:
        A Java Future containing the result of the UploadLayerPart operation returned by the service.
      • uploadLayerPartAsync

        public Future<UploadLayerPartResult> uploadLayerPartAsync​(UploadLayerPartRequest request,
                                                                  AsyncHandler<UploadLayerPartRequest,​UploadLayerPartResult> asyncHandler)
        Description copied from interface: AmazonECRAsync

        Uploads an image layer part to Amazon ECR.

        This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers. Use the docker CLI to pull, tag, and push images.

        Specified by:
        uploadLayerPartAsync in interface AmazonECRAsync
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the UploadLayerPart operation returned by the service.