SqlChildrenOperations.SqlChildrenActionsDefinition<T> Interface
Type Parameters
- T
the FluentT interface of the SQL server child resource
public interface SqlChildrenActionsDefinition
Base interface for Azure SQL Server child resource actions.
Method Summary
Modifier and Type | Method and Description |
---|---|
void |
delete(String name)
Deletes a child resource from Azure SQL server. |
Completable |
deleteAsync(String name)
Asynchronously delete a child resource from Azure SQL server. |
void |
deleteById(String id)
Deletes a child resource from Azure SQL server, identifying it by its resource ID. |
Completable |
deleteByIdAsync(String id)
Asynchronously delete a child resource from Azure SQL server, identifying it by its resource ID. |
T |
get(String name)
Gets the information about a child resource from Azure SQL server. |
Observable<T> |
getAsync(String name)
Asynchronously gets the information about a child resource from Azure SQL server. |
T |
getById(String id)
Gets the information about a child resource from Azure SQL server using the resource ID. |
Observable<T> |
getByIdAsync(String id)
Asynchronously gets the information about a child resource from Azure SQL server using the resource ID. |
List<T> |
list()
Lists Azure SQL child resources. |
Observable<T> |
listAsync()
Asynchronously lists Azure SQL child resources. |
Method Details
delete
public void delete(String name)
Deletes a child resource from Azure SQL server.
Parameters:
deleteAsync
public Completable deleteAsync(String name)
Asynchronously delete a child resource from Azure SQL server.
Parameters:
Returns:
deleteById
public void deleteById(String id)
Deletes a child resource from Azure SQL server, identifying it by its resource ID.
Parameters:
deleteByIdAsync
public Completable deleteByIdAsync(String id)
Asynchronously delete a child resource from Azure SQL server, identifying it by its resource ID.
Parameters:
Returns:
get
public T get(String name)
Gets the information about a child resource from Azure SQL server.
Parameters:
Returns:
getAsync
public Observable
Asynchronously gets the information about a child resource from Azure SQL server.
Parameters:
Returns:
getById
public T getById(String id)
Gets the information about a child resource from Azure SQL server using the resource ID.
Parameters:
Returns:
getByIdAsync
public Observable
Asynchronously gets the information about a child resource from Azure SQL server using the resource ID.
Parameters:
Returns:
list
public List
Lists Azure SQL child resources.
Returns:
listAsync
public Observable
Asynchronously lists Azure SQL child resources.
Returns:
Applies to
Azure SDK for Java