HealthApisImpl.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.webpubsub.implementation;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Head;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.exception.HttpResponseException;
import com.azure.core.http.rest.RequestOptions;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in HealthApis. */
public final class HealthApisImpl {
/** The proxy service used to perform REST calls. */
private final HealthApisService service;
/** The service client containing this operation class. */
private final AzureWebPubSubServiceRestApiImpl client;
/**
* Initializes an instance of HealthApisImpl.
*
* @param client the instance of the service client containing this operation class.
*/
HealthApisImpl(AzureWebPubSubServiceRestApiImpl client) {
this.service =
RestProxy.create(HealthApisService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AzureWebPubSubServiceRestApiHealthApis to be used by the proxy
* service to perform REST calls.
*/
@Host("{Endpoint}")
@ServiceInterface(name = "AzureWebPubSubServic")
public interface HealthApisService {
@Head("/api/health")
@ExpectedResponses({200})
Mono<Response<Void>> getServiceStatus(
@HostParam("Endpoint") String endpoint,
@QueryParam("api-version") String apiVersion,
RequestOptions requestOptions,
Context context);
}
/**
* Get service health status.
*
* <p><strong>Query Parameters</strong>
*
* <table border="1">
* <caption>Query Parameters</caption>
* <tr><th>Name</th><th>Type</th><th>Required</th><th>Description</th></tr>
* <tr><td>apiVersion</td><td>String</td><td>Yes</td><td>Api Version</td></tr>
* </table>
*
* @param requestOptions The options to configure the HTTP request before HTTP client sends it.
* @throws HttpResponseException thrown if the request is rejected by server.
* @return service health status.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> getServiceStatusWithResponseAsync(RequestOptions requestOptions) {
return FluxUtil.withContext(
context ->
service.getServiceStatus(
this.client.getEndpoint(),
this.client.getServiceVersion().getVersion(),
requestOptions,
context));
}
/**
* Get service health status.
*
* <p><strong>Query Parameters</strong>
*
* <table border="1">
* <caption>Query Parameters</caption>
* <tr><th>Name</th><th>Type</th><th>Required</th><th>Description</th></tr>
* <tr><td>apiVersion</td><td>String</td><td>Yes</td><td>Api Version</td></tr>
* </table>
*
* @param requestOptions The options to configure the HTTP request before HTTP client sends it.
* @param context The context to associate with this operation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @return service health status.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> getServiceStatusWithResponseAsync(RequestOptions requestOptions, Context context) {
return service.getServiceStatus(
this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), requestOptions, context);
}
/**
* Get service health status.
*
* <p><strong>Query Parameters</strong>
*
* <table border="1">
* <caption>Query Parameters</caption>
* <tr><th>Name</th><th>Type</th><th>Required</th><th>Description</th></tr>
* <tr><td>apiVersion</td><td>String</td><td>Yes</td><td>Api Version</td></tr>
* </table>
*
* @param requestOptions The options to configure the HTTP request before HTTP client sends it.
* @throws HttpResponseException thrown if the request is rejected by server.
* @return service health status.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<Void> getServiceStatusWithResponse(RequestOptions requestOptions) {
return getServiceStatusWithResponseAsync(requestOptions).block();
}
}