com.azure.resourcemanager.recoveryservicesbackup.implementation.PrivateEndpointConnectionsClientImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Put;
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.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.PrivateEndpointConnectionsClient;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.PrivateEndpointConnectionResourceInner;
import java.nio.ByteBuffer;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in PrivateEndpointConnectionsClient.
*/
public final class PrivateEndpointConnectionsClientImpl implements PrivateEndpointConnectionsClient {
/**
* The proxy service used to perform REST calls.
*/
private final PrivateEndpointConnectionsService service;
/**
* The service client containing this operation class.
*/
private final RecoveryServicesBackupClientImpl client;
/**
* Initializes an instance of PrivateEndpointConnectionsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
PrivateEndpointConnectionsClientImpl(RecoveryServicesBackupClientImpl client) {
this.service = RestProxy.create(PrivateEndpointConnectionsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for RecoveryServicesBackupClientPrivateEndpointConnections to be used by
* the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "RecoveryServicesBack")
public interface PrivateEndpointConnectionsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("vaultName") String vaultName,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> put(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("vaultName") String vaultName,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@BodyParam("application/json") PrivateEndpointConnectionResourceInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> delete(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("vaultName") String vaultName,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Get Private Endpoint Connection. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String vaultName,
String resourceGroupName, String privateEndpointConnectionName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), this.client.getApiVersion(), vaultName,
resourceGroupName, this.client.getSubscriptionId(), privateEndpointConnectionName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get Private Endpoint Connection. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String vaultName,
String resourceGroupName, String privateEndpointConnectionName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), this.client.getApiVersion(), vaultName, resourceGroupName,
this.client.getSubscriptionId(), privateEndpointConnectionName, accept, context);
}
/**
* Get Private Endpoint Connection. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
return getWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get Private Endpoint Connection. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, Context context) {
return getWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName, context).block();
}
/**
* Get Private Endpoint Connection. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionResourceInner get(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
return getWithResponse(vaultName, resourceGroupName, privateEndpointConnectionName, Context.NONE).getValue();
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> putWithResponseAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.put(this.client.getEndpoint(), this.client.getApiVersion(), vaultName,
resourceGroupName, this.client.getSubscriptionId(), privateEndpointConnectionName, parameters, accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> putWithResponseAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.put(this.client.getEndpoint(), this.client.getApiVersion(), vaultName, resourceGroupName,
this.client.getSubscriptionId(), privateEndpointConnectionName, parameters, accept, context);
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, PrivateEndpointConnectionResourceInner>
beginPutAsync(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
PrivateEndpointConnectionResourceInner parameters) {
Mono>> mono
= putWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters);
return this.client.getLroResult(
mono, this.client.getHttpPipeline(), PrivateEndpointConnectionResourceInner.class,
PrivateEndpointConnectionResourceInner.class, this.client.getContext());
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, PrivateEndpointConnectionResourceInner>
beginPutAsync(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
PrivateEndpointConnectionResourceInner parameters, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= putWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters, context);
return this.client.getLroResult(
mono, this.client.getHttpPipeline(), PrivateEndpointConnectionResourceInner.class,
PrivateEndpointConnectionResourceInner.class, context);
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionResourceInner>
beginPut(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
PrivateEndpointConnectionResourceInner parameters) {
return this.beginPutAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters)
.getSyncPoller();
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionResourceInner>
beginPut(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
PrivateEndpointConnectionResourceInner parameters, Context context) {
return this.beginPutAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters, context)
.getSyncPoller();
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono putAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters) {
return beginPutAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono putAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters, Context context) {
return beginPutAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionResourceInner put(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters) {
return putAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters).block();
}
/**
* Approve or Reject Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param parameters Request body for operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private Endpoint Connection Response Properties.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionResourceInner put(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, PrivateEndpointConnectionResourceInner parameters, Context context) {
return putAsync(vaultName, resourceGroupName, privateEndpointConnectionName, parameters, context).block();
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> deleteWithResponseAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.delete(this.client.getEndpoint(), this.client.getApiVersion(), vaultName,
resourceGroupName, this.client.getSubscriptionId(), privateEndpointConnectionName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> deleteWithResponseAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.delete(this.client.getEndpoint(), this.client.getApiVersion(), vaultName, resourceGroupName,
this.client.getSubscriptionId(), privateEndpointConnectionName, accept, context);
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
Mono>> mono
= deleteWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
this.client.getContext());
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= deleteWithResponseAsync(vaultName, resourceGroupName, privateEndpointConnectionName, context);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
context);
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
return this.beginDeleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName).getSyncPoller();
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, Context context) {
return this.beginDeleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName, context)
.getSyncPoller();
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String vaultName, String resourceGroupName, String privateEndpointConnectionName) {
return beginDeleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
Context context) {
return beginDeleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void delete(String vaultName, String resourceGroupName, String privateEndpointConnectionName) {
deleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName).block();
}
/**
* Delete Private Endpoint requests. This call is made by Backup Admin.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param privateEndpointConnectionName The name of the private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void delete(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
Context context) {
deleteAsync(vaultName, resourceGroupName, privateEndpointConnectionName, context).block();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy