Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.elasticsan.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Put;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.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.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.elasticsan.fluent.PrivateEndpointConnectionsClient;
import com.azure.resourcemanager.elasticsan.fluent.models.PrivateEndpointConnectionInner;
import com.azure.resourcemanager.elasticsan.models.PrivateEndpointConnectionListResult;
import java.nio.ByteBuffer;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in PrivateEndpointConnectionsClient.
*/
public final class PrivateEndpointConnectionsClientImpl implements PrivateEndpointConnectionsClient {
/**
* The proxy service used to perform REST calls.
*/
private final PrivateEndpointConnectionsService service;
/**
* The service client containing this operation class.
*/
private final ElasticSanManagementImpl client;
/**
* Initializes an instance of PrivateEndpointConnectionsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
PrivateEndpointConnectionsClientImpl(ElasticSanManagementImpl client) {
this.service = RestProxy.create(PrivateEndpointConnectionsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for ElasticSanManagementPrivateEndpointConnections to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "ElasticSanManagement")
public interface PrivateEndpointConnectionsService {
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> create(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("elasticSanName") String elasticSanName,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") PrivateEndpointConnectionInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("elasticSanName") String elasticSanName,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> delete(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("elasticSanName") String elasticSanName,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/privateEndpointConnections")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> list(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("elasticSanName") String elasticSanName, @QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> createWithResponseAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters) {
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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.create(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(),
parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> createWithResponseAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters, 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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.create(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(), parameters, accept, context);
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, PrivateEndpointConnectionInner> beginCreateAsync(
String resourceGroupName, String elasticSanName, String privateEndpointConnectionName,
PrivateEndpointConnectionInner parameters) {
Mono>> mono
= createWithResponseAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), PrivateEndpointConnectionInner.class, PrivateEndpointConnectionInner.class,
this.client.getContext());
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, PrivateEndpointConnectionInner> beginCreateAsync(
String resourceGroupName, String elasticSanName, String privateEndpointConnectionName,
PrivateEndpointConnectionInner parameters, Context context) {
context = this.client.mergeContext(context);
Mono>> mono = createWithResponseAsync(resourceGroupName, elasticSanName,
privateEndpointConnectionName, parameters, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), PrivateEndpointConnectionInner.class, PrivateEndpointConnectionInner.class,
context);
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionInner> beginCreate(
String resourceGroupName, String elasticSanName, String privateEndpointConnectionName,
PrivateEndpointConnectionInner parameters) {
return this.beginCreateAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters)
.getSyncPoller();
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionInner> beginCreate(
String resourceGroupName, String elasticSanName, String privateEndpointConnectionName,
PrivateEndpointConnectionInner parameters, Context context) {
return this
.beginCreateAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters, context)
.getSyncPoller();
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters) {
return beginCreateAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters, Context context) {
return beginCreateAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner create(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters) {
return createAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters).block();
}
/**
* Update the state of specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param parameters Private Endpoint Connection Approval object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response for PrivateEndpoint Connection object.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner create(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner parameters, Context context) {
return createAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, parameters, context)
.block();
}
/**
* Gets the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified private endpoint connection associated with the Elastic San along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName,
String elasticSanName, String privateEndpointConnectionName) {
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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.get(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Gets the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified private endpoint connection associated with the Elastic San along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName,
String elasticSanName, String privateEndpointConnectionName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Gets the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified private endpoint connection associated with the Elastic San on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
return getWithResponseAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified private endpoint connection associated with the Elastic San along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, Context context) {
return getWithResponseAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, context).block();
}
/**
* Gets the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified private endpoint connection associated with the Elastic San.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner get(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
return getWithResponse(resourceGroupName, elasticSanName, privateEndpointConnectionName, Context.NONE)
.getValue();
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> deleteWithResponseAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> deleteWithResponseAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
elasticSanName, privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
this.client.getContext());
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, context);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
context);
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
return this.beginDeleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName).getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, Context context) {
return this.beginDeleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, context)
.getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName) {
return beginDeleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String resourceGroupName, String elasticSanName,
String privateEndpointConnectionName, Context context) {
return beginDeleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void delete(String resourceGroupName, String elasticSanName, String privateEndpointConnectionName) {
deleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName).block();
}
/**
* Deletes the specified private endpoint connection associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @param privateEndpointConnectionName The name of the Private Endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void delete(String resourceGroupName, String elasticSanName, String privateEndpointConnectionName,
Context context) {
deleteAsync(resourceGroupName, elasticSanName, privateEndpointConnectionName, context).block();
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN along with {@link PagedResponse} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String resourceGroupName,
String elasticSanName) {
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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.list(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, elasticSanName, this.client.getApiVersion(), accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), null, null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN along with {@link PagedResponse} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String resourceGroupName,
String elasticSanName, 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 (elasticSanName == null) {
return Mono.error(new IllegalArgumentException("Parameter elasticSanName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName, elasticSanName,
this.client.getApiVersion(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), null, null));
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(String resourceGroupName, String elasticSanName) {
return new PagedFlux<>(() -> listSinglePageAsync(resourceGroupName, elasticSanName));
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(String resourceGroupName, String elasticSanName,
Context context) {
return new PagedFlux<>(() -> listSinglePageAsync(resourceGroupName, elasticSanName, context));
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(String resourceGroupName, String elasticSanName) {
return new PagedIterable<>(listAsync(resourceGroupName, elasticSanName));
}
/**
* List all Private Endpoint Connections associated with the Elastic San.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param elasticSanName The name of the ElasticSan.
* @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 list of private endpoint connections associated with SAN as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(String resourceGroupName, String elasticSanName,
Context context) {
return new PagedIterable<>(listAsync(resourceGroupName, elasticSanName, context));
}
}