NotebookOperationResultAsyncClient.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts;
import com.azure.analytics.synapse.artifacts.implementation.NotebookOperationResultsImpl;
import com.azure.analytics.synapse.artifacts.models.ErrorContractException;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceClient;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.Response;
import reactor.core.publisher.Mono;
/** Initializes a new instance of the asynchronous ArtifactsClient type. */
@ServiceClient(builder = ArtifactsClientBuilder.class, isAsync = true)
public final class NotebookOperationResultAsyncClient {
private final NotebookOperationResultsImpl serviceClient;
/**
* Initializes an instance of NotebookOperationResults client.
*
* @param serviceClient the service client implementation.
*/
NotebookOperationResultAsyncClient(NotebookOperationResultsImpl serviceClient) {
this.serviceClient = serviceClient;
}
/**
* Get notebook operation result.
*
* @param operationId Operation ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorContractException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return notebook operation result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> getWithResponse(String operationId) {
return this.serviceClient.getWithResponseAsync(operationId);
}
/**
* Get notebook operation result.
*
* @param operationId Operation ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorContractException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return notebook operation result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> get(String operationId) {
return this.serviceClient.getAsync(operationId);
}
}