Class: Azure::DataMigration::Mgmt::V2018_03_15_preview::Models::ValidateMigrationInputSqlServerSqlMITaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_03_15_preview::Models::ValidateMigrationInputSqlServerSqlMITaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb
Overview
Input for task that validates migration input for SQL to Azure SQL Managed Instance
Instance Attribute Summary collapse
-
#backup_blob_share ⇒ BlobShare
used for storing backup files.
-
#backup_file_share ⇒ FileShare
databases.
-
#selected_databases ⇒ Array<MigrateSqlServerSqlMIDatabaseInput>
migrate.
-
#target_connection_info ⇒ SqlConnectionInfo
Information for connecting to target.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ValidateMigrationInputSqlServerSqlMITaskInput class as Ruby Hash.
Instance Attribute Details
#backup_blob_share ⇒ BlobShare
used for storing backup files.
29 30 31 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb', line 29 def backup_blob_share @backup_blob_share end |
#backup_file_share ⇒ FileShare
databases.
25 26 27 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb', line 25 def backup_file_share @backup_file_share end |
#selected_databases ⇒ Array<MigrateSqlServerSqlMIDatabaseInput>
migrate
21 22 23 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb', line 21 def selected_databases @selected_databases end |
#target_connection_info ⇒ SqlConnectionInfo
Returns Information for connecting to target.
17 18 19 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb', line 17 def target_connection_info @target_connection_info end |
Class Method Details
.mapper ⇒ Object
Mapper for ValidateMigrationInputSqlServerSqlMITaskInput class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/validate_migration_input_sql_server_sql_mitask_input.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ValidateMigrationInputSqlServerSqlMITaskInput', type: { name: 'Composite', class_name: 'ValidateMigrationInputSqlServerSqlMITaskInput', model_properties: { target_connection_info: { client_side_validation: true, required: true, serialized_name: 'targetConnectionInfo', type: { name: 'Composite', class_name: 'SqlConnectionInfo' } }, 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' } }, backup_blob_share: { client_side_validation: true, required: true, serialized_name: 'backupBlobShare', type: { name: 'Composite', class_name: 'BlobShare' } } } } } end |