ManagedDatabaseResource.GetManagedDatabaseColumnsByDatabaseAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
List managed database columns
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/databases/{databaseName}/columns
- Operation Id: ManagedDatabaseColumns_ListByDatabase
- Default Api Version: 2020-11-01-preview
- Resource: ManagedDatabaseColumnResource
public virtual Azure.AsyncPageable<Azure.ResourceManager.Sql.ManagedDatabaseColumnResource> GetManagedDatabaseColumnsByDatabaseAsync (System.Collections.Generic.IEnumerable<string> schema = default, System.Collections.Generic.IEnumerable<string> table = default, System.Collections.Generic.IEnumerable<string> column = default, System.Collections.Generic.IEnumerable<string> orderBy = default, string skiptoken = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetManagedDatabaseColumnsByDatabaseAsync : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Sql.ManagedDatabaseColumnResource>
override this.GetManagedDatabaseColumnsByDatabaseAsync : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Sql.ManagedDatabaseColumnResource>
Public Overridable Function GetManagedDatabaseColumnsByDatabaseAsync (Optional schema As IEnumerable(Of String) = Nothing, Optional table As IEnumerable(Of String) = Nothing, Optional column As IEnumerable(Of String) = Nothing, Optional orderBy As IEnumerable(Of String) = Nothing, Optional skiptoken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ManagedDatabaseColumnResource)
Parameters
- schema
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- table
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- column
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- orderBy
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- skiptoken
- String
An opaque token that identifies a starting point in the collection.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of ManagedDatabaseColumnResource that may take multiple service requests to iterate over.
Applies to
Azure SDK for .NET