Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::GetUserTablesOracleTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::GetUserTablesOracleTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_output.rb
Overview
Output for the task that gets the list of tables contained within a provided list of Oracle schemas.
Instance Attribute Summary collapse
-
#schema_name ⇒ String
The schema this result is for.
-
#tables ⇒ Array<DatabaseTable>
schema.
-
#validation_errors ⇒ Array<ReportableException>
the task.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetUserTablesOracleTaskOutput class as Ruby Hash.
Instance Attribute Details
#schema_name ⇒ String
Returns The schema this result is for.
17 18 19 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_output.rb', line 17 def schema_name @schema_name end |
#tables ⇒ Array<DatabaseTable>
schema
21 22 23 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_output.rb', line 21 def tables @tables end |
#validation_errors ⇒ Array<ReportableException>
the task
25 26 27 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_output.rb', line 25 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for GetUserTablesOracleTaskOutput 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 81 82 83 84 85 86 87 88 89 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_output.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetUserTablesOracleTaskOutput', type: { name: 'Composite', class_name: 'GetUserTablesOracleTaskOutput', model_properties: { schema_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'schemaName', type: { name: 'String' } }, tables: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tables', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DatabaseTableElementType', type: { name: 'Composite', class_name: 'DatabaseTable' } } } }, 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 |