Share via


SqlDatabaseResource.GetDatabaseColumns Method

Definition

List database columns

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/columns
  • Operation Id: DatabaseColumns_ListByDatabase
  • Default Api Version: 2020-11-01-preview
  • Resource: SqlDatabaseColumnResource
public virtual Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource> GetDatabaseColumns (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 GetDatabaseColumns : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource>
override this.GetDatabaseColumns : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource>
Public Overridable Function GetDatabaseColumns (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 Pageable(Of SqlDatabaseColumnResource)

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

A collection of SqlDatabaseColumnResource that may take multiple service requests to iterate over.

Applies to