Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::DatabaseInfo
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::DatabaseInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/database_info.rb
Overview
Project Database Details
Instance Attribute Summary collapse
-
#source_database_name ⇒ String
Name of the database.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DatabaseInfo class as Ruby Hash.
Instance Attribute Details
#source_database_name ⇒ String
Returns Name of the database.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/database_info.rb', line 16 def source_database_name @source_database_name end |
Class Method Details
.mapper ⇒ Object
Mapper for DatabaseInfo class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/database_info.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DatabaseInfo', type: { name: 'Composite', class_name: 'DatabaseInfo', model_properties: { source_database_name: { client_side_validation: true, required: true, serialized_name: 'sourceDatabaseName', type: { name: 'String' } } } } } end |