All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.protocolrestjson.DefaultProtocolRestJsonAsyncClient Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
/*
 * Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.protocolrestjson;

import static software.amazon.awssdk.utils.FunctionalUtils.runAndLogError;

import java.util.concurrent.CompletableFuture;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.awscore.client.handler.AwsAsyncClientHandler;
import software.amazon.awssdk.awscore.exception.AwsServiceException;
import software.amazon.awssdk.awscore.internal.protocol.json.AwsJsonProtocol;
import software.amazon.awssdk.awscore.protocol.json.AwsJsonProtocolFactory;
import software.amazon.awssdk.awscore.protocol.json.AwsJsonProtocolMetadata;
import software.amazon.awssdk.core.async.AsyncRequestBody;
import software.amazon.awssdk.core.async.AsyncResponseTransformer;
import software.amazon.awssdk.core.client.handler.AsyncClientHandler;
import software.amazon.awssdk.core.client.handler.ClientExecutionParams;
import software.amazon.awssdk.core.http.HttpResponseHandler;
import software.amazon.awssdk.core.internal.client.config.SdkClientConfiguration;
import software.amazon.awssdk.core.protocol.json.JsonClientMetadata;
import software.amazon.awssdk.core.protocol.json.JsonErrorResponseMetadata;
import software.amazon.awssdk.core.protocol.json.JsonErrorShapeMetadata;
import software.amazon.awssdk.core.protocol.json.JsonOperationMetadata;
import software.amazon.awssdk.services.protocolrestjson.model.AllTypesRequest;
import software.amazon.awssdk.services.protocolrestjson.model.AllTypesResponse;
import software.amazon.awssdk.services.protocolrestjson.model.DeleteOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.DeleteOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.EmptyModeledException;
import software.amazon.awssdk.services.protocolrestjson.model.HeadOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.HeadOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.IdempotentOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.IdempotentOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.JsonValuesOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.JsonValuesOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.MapOfStringToListOfStringInQueryParamsRequest;
import software.amazon.awssdk.services.protocolrestjson.model.MapOfStringToListOfStringInQueryParamsResponse;
import software.amazon.awssdk.services.protocolrestjson.model.MembersInHeadersRequest;
import software.amazon.awssdk.services.protocolrestjson.model.MembersInHeadersResponse;
import software.amazon.awssdk.services.protocolrestjson.model.MembersInQueryParamsRequest;
import software.amazon.awssdk.services.protocolrestjson.model.MembersInQueryParamsResponse;
import software.amazon.awssdk.services.protocolrestjson.model.MultiLocationOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.MultiLocationOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.NestedContainersRequest;
import software.amazon.awssdk.services.protocolrestjson.model.NestedContainersResponse;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithExplicitPayloadBlobRequest;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithExplicitPayloadBlobResponse;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithExplicitPayloadStructureRequest;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithExplicitPayloadStructureResponse;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithGreedyLabelRequest;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithGreedyLabelResponse;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithModeledContentTypeRequest;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithModeledContentTypeResponse;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithNoInputOrOutputRequest;
import software.amazon.awssdk.services.protocolrestjson.model.OperationWithNoInputOrOutputResponse;
import software.amazon.awssdk.services.protocolrestjson.model.QueryParamWithoutValueRequest;
import software.amazon.awssdk.services.protocolrestjson.model.QueryParamWithoutValueResponse;
import software.amazon.awssdk.services.protocolrestjson.model.StreamingInputOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.StreamingInputOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.model.StreamingOutputOperationRequest;
import software.amazon.awssdk.services.protocolrestjson.model.StreamingOutputOperationResponse;
import software.amazon.awssdk.services.protocolrestjson.transform.AllTypesRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.AllTypesResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.DeleteOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.DeleteOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.HeadOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.HeadOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.IdempotentOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.IdempotentOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.JsonValuesOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.JsonValuesOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MapOfStringToListOfStringInQueryParamsRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MapOfStringToListOfStringInQueryParamsResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MembersInHeadersRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MembersInHeadersResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MembersInQueryParamsRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MembersInQueryParamsResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MultiLocationOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.MultiLocationOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.NestedContainersRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.NestedContainersResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithExplicitPayloadBlobRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithExplicitPayloadBlobResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithExplicitPayloadStructureRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithExplicitPayloadStructureResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithGreedyLabelRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithGreedyLabelResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithModeledContentTypeRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithModeledContentTypeResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithNoInputOrOutputRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.OperationWithNoInputOrOutputResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.QueryParamWithoutValueRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.QueryParamWithoutValueResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.StreamingInputOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.StreamingInputOperationResponseUnmarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.StreamingOutputOperationRequestMarshaller;
import software.amazon.awssdk.services.protocolrestjson.transform.StreamingOutputOperationResponseUnmarshaller;
import software.amazon.awssdk.utils.CompletableFutureUtils;

/**
 * Internal implementation of {@link ProtocolRestJsonAsyncClient}.
 *
 * @see ProtocolRestJsonAsyncClient#builder()
 */
