class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::SqlPoolColumn
A Sql pool column resource.
Attributes
column_type[RW]
@return [ColumnDataType] 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'
Private Class Methods
mapper()
click to toggle source
Mapper for SqlPoolColumn
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/sql_pool_column.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SqlPoolColumn', type: { name: 'Composite', class_name: 'SqlPoolColumn', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, column_type: { client_side_validation: true, required: false, serialized_name: 'properties.columnType', type: { name: 'String' } } } } } end