class Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTableColumn
Properties of the column in the table of database full schema.
Attributes
data_size[RW]
@return [String] Data size of the column.
data_type[RW]
@return [String] Data type of the column.
error_id[RW]
@return [String] Error id of the column.
has_error[RW]
@return [Boolean] If there is error in the table.
is_primary_key[RW]
@return [Boolean] If it is the primary key of the table.
name[RW]
@return [String] Name of the column.
quoted_name[RW]
@return [String] Quoted name of the column.
Private Class Methods
mapper()
click to toggle source
Mapper for SyncFullSchemaTableColumn
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_full_schema_table_column.rb, line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncFullSchemaTableColumn', type: { name: 'Composite', class_name: 'SyncFullSchemaTableColumn', model_properties: { data_size: { client_side_validation: true, required: false, read_only: true, serialized_name: 'dataSize', type: { name: 'String' } }, data_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'dataType', type: { name: 'String' } }, error_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'errorId', type: { name: 'String' } }, has_error: { client_side_validation: true, required: false, read_only: true, serialized_name: 'hasError', type: { name: 'Boolean' } }, is_primary_key: { client_side_validation: true, required: false, read_only: true, serialized_name: 'isPrimaryKey', type: { name: 'Boolean' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, quoted_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'quotedName', type: { name: 'String' } } } } } end