@Generated("software.amazon.awssdk:codegen")
@SdkInternalApi
final class DefaultProtocolRestJsonAsyncClient implements ProtocolRestJsonAsyncClient {
    private static final Logger log = LoggerFactory.getLogger(DefaultProtocolRestJsonAsyncClient.class);

    private final AsyncClientHandler clientHandler;

    private final AwsJsonProtocolFactory protocolFactory;

    protected DefaultProtocolRestJsonAsyncClient(SdkClientConfiguration clientConfiguration) {
        this.clientHandler = new AwsAsyncClientHandler(clientConfiguration);
        this.protocolFactory = init(false);
    }

    @Override
    public final String serviceName() {
        return SERVICE_NAME;
    }

    /**
     * Invokes the AllTypes operation asynchronously.
     *
     * @param allTypesRequest
     * @return A Java Future containing the result of the AllTypes operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • EmptyModeledException
  • *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.AllTypes * @see AWS API * Documentation */ @Override public CompletableFuture allTypes(AllTypesRequest allTypesRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new AllTypesResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new AllTypesRequestMarshaller(protocolFactory)).withResponseHandler(responseHandler) .withErrorResponseHandler(errorResponseHandler).withInput(allTypesRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the DeleteOperation operation asynchronously. * * @param deleteOperationRequest * @return A Java Future containing the result of the DeleteOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.DeleteOperation * @see AWS API * Documentation */ @Override public CompletableFuture deleteOperation(DeleteOperationRequest deleteOperationRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new DeleteOperationRequestMarshaller(protocolFactory)).withResponseHandler(responseHandler) .withErrorResponseHandler(errorResponseHandler).withInput(deleteOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the HeadOperation operation asynchronously. * * @param headOperationRequest * @return A Java Future containing the result of the HeadOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.HeadOperation * @see AWS API * Documentation */ @Override public CompletableFuture headOperation(HeadOperationRequest headOperationRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new HeadOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new HeadOperationRequestMarshaller(protocolFactory)).withResponseHandler(responseHandler) .withErrorResponseHandler(errorResponseHandler).withInput(headOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the IdempotentOperation operation asynchronously. * * @param idempotentOperationRequest * @return A Java Future containing the result of the IdempotentOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.IdempotentOperation * @see AWS * API Documentation */ @Override public CompletableFuture idempotentOperation( IdempotentOperationRequest idempotentOperationRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new IdempotentOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new IdempotentOperationRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(idempotentOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the JsonValuesOperation operation asynchronously. * * @param jsonValuesOperationRequest * @return A Java Future containing the result of the JsonValuesOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • EmptyModeledException
  • *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.JsonValuesOperation * @see AWS * API Documentation */ @Override public CompletableFuture jsonValuesOperation( JsonValuesOperationRequest jsonValuesOperationRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new JsonValuesOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new JsonValuesOperationRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(jsonValuesOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the MapOfStringToListOfStringInQueryParams operation asynchronously. * * @param mapOfStringToListOfStringInQueryParamsRequest * @return A Java Future containing the result of the MapOfStringToListOfStringInQueryParams operation returned by * the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.MapOfStringToListOfStringInQueryParams * @see AWS API Documentation */ @Override public CompletableFuture mapOfStringToListOfStringInQueryParams( MapOfStringToListOfStringInQueryParamsRequest mapOfStringToListOfStringInQueryParamsRequest) { try { HttpResponseHandler responseHandler = protocolFactory .createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new MapOfStringToListOfStringInQueryParamsResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new MapOfStringToListOfStringInQueryParamsRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(mapOfStringToListOfStringInQueryParamsRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the MembersInHeaders operation asynchronously. * * @param membersInHeadersRequest * @return A Java Future containing the result of the MembersInHeaders operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.MembersInHeaders * @see AWS API * Documentation */ @Override public CompletableFuture membersInHeaders(MembersInHeadersRequest membersInHeadersRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new MembersInHeadersResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new MembersInHeadersRequestMarshaller(protocolFactory)).withResponseHandler(responseHandler) .withErrorResponseHandler(errorResponseHandler).withInput(membersInHeadersRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the MembersInQueryParams operation asynchronously. * * @param membersInQueryParamsRequest * @return A Java Future containing the result of the MembersInQueryParams operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.MembersInQueryParams * @see AWS * API Documentation */ @Override public CompletableFuture membersInQueryParams( MembersInQueryParamsRequest membersInQueryParamsRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new MembersInQueryParamsResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new MembersInQueryParamsRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(membersInQueryParamsRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the MultiLocationOperation operation asynchronously. * * @param multiLocationOperationRequest * @return A Java Future containing the result of the MultiLocationOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.MultiLocationOperation * @see AWS API Documentation */ @Override public CompletableFuture multiLocationOperation( MultiLocationOperationRequest multiLocationOperationRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new MultiLocationOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new MultiLocationOperationRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(multiLocationOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the NestedContainers operation asynchronously. * * @param nestedContainersRequest * @return A Java Future containing the result of the NestedContainers operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.NestedContainers * @see AWS API * Documentation */ @Override public CompletableFuture nestedContainers(NestedContainersRequest nestedContainersRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new NestedContainersResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute(new ClientExecutionParams() .withMarshaller(new NestedContainersRequestMarshaller(protocolFactory)).withResponseHandler(responseHandler) .withErrorResponseHandler(errorResponseHandler).withInput(nestedContainersRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the OperationWithExplicitPayloadBlob operation asynchronously. * * @param operationWithExplicitPayloadBlobRequest * @return A Java Future containing the result of the OperationWithExplicitPayloadBlob operation returned by the * service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.OperationWithExplicitPayloadBlob * @see AWS API Documentation */ @Override public CompletableFuture operationWithExplicitPayloadBlob( OperationWithExplicitPayloadBlobRequest operationWithExplicitPayloadBlobRequest) { try { HttpResponseHandler responseHandler = protocolFactory .createResponseHandler( new JsonOperationMetadata().withPayloadJson(false).withHasStreamingSuccessResponse(false), new OperationWithExplicitPayloadBlobResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new OperationWithExplicitPayloadBlobRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(operationWithExplicitPayloadBlobRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the OperationWithExplicitPayloadStructure operation asynchronously. * * @param operationWithExplicitPayloadStructureRequest * @return A Java Future containing the result of the OperationWithExplicitPayloadStructure operation returned by * the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.OperationWithExplicitPayloadStructure * @see AWS API Documentation */ @Override public CompletableFuture operationWithExplicitPayloadStructure( OperationWithExplicitPayloadStructureRequest operationWithExplicitPayloadStructureRequest) { try { HttpResponseHandler responseHandler = protocolFactory .createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new OperationWithExplicitPayloadStructureResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new OperationWithExplicitPayloadStructureRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(operationWithExplicitPayloadStructureRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the OperationWithGreedyLabel operation asynchronously. * * @param operationWithGreedyLabelRequest * @return A Java Future containing the result of the OperationWithGreedyLabel operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.OperationWithGreedyLabel * @see AWS API Documentation */ @Override public CompletableFuture operationWithGreedyLabel( OperationWithGreedyLabelRequest operationWithGreedyLabelRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new OperationWithGreedyLabelResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new OperationWithGreedyLabelRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(operationWithGreedyLabelRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the OperationWithModeledContentType operation asynchronously. * * @param operationWithModeledContentTypeRequest * @return A Java Future containing the result of the OperationWithModeledContentType operation returned by the * service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.OperationWithModeledContentType * @see AWS API Documentation */ @Override public CompletableFuture operationWithModeledContentType( OperationWithModeledContentTypeRequest operationWithModeledContentTypeRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new OperationWithModeledContentTypeResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new OperationWithModeledContentTypeRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(operationWithModeledContentTypeRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the OperationWithNoInputOrOutput operation asynchronously. * * @param operationWithNoInputOrOutputRequest * @return A Java Future containing the result of the OperationWithNoInputOrOutput operation returned by the * service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.OperationWithNoInputOrOutput * @see AWS API Documentation */ @Override public CompletableFuture operationWithNoInputOrOutput( OperationWithNoInputOrOutputRequest operationWithNoInputOrOutputRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new OperationWithNoInputOrOutputResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new OperationWithNoInputOrOutputRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(operationWithNoInputOrOutputRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the QueryParamWithoutValue operation asynchronously. * * @param queryParamWithoutValueRequest * @return A Java Future containing the result of the QueryParamWithoutValue operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.QueryParamWithoutValue * @see AWS API Documentation */ @Override public CompletableFuture queryParamWithoutValue( QueryParamWithoutValueRequest queryParamWithoutValueRequest) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new QueryParamWithoutValueResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new QueryParamWithoutValueRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(queryParamWithoutValueRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the StreamingInputOperation operation asynchronously. * * @param streamingInputOperationRequest * @param requestBody * Functional interface that can be implemented to produce the request content in a non-blocking manner. The * size of the content is expected to be known up front. See {@link AsyncRequestBody} for specific details on * implementing this interface as well as links to precanned implementations for common scenarios like * uploading from a file. The service documentation for the request content is as follows '' * @return A Java Future containing the result of the StreamingInputOperation operation returned by the service.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.StreamingInputOperation * @see AWS API Documentation */ @Override public CompletableFuture streamingInputOperation( StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new StreamingInputOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler .execute(new ClientExecutionParams() .withMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withAsyncRequestBody(requestBody).withInput(streamingInputOperationRequest)); } catch (Throwable t) { return CompletableFutureUtils.failedFuture(t); } } /** * Invokes the StreamingOutputOperation operation asynchronously. * * @param streamingOutputOperationRequest * @param asyncResponseTransformer * The response transformer for processing the streaming response in a non-blocking manner. See * {@link AsyncResponseTransformer} for details on how this callback should be implemented and for links to * precanned implementations for common scenarios like downloading to a file. The service documentation for * the response content is as follows ''. * @return A future to the transformed result of the AsyncResponseTransformer.
* The CompletableFuture returned by this method can be completed exceptionally with the following * exceptions. *
    *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). * Can be used for catch all scenarios.
  • *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get * credentials, etc.
  • *
  • ProtocolRestJsonException Base class for all service exceptions. Unknown exceptions will be thrown as * an instance of this type.
  • *
* @sample ProtocolRestJsonAsyncClient.StreamingOutputOperation * @see AWS API Documentation */ @Override public CompletableFuture streamingOutputOperation( StreamingOutputOperationRequest streamingOutputOperationRequest, AsyncResponseTransformer asyncResponseTransformer) { try { HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(false).withHasStreamingSuccessResponse(true), new StreamingOutputOperationResponseUnmarshaller()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory); return clientHandler.execute( new ClientExecutionParams() .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) .withInput(streamingOutputOperationRequest), asyncResponseTransformer).whenComplete((r, e) -> { if (e != null) { asyncResponseTransformer.exceptionOccurred(e); } }); } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", () -> asyncResponseTransformer.exceptionOccurred(t)); return CompletableFutureUtils.failedFuture(t); } } @Override public void close() { clientHandler.close(); } private software.amazon.awssdk.awscore.protocol.json.AwsJsonProtocolFactory init(boolean supportsCbor) { return new AwsJsonProtocolFactory(new JsonClientMetadata() .withSupportsCbor(supportsCbor) .withSupportsIon(false) .withBaseServiceExceptionClass( software.amazon.awssdk.services.protocolrestjson.model.ProtocolRestJsonException.class) .withContentTypeOverride("") .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("EmptyModeledException").withModeledClass( EmptyModeledException.class)), AwsJsonProtocolMetadata.builder().protocolVersion("1.1") .protocol(AwsJsonProtocol.REST_JSON).build()); } private HttpResponseHandler createErrorResponseHandler(AwsJsonProtocolFactory protocolFactory) { return protocolFactory.createErrorResponseHandler(new JsonErrorResponseMetadata()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy