![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.keyvault.implementation.MhsmPrivateEndpointConnectionsClientImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.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.MhsmPrivateEndpointConnectionsClient;
import com.azure.resourcemanager.keyvault.fluent.models.MhsmPrivateEndpointConnectionInner;
import com.azure.resourcemanager.keyvault.models.ErrorException;
import com.azure.resourcemanager.keyvault.models.MhsmPrivateEndpointConnectionsListResult;
import com.azure.resourcemanager.keyvault.models.MhsmPrivateEndpointConnectionsPutResponse;
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 MhsmPrivateEndpointConnectionsClient.
*/
public final class MhsmPrivateEndpointConnectionsClientImpl implements MhsmPrivateEndpointConnectionsClient {
/**
* The proxy service used to perform REST calls.
*/
private final MhsmPrivateEndpointConnectionsService service;
/**
* The service client containing this operation class.
*/
private final KeyVaultManagementClientImpl client;
/**
* Initializes an instance of MhsmPrivateEndpointConnectionsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
MhsmPrivateEndpointConnectionsClientImpl(KeyVaultManagementClientImpl client) {
this.service = RestProxy.create(MhsmPrivateEndpointConnectionsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for KeyVaultManagementClientMhsmPrivateEndpointConnections to be used by
* the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "KeyVaultManagementCl")
public interface MhsmPrivateEndpointConnectionsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/managedHSMs/{name}/privateEndpointConnections")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ErrorException.class)
Mono> listByResource(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("name") String name,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/managedHSMs/{name}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ErrorException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("name") String name,
@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/managedHSMs/{name}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono put(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("name") String name,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") MhsmPrivateEndpointConnectionInner properties,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/managedHSMs/{name}/privateEndpointConnections/{privateEndpointConnectionName}")
@ExpectedResponses({ 200, 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> delete(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("name") String name,
@PathParam("privateEndpointConnectionName") String privateEndpointConnectionName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ErrorException.class)
Mono> listByResourceNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* The List operation gets information about the private endpoint connections associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools along with {@link PagedResponse}
* on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>
listByResourceSinglePageAsync(String resourceGroupName, String name) {
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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByResource(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, name, 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 managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools along with {@link PagedResponse}
* on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>
listByResourceSinglePageAsync(String resourceGroupName, String name, 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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByResource(this.client.getEndpoint(), this.client.getApiVersion(), this.client.getSubscriptionId(),
resourceGroupName, name, 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 managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listByResourceAsync(String resourceGroupName, String name) {
return new PagedFlux<>(() -> listByResourceSinglePageAsync(resourceGroupName, name),
nextLink -> listByResourceNextSinglePageAsync(nextLink));
}
/**
* The List operation gets information about the private endpoint connections associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceAsync(String resourceGroupName, String name,
Context context) {
return new PagedFlux<>(() -> listByResourceSinglePageAsync(resourceGroupName, name, context),
nextLink -> listByResourceNextSinglePageAsync(nextLink, context));
}
/**
* The List operation gets information about the private endpoint connections associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResource(String resourceGroupName, String name) {
return new PagedIterable<>(listByResourceAsync(resourceGroupName, name));
}
/**
* The List operation gets information about the private endpoint connections associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 a managed HSM Pools as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResource(String resourceGroupName, String name,
Context context) {
return new PagedIterable<>(listByResourceAsync(resourceGroupName, name, context));
}
/**
* Gets the specified private endpoint connection associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 managed HSM Pool along with
* {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String resourceGroupName,
String name, 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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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, name, 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 managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 managed HSM Pool along with
* {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName,
String name, 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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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, name,
privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Gets the specified private endpoint connection associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 managed HSM Pool on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String resourceGroupName, String name,
String privateEndpointConnectionName) {
return getWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets the specified private endpoint connection associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 managed HSM Pool along with
* {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String name,
String privateEndpointConnectionName, Context context) {
return getWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName, context).block();
}
/**
* Gets the specified private endpoint connection associated with the managed HSM Pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ErrorException 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 managed HSM Pool.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MhsmPrivateEndpointConnectionInner get(String resourceGroupName, String name,
String privateEndpointConnectionName) {
return getWithResponse(resourceGroupName, name, privateEndpointConnectionName, Context.NONE).getValue();
}
/**
* Updates the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
String privateEndpointConnectionName, MhsmPrivateEndpointConnectionInner 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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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,
name, 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 managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
String privateEndpointConnectionName, MhsmPrivateEndpointConnectionInner 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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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, name,
privateEndpointConnectionName, this.client.getApiVersion(), properties, accept, context);
}
/**
* Updates the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
String privateEndpointConnectionName, MhsmPrivateEndpointConnectionInner properties) {
return putWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName, properties)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Updates the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 MhsmPrivateEndpointConnectionsPutResponse putWithResponse(String resourceGroupName, String name,
String privateEndpointConnectionName, MhsmPrivateEndpointConnectionInner properties, Context context) {
return putWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName, properties, context)
.block();
}
/**
* Updates the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 MhsmPrivateEndpointConnectionInner put(String resourceGroupName, String name,
String privateEndpointConnectionName, MhsmPrivateEndpointConnectionInner properties) {
return putWithResponse(resourceGroupName, name, privateEndpointConnectionName, properties, Context.NONE)
.getValue();
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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, name, 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 managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
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 (name == null) {
return Mono.error(new IllegalArgumentException("Parameter name 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, name,
privateEndpointConnectionName, this.client.getApiVersion(), accept, context);
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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, MhsmPrivateEndpointConnectionInner>
beginDeleteAsync(String resourceGroupName, String name, String privateEndpointConnectionName) {
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MhsmPrivateEndpointConnectionInner.class,
MhsmPrivateEndpointConnectionInner.class, this.client.getContext());
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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, MhsmPrivateEndpointConnectionInner>
beginDeleteAsync(String resourceGroupName, String name, String privateEndpointConnectionName, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, name, privateEndpointConnectionName, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MhsmPrivateEndpointConnectionInner.class,
MhsmPrivateEndpointConnectionInner.class, context);
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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, MhsmPrivateEndpointConnectionInner>
beginDelete(String resourceGroupName, String name, String privateEndpointConnectionName) {
return this.beginDeleteAsync(resourceGroupName, name, privateEndpointConnectionName).getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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, MhsmPrivateEndpointConnectionInner>
beginDelete(String resourceGroupName, String name, String privateEndpointConnectionName, Context context) {
return this.beginDeleteAsync(resourceGroupName, name, privateEndpointConnectionName, context).getSyncPoller();
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
String privateEndpointConnectionName) {
return beginDeleteAsync(resourceGroupName, name, privateEndpointConnectionName).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 name,
String privateEndpointConnectionName, Context context) {
return beginDeleteAsync(resourceGroupName, name, privateEndpointConnectionName, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 MhsmPrivateEndpointConnectionInner delete(String resourceGroupName, String name,
String privateEndpointConnectionName) {
return deleteAsync(resourceGroupName, name, privateEndpointConnectionName).block();
}
/**
* Deletes the specified private endpoint connection associated with the managed hsm pool.
*
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
* @param name Name of the managed HSM Pool.
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm
* pool.
* @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 MhsmPrivateEndpointConnectionInner delete(String resourceGroupName, String name,
String privateEndpointConnectionName, Context context) {
return deleteAsync(resourceGroupName, name, privateEndpointConnectionName, context).block();
}
/**
* 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 ErrorException 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 a managed HSM Pools 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 ErrorException 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 a managed HSM Pools 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));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy