Class: Azure::DataMigration::Mgmt::V2018_03_31_preview::Models::DatabaseTable
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_03_31_preview::Models::DatabaseTable
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-31-preview/generated/azure_mgmt_data_migration/models/database_table.rb
Overview
Table properties
Instance Attribute Summary collapse
-
#has_rows ⇒ Boolean
Indicates whether table is empty or not.
-
#name ⇒ String
Schema-qualified name of the table.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DatabaseTable class as Ruby Hash.
Instance Attribute Details
#has_rows ⇒ Boolean
Returns Indicates whether table is empty or not.
16 17 18 |
# File 'lib/2018-03-31-preview/generated/azure_mgmt_data_migration/models/database_table.rb', line 16 def has_rows @has_rows end |
#name ⇒ String
Returns Schema-qualified name of the table.
19 20 21 |
# File 'lib/2018-03-31-preview/generated/azure_mgmt_data_migration/models/database_table.rb', line 19 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for DatabaseTable class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 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 |
# File 'lib/2018-03-31-preview/generated/azure_mgmt_data_migration/models/database_table.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DatabaseTable', type: { name: 'Composite', class_name: 'DatabaseTable', model_properties: { has_rows: { client_side_validation: true, required: false, read_only: true, serialized_name: 'hasRows', type: { name: 'Boolean' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } } } } } end |