Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrationTableMetadata
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrationTableMetadata
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_table_metadata.rb
Overview
Metadata for tables selected in migration project
Instance Attribute Summary collapse
-
#source_table_name ⇒ String
Source table name.
-
#target_table_name ⇒ String
Target table name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrationTableMetadata class as Ruby Hash.
Instance Attribute Details
#source_table_name ⇒ String
Returns Source table name.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_table_metadata.rb', line 16 def source_table_name @source_table_name end |
#target_table_name ⇒ String
Returns Target table name.
19 20 21 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_table_metadata.rb', line 19 def target_table_name @target_table_name end |
Class Method Details
.mapper ⇒ Object
Mapper for MigrationTableMetadata 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-04-19/generated/azure_mgmt_data_migration/models/migration_table_metadata.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrationTableMetadata', type: { name: 'Composite', class_name: 'MigrationTableMetadata', model_properties: { source_table_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sourceTableName', type: { name: 'String' } }, target_table_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'targetTableName', type: { name: 'String' } } } } } end |