com.azure.resourcemanager.recoveryservicesbackup.implementation.ResourceGuardProxyOperationsClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// 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.Post;
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.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.ResourceGuardProxyOperationsClient;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.ResourceGuardProxyBaseResourceInner;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.UnlockDeleteResponseInner;
import com.azure.resourcemanager.recoveryservicesbackup.models.UnlockDeleteRequest;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in ResourceGuardProxyOperationsClient.
*/
public final class ResourceGuardProxyOperationsClientImpl implements ResourceGuardProxyOperationsClient {
/**
* The proxy service used to perform REST calls.
*/
private final ResourceGuardProxyOperationsService service;
/**
* The service client containing this operation class.
*/
private final RecoveryServicesBackupClientImpl client;
/**
* Initializes an instance of ResourceGuardProxyOperationsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
ResourceGuardProxyOperationsClientImpl(RecoveryServicesBackupClientImpl client) {
this.service = RestProxy.create(ResourceGuardProxyOperationsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for RecoveryServicesBackupClientResourceGuardProxyOperations to be used
* by the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "RecoveryServicesBack")
public interface ResourceGuardProxyOperationsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupResourceGuardProxies/{resourceGuardProxyName}")
@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("resourceGuardProxyName") String resourceGuardProxyName, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupResourceGuardProxies/{resourceGuardProxyName}")
@ExpectedResponses({ 200 })
@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("resourceGuardProxyName") String resourceGuardProxyName,
@BodyParam("application/json") ResourceGuardProxyBaseResourceInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupResourceGuardProxies/{resourceGuardProxyName}")
@ExpectedResponses({ 200, 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("resourceGuardProxyName") String resourceGuardProxyName, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupResourceGuardProxies/{resourceGuardProxyName}/unlockDelete")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> unlockDelete(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("vaultName") String vaultName,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGuardProxyName") String resourceGuardProxyName,
@BodyParam("application/json") UnlockDeleteRequest parameters, @HeaderParam("Accept") String accept,
Context context);
}
/**
* Returns ResourceGuardProxy under vault and with the name referenced in request.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName) {
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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Returns ResourceGuardProxy under vault and with the name referenced in request.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName, 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, accept, context);
}
/**
* Returns ResourceGuardProxy under vault and with the name referenced in request.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getAsync(String vaultName, String resourceGroupName,
String resourceGuardProxyName) {
return getWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Returns ResourceGuardProxy under vault and with the name referenced in request.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String vaultName, String resourceGroupName,
String resourceGuardProxyName, Context context) {
return getWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, context).block();
}
/**
* Returns ResourceGuardProxy under vault and with the name referenced in request.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGuardProxyBaseResourceInner get(String vaultName, String resourceGroupName,
String resourceGuardProxyName) {
return getWithResponse(vaultName, resourceGroupName, resourceGuardProxyName, Context.NONE).getValue();
}
/**
* Add or Update ResourceGuardProxy under vault
* Secures vault critical operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> putWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName, ResourceGuardProxyBaseResourceInner 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, parameters, accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Add or Update ResourceGuardProxy under vault
* Secures vault critical operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> putWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName, ResourceGuardProxyBaseResourceInner 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, parameters, accept, context);
}
/**
* Add or Update ResourceGuardProxy under vault
* Secures vault critical operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono putAsync(String vaultName, String resourceGroupName,
String resourceGuardProxyName, ResourceGuardProxyBaseResourceInner parameters) {
return putWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Add or Update ResourceGuardProxy under vault
* Secures vault critical operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response body along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response putWithResponse(String vaultName, String resourceGroupName,
String resourceGuardProxyName, ResourceGuardProxyBaseResourceInner parameters, Context context) {
return putWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, parameters, context).block();
}
/**
* Add or Update ResourceGuardProxy under vault
* Secures vault critical operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGuardProxyBaseResourceInner put(String vaultName, String resourceGroupName,
String resourceGuardProxyName, ResourceGuardProxyBaseResourceInner parameters) {
return putWithResponse(vaultName, resourceGroupName, resourceGuardProxyName, parameters, Context.NONE)
.getValue();
}
/**
* Delete ResourceGuardProxy under vault.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 resourceGuardProxyName) {
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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Delete ResourceGuardProxy under vault.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 resourceGuardProxyName, 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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(), resourceGuardProxyName, accept, context);
}
/**
* Delete ResourceGuardProxy under vault.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 resourceGuardProxyName) {
return deleteWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName)
.flatMap(ignored -> Mono.empty());
}
/**
* Delete ResourceGuardProxy under vault.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response deleteWithResponse(String vaultName, String resourceGroupName, String resourceGuardProxyName,
Context context) {
return deleteWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, context).block();
}
/**
* Delete ResourceGuardProxy under vault.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 resourceGuardProxyName) {
deleteWithResponse(vaultName, resourceGroupName, resourceGuardProxyName, Context.NONE);
}
/**
* Secures delete ResourceGuardProxy operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response of Unlock Delete API along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> unlockDeleteWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName, UnlockDeleteRequest 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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.unlockDelete(this.client.getEndpoint(), this.client.getApiVersion(),
vaultName, resourceGroupName, this.client.getSubscriptionId(), resourceGuardProxyName, parameters,
accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Secures delete ResourceGuardProxy operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response of Unlock Delete API along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> unlockDeleteWithResponseAsync(String vaultName,
String resourceGroupName, String resourceGuardProxyName, UnlockDeleteRequest 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 (resourceGuardProxyName == null) {
return Mono.error(
new IllegalArgumentException("Parameter resourceGuardProxyName 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.unlockDelete(this.client.getEndpoint(), this.client.getApiVersion(), vaultName,
resourceGroupName, this.client.getSubscriptionId(), resourceGuardProxyName, parameters, accept, context);
}
/**
* Secures delete ResourceGuardProxy operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response of Unlock Delete API on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono unlockDeleteAsync(String vaultName, String resourceGroupName,
String resourceGuardProxyName, UnlockDeleteRequest parameters) {
return unlockDeleteWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Secures delete ResourceGuardProxy operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response of Unlock Delete API along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response unlockDeleteWithResponse(String vaultName, String resourceGroupName,
String resourceGuardProxyName, UnlockDeleteRequest parameters, Context context) {
return unlockDeleteWithResponseAsync(vaultName, resourceGroupName, resourceGuardProxyName, parameters, context)
.block();
}
/**
* Secures delete ResourceGuardProxy operations.
*
* @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 resourceGuardProxyName The resourceGuardProxyName parameter.
* @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 response of Unlock Delete API.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public UnlockDeleteResponseInner unlockDelete(String vaultName, String resourceGroupName,
String resourceGuardProxyName, UnlockDeleteRequest parameters) {
return unlockDeleteWithResponse(vaultName, resourceGroupName, resourceGuardProxyName, parameters, Context.NONE)
.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy