IDatabaseCopyOperations Interface

Definition

Represents the SQL Database Management API includes operations for managing SQL Server database copies for a subscription.

public interface IDatabaseCopyOperations
type IDatabaseCopyOperations = interface
Public Interface IDatabaseCopyOperations

Methods

CreateAsync(String, String, DatabaseCopyCreateParameters, CancellationToken)

Starts a SQL Server database copy.

DeleteAsync(String, String, Guid, CancellationToken)

Stops a SQL Server database copy.

GetAsync(String, String, String, CancellationToken)

Retrieves information about a SQL Server database copy.

ListAsync(String, String, CancellationToken)

Retrieves the list of SQL Server database copies for a database.

UpdateAsync(String, String, Guid, DatabaseCopyUpdateParameters, CancellationToken)

Updates a SQL Server database copy.

Extension Methods

Create(IDatabaseCopyOperations, String, String, DatabaseCopyCreateParameters)

Starts a SQL Server database copy.

CreateAsync(IDatabaseCopyOperations, String, String, DatabaseCopyCreateParameters)

Starts a SQL Server database copy.

Delete(IDatabaseCopyOperations, String, String, Guid)

Stops a SQL Server database copy.

DeleteAsync(IDatabaseCopyOperations, String, String, Guid)

Stops a SQL Server database copy.

Get(IDatabaseCopyOperations, String, String, String)

Retrieves information about a SQL Server database copy.

GetAsync(IDatabaseCopyOperations, String, String, String)

Retrieves information about a SQL Server database copy.

List(IDatabaseCopyOperations, String, String)

Retrieves the list of SQL Server database copies for a database.

ListAsync(IDatabaseCopyOperations, String, String)

Retrieves the list of SQL Server database copies for a database.

Update(IDatabaseCopyOperations, String, String, Guid, DatabaseCopyUpdateParameters)

Updates a SQL Server database copy.

UpdateAsync(IDatabaseCopyOperations, String, String, Guid, DatabaseCopyUpdateParameters)

Updates a SQL Server database copy.

Applies to