Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::GetUserTablesOracleTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::GetUserTablesOracleTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_input.rb
Overview
Input for the task that gets the list of tables contained within a provided list of Oracle schemas.
Instance Attribute Summary collapse
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetUserTablesOracleTaskInput class as Ruby Hash.
Instance Attribute Details
#connection_info ⇒ OracleConnectionInfo
source
18 19 20 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_input.rb', line 18 def connection_info @connection_info end |
#selected_schemas ⇒ Array<String>
tables
22 23 24 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_input.rb', line 22 def selected_schemas @selected_schemas end |
Class Method Details
.mapper ⇒ Object
Mapper for GetUserTablesOracleTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
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 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/get_user_tables_oracle_task_input.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetUserTablesOracleTaskInput', type: { name: 'Composite', class_name: 'GetUserTablesOracleTaskInput', model_properties: { connection_info: { client_side_validation: true, required: true, serialized_name: 'connectionInfo', type: { name: 'Composite', class_name: 'OracleConnectionInfo' } }, selected_schemas: { client_side_validation: true, required: true, serialized_name: 'selectedSchemas', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |