Interface SupportsUpdatingPrivateEndpointConnection
-
public interface SupportsUpdatingPrivateEndpointConnectionProvides access to update a private endpoint connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapprovePrivateEndpointConnection(String privateEndpointConnectionName)Approves the private endpoint connection.Mono<Void>approvePrivateEndpointConnectionAsync(String privateEndpointConnectionName)Approves the private endpoint connection.voidrejectPrivateEndpointConnection(String privateEndpointConnectionName)Rejects the private endpoint connection.Mono<Void>rejectPrivateEndpointConnectionAsync(String privateEndpointConnectionName)Rejects the private endpoint connection.
-
-
-
Method Detail
-
approvePrivateEndpointConnection
void approvePrivateEndpointConnection(String privateEndpointConnectionName)
Approves the private endpoint connection.- Parameters:
privateEndpointConnectionName- the name of the private endpoint connection.
-
approvePrivateEndpointConnectionAsync
Mono<Void> approvePrivateEndpointConnectionAsync(String privateEndpointConnectionName)
Approves the private endpoint connection.- Parameters:
privateEndpointConnectionName- the name of the private endpoint connection.- Returns:
- the completion.
-
rejectPrivateEndpointConnection
void rejectPrivateEndpointConnection(String privateEndpointConnectionName)
Rejects the private endpoint connection.- Parameters:
privateEndpointConnectionName- the name of the private endpoint connection.
-
-