IServerOperations Interface

Definition

Represents all the operations for operating on Azure SQL Database Servers. Contains operations to: Create, Retrieve, Update, and Delete servers.

public interface IServerOperations
type IServerOperations = interface
Public Interface IServerOperations

Methods

CreateOrUpdateAsync(String, String, ServerCreateOrUpdateParameters, CancellationToken)

Creates a new Azure SQL Database server.

DeleteAsync(String, String, CancellationToken)

Returns information about an Azure SQL Database Server.

GetAsync(String, String, CancellationToken)

Returns information about an Azure SQL Database Server.

ListAsync(String, CancellationToken)

Returns information about an Azure SQL Database Server.

ListUsagesAsync(String, String, CancellationToken)

Returns information about Azure SQL Database Server usage.

Extension Methods

CreateOrUpdate(IServerOperations, String, String, ServerCreateOrUpdateParameters)

Creates a new Azure SQL Database server.

CreateOrUpdateAsync(IServerOperations, String, String, ServerCreateOrUpdateParameters)

Creates a new Azure SQL Database server.

Delete(IServerOperations, String, String)

Returns information about an Azure SQL Database Server.

DeleteAsync(IServerOperations, String, String)

Returns information about an Azure SQL Database Server.

Get(IServerOperations, String, String)

Returns information about an Azure SQL Database Server.

GetAsync(IServerOperations, String, String)

Returns information about an Azure SQL Database Server.

List(IServerOperations, String)

Returns information about an Azure SQL Database Server.

ListAsync(IServerOperations, String)

Returns information about an Azure SQL Database Server.

ListUsages(IServerOperations, String, String)

Returns information about Azure SQL Database Server usage.

ListUsagesAsync(IServerOperations, String, String)

Returns information about Azure SQL Database Server usage.

Applies to