IServerKeyOperations Interface

Definition

Represents all the operations of Azure SQL Database that interact with Azure Key Vault Server Keys. Contains operations to: Add, Delete, and Retrieve Server Ke.

public interface IServerKeyOperations
type IServerKeyOperations = interface
Public Interface IServerKeyOperations

Methods

BeginCreateOrUpdateAsync(String, String, String, ServerKeyCreateOrUpdateParameters, CancellationToken)

Begins creating a new Azure SQL Server Key or updating an existing Azure SQL Server Key. To determine the status of the operation call GetCreateOrUpdateOperationStatus.

BeginDeleteAsync(String, String, String, CancellationToken)

Begins deleting an existing Azure SQL Server Key.To determine the status of the operation call GetDeleteOperationStatus.

CreateOrUpdateAsync(String, String, String, ServerKeyCreateOrUpdateParameters, CancellationToken)

Creates a new Azure SQL Server Key or updates an existing Azure SQL Server Key.

DeleteAsync(String, String, String, CancellationToken)

Deletes an existing Azure SQL Server Key.

GetAsync(String, String, String, CancellationToken)

Gets an Azure Sql Server Key.

GetCreateOrUpdateOperationStatusAsync(String, CancellationToken)

Gets the status of an Azure SQL Server Key create or update operation.

GetDeleteOperationStatusAsync(String, CancellationToken)

Gets the status of an Azure SQL Server Key delete operation.

ListAsync(String, String, CancellationToken)

Gets all Azure SQL Database Server Keys for a server.

Extension Methods

BeginCreateOrUpdate(IServerKeyOperations, String, String, String, ServerKeyCreateOrUpdateParameters)

Begins creating a new Azure SQL Server Key or updating an existing Azure SQL Server Key. To determine the status of the operation call GetCreateOrUpdateOperationStatus.

BeginCreateOrUpdateAsync(IServerKeyOperations, String, String, String, ServerKeyCreateOrUpdateParameters)

Begins creating a new Azure SQL Server Key or updating an existing Azure SQL Server Key. To determine the status of the operation call GetCreateOrUpdateOperationStatus.

BeginDelete(IServerKeyOperations, String, String, String)

Begins deleting an existing Azure SQL Server Key.To determine the status of the operation call GetDeleteOperationStatus.

BeginDeleteAsync(IServerKeyOperations, String, String, String)

Begins deleting an existing Azure SQL Server Key.To determine the status of the operation call GetDeleteOperationStatus.

CreateOrUpdate(IServerKeyOperations, String, String, String, ServerKeyCreateOrUpdateParameters)

Creates a new Azure SQL Server Key or updates an existing Azure SQL Server Key.

CreateOrUpdateAsync(IServerKeyOperations, String, String, String, ServerKeyCreateOrUpdateParameters)

Creates a new Azure SQL Server Key or updates an existing Azure SQL Server Key.

Delete(IServerKeyOperations, String, String, String)

Deletes an existing Azure SQL Server Key.

DeleteAsync(IServerKeyOperations, String, String, String)

Deletes an existing Azure SQL Server Key.

Get(IServerKeyOperations, String, String, String)

Gets an Azure Sql Server Key.

GetAsync(IServerKeyOperations, String, String, String)

Gets an Azure Sql Server Key.

GetCreateOrUpdateOperationStatus(IServerKeyOperations, String)

Gets the status of an Azure SQL Server Key create or update operation.

GetCreateOrUpdateOperationStatusAsync(IServerKeyOperations, String)

Gets the status of an Azure SQL Server Key create or update operation.

GetDeleteOperationStatus(IServerKeyOperations, String)

Gets the status of an Azure SQL Server Key delete operation.

GetDeleteOperationStatusAsync(IServerKeyOperations, String)

Gets the status of an Azure SQL Server Key delete operation.

List(IServerKeyOperations, String, String)

Gets all Azure SQL Database Server Keys for a server.

ListAsync(IServerKeyOperations, String, String)

Gets all Azure SQL Database Server Keys for a server.

Applies to