Class: Azure::ARM::SQL::Models::SyncGroupSchemaTableColumn
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::SyncGroupSchemaTableColumn
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_sql/models/sync_group_schema_table_column.rb
Overview
Properties of column in sync group table.
Instance Attribute Summary collapse
-
#data_size ⇒ String
Data size of the column.
-
#data_type ⇒ String
Data type of the column.
-
#quoted_name ⇒ String
Quoted name of sync group table column.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SyncGroupSchemaTableColumn class as Ruby Hash.
Instance Attribute Details
#data_size ⇒ String
Returns Data size of the column.
20 21 22 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_schema_table_column.rb', line 20 def data_size @data_size end |
#data_type ⇒ String
Returns Data type of the column.
23 24 25 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_schema_table_column.rb', line 23 def data_type @data_type end |
#quoted_name ⇒ String
Returns Quoted name of sync group table column.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_schema_table_column.rb', line 17 def quoted_name @quoted_name end |
Class Method Details
.mapper ⇒ Object
Mapper for SyncGroupSchemaTableColumn class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_schema_table_column.rb', line 30 def self.mapper() { required: false, serialized_name: 'SyncGroupSchemaTableColumn', type: { name: 'Composite', class_name: 'SyncGroupSchemaTableColumn', model_properties: { quoted_name: { required: false, serialized_name: 'quotedName', type: { name: 'String' } }, data_size: { required: false, serialized_name: 'dataSize', type: { name: 'String' } }, data_type: { required: false, serialized_name: 'dataType', type: { name: 'String' } } } } } end |