com.azure.resourcemanager.keyvault.implementation.PrivateEndpointConnectionsClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-keyvault Show documentation
Show all versions of azure-resourcemanager-keyvault Show documentation
This package contains Microsoft Azure Key Vault Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.keyvault.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.keyvault.fluent.PrivateEndpointConnectionsClient;
import com.azure.resourcemanager.keyvault.fluent.models.PrivateEndpointConnectionInner;
import com.azure.resourcemanager.keyvault.models.PrivateEndpointConnectionListResult;
import com.azure.resourcemanager.keyvault.models.PrivateEndpointConnectionsPutResponse;
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 KeyVaultManagementClientImpl client;
/**
* Initializes an instance of PrivateEndpointConnectionsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
PrivateEndpointConnectionsClientImpl(KeyVaultManagementClientImpl client) {
this.service = RestProxy.create(PrivateEndpointConnectionsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for KeyVaultManagementClientPrivateEndpointConnections to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "KeyVaultManagementCl")
public interface PrivateEndpointConnectionsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("vaultName") String vaultName,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono put(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("vaultName") String vaultName,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") PrivateEndpointConnectionInner properties,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> delete(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("vaultName") String vaultName,
@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.KeyVault/vaults/{vaultName}/privateEndpointConnections")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByResource(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("vaultName") String vaultName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByResourceNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Gets the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @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 key vault along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String resourceGroupName,
String vaultName, 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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName 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,
vaultName, 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 key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @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 key vault along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName,
String vaultName, 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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName 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, vaultName,
privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Gets the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @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 key vault on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName) {
return getWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @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 key vault along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, Context context) {
return getWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName, context).block();
}
/**
* Gets the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @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 key vault.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner get(String resourceGroupName, String vaultName,
String privateEndpointConnectionName) {
return getWithResponse(resourceGroupName, vaultName, privateEndpointConnectionName, Context.NONE).getValue();
}
/**
* Updates the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param properties The intended state of private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono putWithResponseAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner properties) {
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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (properties == null) {
return Mono.error(new IllegalArgumentException("Parameter properties is required and cannot be null."));
} else {
properties.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.put(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
vaultName, privateEndpointConnectionName, this.client.getApiVersion(), properties, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Updates the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param properties The intended state of private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono putWithResponseAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, 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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
if (privateEndpointConnectionName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter privateEndpointConnectionName is required and cannot be null."));
}
if (properties == null) {
return Mono.error(new IllegalArgumentException("Parameter properties is required and cannot be null."));
} else {
properties.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.put(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName, vaultName,
privateEndpointConnectionName, this.client.getApiVersion(), properties, accept, context);
}
/**
* Updates the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param properties The intended state of private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono putAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner properties) {
return putWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName, properties)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Updates the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param properties The intended state of private endpoint connection.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionsPutResponse putWithResponse(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, Context context) {
return putWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName, properties, context)
.block();
}
/**
* Updates the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param properties The intended state of private endpoint connection.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner put(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, PrivateEndpointConnectionInner properties) {
return putWithResponse(resourceGroupName, vaultName, privateEndpointConnectionName, properties, Context.NONE)
.getValue();
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> deleteWithResponseAsync(String resourceGroupName, String vaultName,
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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName 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,
vaultName, 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 key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> deleteWithResponseAsync(String resourceGroupName, String vaultName,
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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName 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, vaultName,
privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public PollerFlux, PrivateEndpointConnectionInner>
beginDeleteAsync(String resourceGroupName, String vaultName, String privateEndpointConnectionName) {
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), PrivateEndpointConnectionInner.class, PrivateEndpointConnectionInner.class,
this.client.getContext());
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, PrivateEndpointConnectionInner> beginDeleteAsync(
String resourceGroupName, String vaultName, String privateEndpointConnectionName, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, vaultName, privateEndpointConnectionName, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), PrivateEndpointConnectionInner.class, PrivateEndpointConnectionInner.class,
context);
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionInner>
beginDelete(String resourceGroupName, String vaultName, String privateEndpointConnectionName) {
return this.beginDeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName).getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, PrivateEndpointConnectionInner>
beginDelete(String resourceGroupName, String vaultName, String privateEndpointConnectionName, Context context) {
return this.beginDeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName, context)
.getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName) {
return beginDeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, Context context) {
return beginDeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner delete(String resourceGroupName, String vaultName,
String privateEndpointConnectionName) {
return deleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName).block();
}
/**
* Deletes the specified private endpoint connection associated with the key vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the key vault.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return private endpoint connection resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PrivateEndpointConnectionInner delete(String resourceGroupName, String vaultName,
String privateEndpointConnectionName, Context context) {
return deleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName, context).block();
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceSinglePageAsync(String resourceGroupName,
String vaultName) {
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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByResource(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, vaultName, this.client.getApiVersion(), accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceSinglePageAsync(String resourceGroupName,
String vaultName, 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 (vaultName == null) {
return Mono.error(new IllegalArgumentException("Parameter vaultName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByResource(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName, vaultName,
this.client.getApiVersion(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listByResourceAsync(String resourceGroupName, String vaultName) {
return new PagedFlux<>(() -> listByResourceSinglePageAsync(resourceGroupName, vaultName),
nextLink -> listByResourceNextSinglePageAsync(nextLink));
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceAsync(String resourceGroupName, String vaultName,
Context context) {
return new PagedFlux<>(() -> listByResourceSinglePageAsync(resourceGroupName, vaultName, context),
nextLink -> listByResourceNextSinglePageAsync(nextLink, context));
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResource(String resourceGroupName, String vaultName) {
return new PagedIterable<>(listByResourceAsync(resourceGroupName, vaultName));
}
/**
* The List operation gets information about the private endpoint connections associated with the vault.
*
* @param resourceGroupName Name of the resource group that contains the key vault.
* @param vaultName The name of the key vault.
* @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 as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResource(String resourceGroupName, String vaultName,
Context context) {
return new PagedIterable<>(listByResourceAsync(resourceGroupName, vaultName, context));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @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 along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByResourceNext(nextLink, this.client.getEndpoint(), accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @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 along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceNextSinglePageAsync(String nextLink,
Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.listByResourceNext(nextLink, this.client.getEndpoint(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
}