Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrateSqlServerSqlMISyncTaskInput
- Inherits:
-
SqlServerSqlMISyncTaskInput
- Object
- SqlServerSqlMISyncTaskInput
- Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrateSqlServerSqlMISyncTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sql_server_sql_misync_task_input.rb
Overview
Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario.
Instance Attribute Summary
Attributes inherited from SqlServerSqlMISyncTaskInput
#azure_app, #backup_file_share, #selected_databases, #source_connection_info, #storage_resource_id, #target_connection_info
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrateSqlServerSqlMISyncTaskInput class as Ruby Hash.
Class Method Details
.mapper ⇒ Object
Mapper for MigrateSqlServerSqlMISyncTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
21 22 23 24 25 26 27 28 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 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migrate_sql_server_sql_misync_task_input.rb', line 21 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrateSqlServerSqlMISyncTaskInput', type: { name: 'Composite', class_name: 'MigrateSqlServerSqlMISyncTaskInput', model_properties: { selected_databases: { client_side_validation: true, required: true, serialized_name: 'selectedDatabases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'MigrateSqlServerSqlMIDatabaseInputElementType', type: { name: 'Composite', class_name: 'MigrateSqlServerSqlMIDatabaseInput' } } } }, backup_file_share: { client_side_validation: true, required: false, serialized_name: 'backupFileShare', type: { name: 'Composite', class_name: 'FileShare' } }, storage_resource_id: { client_side_validation: true, required: true, serialized_name: 'storageResourceId', type: { name: 'String' } }, source_connection_info: { client_side_validation: true, required: true, serialized_name: 'sourceConnectionInfo', type: { name: 'Composite', class_name: 'SqlConnectionInfo' } }, target_connection_info: { client_side_validation: true, required: true, serialized_name: 'targetConnectionInfo', type: { name: 'Composite', class_name: 'MiSqlConnectionInfo' } }, azure_app: { client_side_validation: true, required: true, serialized_name: 'azureApp', type: { name: 'Composite', class_name: 'AzureActiveDirectoryApp' } } } } } end |