T - the FluentT interface of the SQL server child resourcepublic static interface SqlChildrenOperations.SqlChildrenActionsDefinition<T>
| Modifier and Type | Method and Description |
|---|---|
void |
delete(String name)
Deletes a child resource from Azure SQL server.
|
Mono<Void> |
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.
|
Mono<Void> |
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.
|
Mono<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.
|
Mono<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.
|
com.azure.core.http.rest.PagedFlux<T> |
listAsync()
Asynchronously lists Azure SQL child resources.
|
T get(String name)
name - the name of the child resourceMono<T> getAsync(String name)
name - the name of the child resourceT getById(String id)
id - the ID of the resource.Mono<T> getByIdAsync(String id)
id - the ID of the resource.void delete(String name)
name - the name of the child resourceMono<Void> deleteAsync(String name)
name - the name of the child resourcevoid deleteById(String id)
id - the resource ID of the resource to deleteMono<Void> deleteByIdAsync(String id)
id - the resource ID of the resource to deletecom.azure.core.http.rest.PagedFlux<T> listAsync()
Copyright © 2020 Microsoft Corporation. All rights reserved.