P2SVpnGatewaysClientImpl.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.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.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.Patch;
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.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
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.logging.ClientLogger;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.network.fluent.P2SVpnGatewaysClient;
import com.azure.resourcemanager.network.fluent.models.P2SVpnConnectionHealthInner;
import com.azure.resourcemanager.network.fluent.models.P2SVpnGatewayInner;
import com.azure.resourcemanager.network.fluent.models.VpnProfileResponseInner;
import com.azure.resourcemanager.network.models.AuthenticationMethod;
import com.azure.resourcemanager.network.models.ListP2SVpnGatewaysResult;
import com.azure.resourcemanager.network.models.P2SVpnConnectionHealthRequest;
import com.azure.resourcemanager.network.models.P2SVpnConnectionRequest;
import com.azure.resourcemanager.network.models.P2SVpnProfileParameters;
import com.azure.resourcemanager.network.models.TagsObject;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsListing;
import java.nio.ByteBuffer;
import java.util.List;
import java.util.Map;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in P2SVpnGatewaysClient. */
public final class P2SVpnGatewaysClientImpl
implements InnerSupportsGet<P2SVpnGatewayInner>,
InnerSupportsListing<P2SVpnGatewayInner>,
InnerSupportsDelete<Void>,
P2SVpnGatewaysClient {
private final ClientLogger logger = new ClientLogger(P2SVpnGatewaysClientImpl.class);
/** The proxy service used to perform REST calls. */
private final P2SVpnGatewaysService service;
/** The service client containing this operation class. */
private final NetworkManagementClientImpl client;
/**
* Initializes an instance of P2SVpnGatewaysClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
P2SVpnGatewaysClientImpl(NetworkManagementClientImpl client) {
this.service =
RestProxy.create(P2SVpnGatewaysService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for NetworkManagementClientP2SVpnGateways to be used by the proxy service
* to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "NetworkManagementCli")
private interface P2SVpnGatewaysService {
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<P2SVpnGatewayInner>> getByResourceGroup(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Put(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}")
@ExpectedResponses({200, 201})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> createOrUpdate(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") P2SVpnGatewayInner p2SVpnGatewayParameters,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Patch(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<P2SVpnGatewayInner>> updateTags(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") TagsObject p2SVpnGatewayParameters,
Context context);
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Delete(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}")
@ExpectedResponses({200, 202, 204})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> delete(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ListP2SVpnGatewaysResult>> listByResourceGroup(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Network/p2svpnGateways")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ListP2SVpnGatewaysResult>> list(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@QueryParam("api-version") String apiVersion,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Post(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}/generatevpnprofile")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> generateVpnProfile(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") P2SVpnProfileParameters parameters,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Post(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealth(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Post(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealthDetailed(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("gatewayName") String gatewayName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") P2SVpnConnectionHealthRequest request,
Context context);
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Post(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> disconnectP2SVpnConnections(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("p2sVpnGatewayName") String p2SVpnGatewayName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") P2SVpnConnectionRequest request,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("{nextLink}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ListP2SVpnGatewaysResult>> listByResourceGroupNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("{nextLink}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ListP2SVpnGatewaysResult>> listNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
}
/**
* Retrieves the details of a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<P2SVpnGatewayInner>> getByResourceGroupWithResponseAsync(
String resourceGroupName, String gatewayName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.getByResourceGroup(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Retrieves the details of a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<P2SVpnGatewayInner>> getByResourceGroupWithResponseAsync(
String resourceGroupName, String gatewayName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.getByResourceGroup(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
context);
}
/**
* Retrieves the details of a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnGatewayInner> getByResourceGroupAsync(String resourceGroupName, String gatewayName) {
return getByResourceGroupWithResponseAsync(resourceGroupName, gatewayName)
.flatMap(
(Response<P2SVpnGatewayInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Retrieves the details of a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner getByResourceGroup(String resourceGroupName, String gatewayName) {
return getByResourceGroupAsync(resourceGroupName, gatewayName).block();
}
/**
* Retrieves the details of a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<P2SVpnGatewayInner> getByResourceGroupWithResponse(
String resourceGroupName, String gatewayName, Context context) {
return getByResourceGroupWithResponseAsync(resourceGroupName, gatewayName, context).block();
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
if (p2SVpnGatewayParameters == null) {
return Mono
.error(
new IllegalArgumentException("Parameter p2SVpnGatewayParameters is required and cannot be null."));
} else {
p2SVpnGatewayParameters.validate();
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.createOrUpdate(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
p2SVpnGatewayParameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
if (p2SVpnGatewayParameters == null) {
return Mono
.error(
new IllegalArgumentException("Parameter p2SVpnGatewayParameters is required and cannot be null."));
} else {
p2SVpnGatewayParameters.validate();
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.createOrUpdate(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
p2SVpnGatewayParameters,
context);
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginCreateOrUpdateAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters) {
Mono<Response<Flux<ByteBuffer>>> mono =
createOrUpdateWithResponseAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters);
return this
.client
.<P2SVpnGatewayInner, P2SVpnGatewayInner>getLroResult(
mono, this.client.getHttpPipeline(), P2SVpnGatewayInner.class, P2SVpnGatewayInner.class, Context.NONE);
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginCreateOrUpdateAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
createOrUpdateWithResponseAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters, context);
return this
.client
.<P2SVpnGatewayInner, P2SVpnGatewayInner>getLroResult(
mono, this.client.getHttpPipeline(), P2SVpnGatewayInner.class, P2SVpnGatewayInner.class, context);
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginCreateOrUpdate(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters) {
return beginCreateOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters).getSyncPoller();
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginCreateOrUpdate(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters, Context context) {
return beginCreateOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters, context)
.getSyncPoller();
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnGatewayInner> createOrUpdateAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters) {
return beginCreateOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<P2SVpnGatewayInner> createOrUpdateAsync(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters, Context context) {
return beginCreateOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner createOrUpdate(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters) {
return createOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters).block();
}
/**
* Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param p2SVpnGatewayParameters P2SVpnGateway Resource.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner createOrUpdate(
String resourceGroupName, String gatewayName, P2SVpnGatewayInner p2SVpnGatewayParameters, Context context) {
return createOrUpdateAsync(resourceGroupName, gatewayName, p2SVpnGatewayParameters, context).block();
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param tags Resource tags.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<P2SVpnGatewayInner>> updateTagsWithResponseAsync(
String resourceGroupName, String gatewayName, Map<String, String> tags) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
TagsObject p2SVpnGatewayParameters = new TagsObject();
p2SVpnGatewayParameters.withTags(tags);
return FluxUtil
.withContext(
context ->
service
.updateTags(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
p2SVpnGatewayParameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param tags Resource tags.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<P2SVpnGatewayInner>> updateTagsWithResponseAsync(
String resourceGroupName, String gatewayName, Map<String, String> tags, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
TagsObject p2SVpnGatewayParameters = new TagsObject();
p2SVpnGatewayParameters.withTags(tags);
context = this.client.mergeContext(context);
return service
.updateTags(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
p2SVpnGatewayParameters,
context);
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param tags Resource tags.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnGatewayInner> updateTagsAsync(
String resourceGroupName, String gatewayName, Map<String, String> tags) {
return updateTagsWithResponseAsync(resourceGroupName, gatewayName, tags)
.flatMap(
(Response<P2SVpnGatewayInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnGatewayInner> updateTagsAsync(String resourceGroupName, String gatewayName) {
final Map<String, String> tags = null;
return updateTagsWithResponseAsync(resourceGroupName, gatewayName, tags)
.flatMap(
(Response<P2SVpnGatewayInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner updateTags(String resourceGroupName, String gatewayName) {
final Map<String, String> tags = null;
return updateTagsAsync(resourceGroupName, gatewayName, tags).block();
}
/**
* Updates virtual wan p2s vpn gateway tags.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @param tags Resource tags.
* @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 p2SVpnGateway Resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<P2SVpnGatewayInner> updateTagsWithResponse(
String resourceGroupName, String gatewayName, Map<String, String> tags, Context context) {
return updateTagsWithResponseAsync(resourceGroupName, gatewayName, tags, context).block();
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName, String gatewayName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.delete(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(
String resourceGroupName, String gatewayName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.delete(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
context);
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<Void>, Void> beginDeleteAsync(String resourceGroupName, String gatewayName) {
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName, gatewayName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<Void>, Void> beginDeleteAsync(
String resourceGroupName, String gatewayName, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName, gatewayName, context);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, context);
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String gatewayName) {
return beginDeleteAsync(resourceGroupName, gatewayName).getSyncPoller();
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDelete(
String resourceGroupName, String gatewayName, Context context) {
return beginDeleteAsync(resourceGroupName, gatewayName, context).getSyncPoller();
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> deleteAsync(String resourceGroupName, String gatewayName) {
return beginDeleteAsync(resourceGroupName, gatewayName).last().flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Void> deleteAsync(String resourceGroupName, String gatewayName, Context context) {
return beginDeleteAsync(resourceGroupName, gatewayName, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 resourceGroupName, String gatewayName) {
deleteAsync(resourceGroupName, gatewayName).block();
}
/**
* Deletes a virtual wan p2s vpn gateway.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @param gatewayName The name of the gateway.
* @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 resourceGroupName, String gatewayName, Context context) {
deleteAsync(resourceGroupName, gatewayName, context).block();
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listByResourceGroupSinglePageAsync(String resourceGroupName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.listByResourceGroup(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
apiVersion,
context))
.<PagedResponse<P2SVpnGatewayInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listByResourceGroupSinglePageAsync(
String resourceGroupName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.listByResourceGroup(
this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName, apiVersion, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<P2SVpnGatewayInner> listByResourceGroupAsync(String resourceGroupName) {
return new PagedFlux<>(
() -> listByResourceGroupSinglePageAsync(resourceGroupName),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<P2SVpnGatewayInner> listByResourceGroupAsync(String resourceGroupName, Context context) {
return new PagedFlux<>(
() -> listByResourceGroupSinglePageAsync(resourceGroupName, context),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink, context));
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<P2SVpnGatewayInner> listByResourceGroup(String resourceGroupName) {
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName));
}
/**
* Lists all the P2SVpnGateways in a resource group.
*
* @param resourceGroupName The resource group name of the P2SVpnGateway.
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<P2SVpnGatewayInner> listByResourceGroup(String resourceGroupName, Context context) {
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, context));
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listSinglePageAsync() {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service.list(this.client.getEndpoint(), this.client.getSubscriptionId(), apiVersion, context))
.<PagedResponse<P2SVpnGatewayInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listSinglePageAsync(Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), this.client.getSubscriptionId(), apiVersion, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<P2SVpnGatewayInner> listAsync() {
return new PagedFlux<>(() -> listSinglePageAsync(), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<P2SVpnGatewayInner> listAsync(Context context) {
return new PagedFlux<>(
() -> listSinglePageAsync(context), nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<P2SVpnGatewayInner> list() {
return new PagedIterable<>(listAsync());
}
/**
* Lists all the P2SVpnGateways in a subscription.
*
* @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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<P2SVpnGatewayInner> list(Context context) {
return new PagedIterable<>(listAsync(context));
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> generateVpnProfileWithResponseAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName 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."));
}
final String apiVersion = "2020-05-01";
P2SVpnProfileParameters parameters = new P2SVpnProfileParameters();
parameters.withAuthenticationMethod(authenticationMethod);
return FluxUtil
.withContext(
context ->
service
.generateVpnProfile(
this.client.getEndpoint(),
resourceGroupName,
gatewayName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> generateVpnProfileWithResponseAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName 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."));
}
final String apiVersion = "2020-05-01";
P2SVpnProfileParameters parameters = new P2SVpnProfileParameters();
parameters.withAuthenticationMethod(authenticationMethod);
context = this.client.mergeContext(context);
return service
.generateVpnProfile(
this.client.getEndpoint(),
resourceGroupName,
gatewayName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<VpnProfileResponseInner>, VpnProfileResponseInner> beginGenerateVpnProfileAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod) {
Mono<Response<Flux<ByteBuffer>>> mono =
generateVpnProfileWithResponseAsync(resourceGroupName, gatewayName, authenticationMethod);
return this
.client
.<VpnProfileResponseInner, VpnProfileResponseInner>getLroResult(
mono,
this.client.getHttpPipeline(),
VpnProfileResponseInner.class,
VpnProfileResponseInner.class,
Context.NONE);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<VpnProfileResponseInner>, VpnProfileResponseInner> beginGenerateVpnProfileAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
generateVpnProfileWithResponseAsync(resourceGroupName, gatewayName, authenticationMethod, context);
return this
.client
.<VpnProfileResponseInner, VpnProfileResponseInner>getLroResult(
mono,
this.client.getHttpPipeline(),
VpnProfileResponseInner.class,
VpnProfileResponseInner.class,
context);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<VpnProfileResponseInner>, VpnProfileResponseInner> beginGenerateVpnProfile(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod) {
return beginGenerateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod).getSyncPoller();
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<VpnProfileResponseInner>, VpnProfileResponseInner> beginGenerateVpnProfile(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod, Context context) {
return beginGenerateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod, context)
.getSyncPoller();
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<VpnProfileResponseInner> generateVpnProfileAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod) {
return beginGenerateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<VpnProfileResponseInner> generateVpnProfileAsync(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod, Context context) {
return beginGenerateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<VpnProfileResponseInner> generateVpnProfileAsync(String resourceGroupName, String gatewayName) {
final AuthenticationMethod authenticationMethod = null;
return beginGenerateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public VpnProfileResponseInner generateVpnProfile(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod) {
return generateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod).block();
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param authenticationMethod VPN client authentication method.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public VpnProfileResponseInner generateVpnProfile(
String resourceGroupName, String gatewayName, AuthenticationMethod authenticationMethod, Context context) {
return generateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod, context).block();
}
/**
* Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 vpn Profile Response for package generation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public VpnProfileResponseInner generateVpnProfile(String resourceGroupName, String gatewayName) {
final AuthenticationMethod authenticationMethod = null;
return generateVpnProfileAsync(resourceGroupName, gatewayName, authenticationMethod).block();
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealthWithResponseAsync(
String resourceGroupName, String gatewayName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName 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."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.getP2SVpnConnectionHealth(
this.client.getEndpoint(),
resourceGroupName,
gatewayName,
apiVersion,
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealthWithResponseAsync(
String resourceGroupName, String gatewayName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName 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."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.getP2SVpnConnectionHealth(
this.client.getEndpoint(),
resourceGroupName,
gatewayName,
apiVersion,
this.client.getSubscriptionId(),
context);
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginGetP2SVpnConnectionHealthAsync(
String resourceGroupName, String gatewayName) {
Mono<Response<Flux<ByteBuffer>>> mono =
getP2SVpnConnectionHealthWithResponseAsync(resourceGroupName, gatewayName);
return this
.client
.<P2SVpnGatewayInner, P2SVpnGatewayInner>getLroResult(
mono, this.client.getHttpPipeline(), P2SVpnGatewayInner.class, P2SVpnGatewayInner.class, Context.NONE);
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginGetP2SVpnConnectionHealthAsync(
String resourceGroupName, String gatewayName, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
getP2SVpnConnectionHealthWithResponseAsync(resourceGroupName, gatewayName, context);
return this
.client
.<P2SVpnGatewayInner, P2SVpnGatewayInner>getLroResult(
mono, this.client.getHttpPipeline(), P2SVpnGatewayInner.class, P2SVpnGatewayInner.class, context);
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginGetP2SVpnConnectionHealth(
String resourceGroupName, String gatewayName) {
return beginGetP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName).getSyncPoller();
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnGatewayInner>, P2SVpnGatewayInner> beginGetP2SVpnConnectionHealth(
String resourceGroupName, String gatewayName, Context context) {
return beginGetP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName, context).getSyncPoller();
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnGatewayInner> getP2SVpnConnectionHealthAsync(String resourceGroupName, String gatewayName) {
return beginGetP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<P2SVpnGatewayInner> getP2SVpnConnectionHealthAsync(
String resourceGroupName, String gatewayName, Context context) {
return beginGetP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner getP2SVpnConnectionHealth(String resourceGroupName, String gatewayName) {
return getP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName).block();
}
/**
* Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnGatewayInner getP2SVpnConnectionHealth(String resourceGroupName, String gatewayName, Context context) {
return getP2SVpnConnectionHealthAsync(resourceGroupName, gatewayName, context).block();
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealthDetailedWithResponseAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
if (request == null) {
return Mono.error(new IllegalArgumentException("Parameter request is required and cannot be null."));
} else {
request.validate();
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.getP2SVpnConnectionHealthDetailed(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
request,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> getP2SVpnConnectionHealthDetailedWithResponseAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (gatewayName == null) {
return Mono.error(new IllegalArgumentException("Parameter gatewayName is required and cannot be null."));
}
if (request == null) {
return Mono.error(new IllegalArgumentException("Parameter request is required and cannot be null."));
} else {
request.validate();
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.getP2SVpnConnectionHealthDetailed(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
gatewayName,
apiVersion,
request,
context);
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<P2SVpnConnectionHealthInner>, P2SVpnConnectionHealthInner>
beginGetP2SVpnConnectionHealthDetailedAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request) {
Mono<Response<Flux<ByteBuffer>>> mono =
getP2SVpnConnectionHealthDetailedWithResponseAsync(resourceGroupName, gatewayName, request);
return this
.client
.<P2SVpnConnectionHealthInner, P2SVpnConnectionHealthInner>getLroResult(
mono,
this.client.getHttpPipeline(),
P2SVpnConnectionHealthInner.class,
P2SVpnConnectionHealthInner.class,
Context.NONE);
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<P2SVpnConnectionHealthInner>, P2SVpnConnectionHealthInner>
beginGetP2SVpnConnectionHealthDetailedAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
getP2SVpnConnectionHealthDetailedWithResponseAsync(resourceGroupName, gatewayName, request, context);
return this
.client
.<P2SVpnConnectionHealthInner, P2SVpnConnectionHealthInner>getLroResult(
mono,
this.client.getHttpPipeline(),
P2SVpnConnectionHealthInner.class,
P2SVpnConnectionHealthInner.class,
context);
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnConnectionHealthInner>, P2SVpnConnectionHealthInner>
beginGetP2SVpnConnectionHealthDetailed(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request) {
return beginGetP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request).getSyncPoller();
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<P2SVpnConnectionHealthInner>, P2SVpnConnectionHealthInner>
beginGetP2SVpnConnectionHealthDetailed(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request, Context context) {
return beginGetP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request, context)
.getSyncPoller();
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<P2SVpnConnectionHealthInner> getP2SVpnConnectionHealthDetailedAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request) {
return beginGetP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<P2SVpnConnectionHealthInner> getP2SVpnConnectionHealthDetailedAsync(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request, Context context) {
return beginGetP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnConnectionHealthInner getP2SVpnConnectionHealthDetailed(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request) {
return getP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request).block();
}
/**
* Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param gatewayName The name of the P2SVpnGateway.
* @param request List of P2S Vpn connection health request.
* @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 sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the
* specified resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public P2SVpnConnectionHealthInner getP2SVpnConnectionHealthDetailed(
String resourceGroupName, String gatewayName, P2SVpnConnectionHealthRequest request, Context context) {
return getP2SVpnConnectionHealthDetailedAsync(resourceGroupName, gatewayName, request, context).block();
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> disconnectP2SVpnConnectionsWithResponseAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (p2SVpnGatewayName == null) {
return Mono
.error(new IllegalArgumentException("Parameter p2SVpnGatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
P2SVpnConnectionRequest request = new P2SVpnConnectionRequest();
request.withVpnConnectionIds(vpnConnectionIds);
return FluxUtil
.withContext(
context ->
service
.disconnectP2SVpnConnections(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
p2SVpnGatewayName,
apiVersion,
request,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> disconnectP2SVpnConnectionsWithResponseAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() 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 (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (p2SVpnGatewayName == null) {
return Mono
.error(new IllegalArgumentException("Parameter p2SVpnGatewayName is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
P2SVpnConnectionRequest request = new P2SVpnConnectionRequest();
request.withVpnConnectionIds(vpnConnectionIds);
context = this.client.mergeContext(context);
return service
.disconnectP2SVpnConnections(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
p2SVpnGatewayName,
apiVersion,
request,
context);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<Void>, Void> beginDisconnectP2SVpnConnectionsAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds) {
Mono<Response<Flux<ByteBuffer>>> mono =
disconnectP2SVpnConnectionsWithResponseAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<Void>, Void> beginDisconnectP2SVpnConnectionsAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
disconnectP2SVpnConnectionsWithResponseAsync(
resourceGroupName, p2SVpnGatewayName, vpnConnectionIds, context);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, context);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDisconnectP2SVpnConnections(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds) {
return beginDisconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds)
.getSyncPoller();
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDisconnectP2SVpnConnections(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds, Context context) {
return beginDisconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds, context)
.getSyncPoller();
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> disconnectP2SVpnConnectionsAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds) {
return beginDisconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Void> disconnectP2SVpnConnectionsAsync(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds, Context context) {
return beginDisconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> disconnectP2SVpnConnectionsAsync(String resourceGroupName, String p2SVpnGatewayName) {
final List<String> vpnConnectionIds = null;
return beginDisconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 disconnectP2SVpnConnections(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds) {
disconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds).block();
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @param vpnConnectionIds List of p2s vpn connection Ids.
* @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 disconnectP2SVpnConnections(
String resourceGroupName, String p2SVpnGatewayName, List<String> vpnConnectionIds, Context context) {
disconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds, context).block();
}
/**
* Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource group.
*
* @param resourceGroupName The name of the resource group.
* @param p2SVpnGatewayName The name of the P2S Vpn Gateway.
* @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 disconnectP2SVpnConnections(String resourceGroupName, String p2SVpnGatewayName) {
final List<String> vpnConnectionIds = null;
disconnectP2SVpnConnectionsAsync(resourceGroupName, p2SVpnGatewayName, vpnConnectionIds).block();
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink 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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listByResourceGroupNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
return FluxUtil
.withContext(context -> service.listByResourceGroupNext(nextLink, context))
.<PagedResponse<P2SVpnGatewayInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink 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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listByResourceGroupNextSinglePageAsync(
String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listByResourceGroupNext(nextLink, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink 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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
return FluxUtil
.withContext(context -> service.listNext(nextLink, context))
.<PagedResponse<P2SVpnGatewayInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink 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 result of the request to list P2SVpnGateways.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<P2SVpnGatewayInner>> listNextSinglePageAsync(String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listNext(nextLink, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
}