共用方式為


SqlPoolColumn Constructors

Definition

Overloads

SqlPoolColumn()

Initializes a new instance of the SqlPoolColumn class.

SqlPoolColumn(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the SqlPoolColumn class.

SqlPoolColumn()

Initializes a new instance of the SqlPoolColumn class.

public SqlPoolColumn ();
Public Sub New ()

Applies to

SqlPoolColumn(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the SqlPoolColumn class.

public SqlPoolColumn (string id = default, string name = default, string type = default, string columnType = default, bool? isComputed = default);
new Microsoft.Azure.Management.Synapse.Models.SqlPoolColumn : string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.Synapse.Models.SqlPoolColumn
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional columnType As String = Nothing, Optional isComputed As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

columnType
String

The column data type. Possible values include: 'image', 'text', 'uniqueidentifier', 'date', 'time', 'datetime2', 'datetimeoffset', 'tinyint', 'smallint', 'int', 'smalldatetime', 'real', 'money', 'datetime', 'float', 'sql_variant', 'ntext', 'bit', 'decimal', 'numeric', 'smallmoney', 'bigint', 'hierarchyid', 'geometry', 'geography', 'varbinary', 'varchar', 'binary', 'char', 'timestamp', 'nvarchar', 'nchar', 'xml', 'sysname'

isComputed
Nullable<Boolean>

Indicates whether column value is computed or not

Applies to