Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::GetUserTablesSqlSyncTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::GetUserTablesSqlSyncTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb
Overview
Output of the task that collects user tables for the given list of databases
Instance Attribute Summary collapse
-
#databases_to_source_tables ⇒ Hash{String => Array<DatabaseTable>}
name to list of source tables.
-
#databases_to_target_tables ⇒ Hash{String => Array<DatabaseTable>}
name to list of target tables.
-
#table_validation_errors ⇒ Hash{String => Array<String>}
list of validation errors.
-
#validation_errors ⇒ Array<ReportableException>
Validation errors.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetUserTablesSqlSyncTaskOutput class as Ruby Hash.
Instance Attribute Details
#databases_to_source_tables ⇒ Hash{String => Array<DatabaseTable>}
name to list of source tables
18 19 20 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb', line 18 def databases_to_source_tables @databases_to_source_tables end |
#databases_to_target_tables ⇒ Hash{String => Array<DatabaseTable>}
name to list of target tables
22 23 24 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb', line 22 def databases_to_target_tables @databases_to_target_tables end |
#table_validation_errors ⇒ Hash{String => Array<String>}
list of validation errors
26 27 28 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb', line 26 def table_validation_errors @table_validation_errors end |
#validation_errors ⇒ Array<ReportableException>
Returns Validation errors.
29 30 31 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb', line 29 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for GetUserTablesSqlSyncTaskOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_output.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetUserTablesSqlSyncTaskOutput', type: { name: 'Composite', class_name: 'GetUserTablesSqlSyncTaskOutput', model_properties: { databases_to_source_tables: { client_side_validation: true, required: false, read_only: true, serialized_name: 'databasesToSourceTables', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DatabaseTableElementType', type: { name: 'Composite', class_name: 'DatabaseTable' } } } } } }, databases_to_target_tables: { client_side_validation: true, required: false, read_only: true, serialized_name: 'databasesToTargetTables', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DatabaseTableElementType', type: { name: 'Composite', class_name: 'DatabaseTable' } } } } } }, table_validation_errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tableValidationErrors', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', 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 |