SupportsUpdatingPrivateEndpointConnection Interface

public interface SupportsUpdatingPrivateEndpointConnection

Provides access to update a private endpoint connection.

Method Summary

Modifier and Type Method and Description
abstract void approvePrivateEndpointConnection(String privateEndpointConnectionName)

Approves the private endpoint connection.

abstract Mono<Void> approvePrivateEndpointConnectionAsync(String privateEndpointConnectionName)

Approves the private endpoint connection.

abstract void rejectPrivateEndpointConnection(String privateEndpointConnectionName)

Rejects the private endpoint connection.

abstract Mono<Void> rejectPrivateEndpointConnectionAsync(String privateEndpointConnectionName)

Rejects the private endpoint connection.

Method Details

approvePrivateEndpointConnection

public abstract void approvePrivateEndpointConnection(String privateEndpointConnectionName)

Approves the private endpoint connection.

Parameters:

privateEndpointConnectionName - the name of the private endpoint connection.

approvePrivateEndpointConnectionAsync

public abstract Mono approvePrivateEndpointConnectionAsync(String privateEndpointConnectionName)

Approves the private endpoint connection.

Parameters:

privateEndpointConnectionName - the name of the private endpoint connection.

Returns:

the completion.

rejectPrivateEndpointConnection

public abstract void rejectPrivateEndpointConnection(String privateEndpointConnectionName)

Rejects the private endpoint connection.

Parameters:

privateEndpointConnectionName - the name of the private endpoint connection.

rejectPrivateEndpointConnectionAsync

public abstract Mono rejectPrivateEndpointConnectionAsync(String privateEndpointConnectionName)

Rejects the private endpoint connection.

Parameters:

privateEndpointConnectionName - the name of the private endpoint connection.

Returns:

the completion.

Applies to