Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ValidateMigrationInputSqlServerSqlMISyncTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ValidateMigrationInputSqlServerSqlMISyncTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_misync_task_output.rb
Overview
Output for task that validates migration input for Azure SQL Database Managed Instance online migration
Instance Attribute Summary collapse
-
#id ⇒ String
Database identifier.
-
#name ⇒ String
Name of database.
-
#validation_errors ⇒ Array<ReportableException>
database object.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ValidateMigrationInputSqlServerSqlMISyncTaskOutput class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns Database identifier.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_misync_task_output.rb', line 17 def id @id end |
#name ⇒ String
Returns Name of database.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_misync_task_output.rb', line 20 def name @name end |
#validation_errors ⇒ Array<ReportableException>
database object
24 25 26 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_misync_task_output.rb', line 24 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for ValidateMigrationInputSqlServerSqlMISyncTaskOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_misync_task_output.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ValidateMigrationInputSqlServerSqlMISyncTaskOutput', type: { name: 'Composite', class_name: 'ValidateMigrationInputSqlServerSqlMISyncTaskOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, validation_errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'validationErrors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ReportableExceptionElementType', type: { name: 'Composite', class_name: 'ReportableException' } } } } } } } end |