Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::SsisMigrationInfo
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::SsisMigrationInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/ssis_migration_info.rb
Overview
SSIS migration info with SSIS store type, overwrite policy.
Instance Attribute Summary collapse
-
#environment_overwrite_option ⇒ SsisMigrationOverwriteOption
SSIS environment migration.
-
#project_overwrite_option ⇒ SsisMigrationOverwriteOption
SSIS project migration.
-
#ssis_store_type ⇒ SsisStoreType
catalog is supported now in DMS.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SsisMigrationInfo class as Ruby Hash.
Instance Attribute Details
#environment_overwrite_option ⇒ SsisMigrationOverwriteOption
SSIS environment migration. Possible values include: ‘Ignore’, ‘Overwrite’
26 27 28 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/ssis_migration_info.rb', line 26 def environment_overwrite_option @environment_overwrite_option end |
#project_overwrite_option ⇒ SsisMigrationOverwriteOption
SSIS project migration. Possible values include: ‘Ignore’, ‘Overwrite’
21 22 23 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/ssis_migration_info.rb', line 21 def project_overwrite_option @project_overwrite_option end |
#ssis_store_type ⇒ SsisStoreType
catalog is supported now in DMS. Possible values include: ‘SsisCatalog’
17 18 19 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/ssis_migration_info.rb', line 17 def ssis_store_type @ssis_store_type end |
Class Method Details
.mapper ⇒ Object
Mapper for SsisMigrationInfo class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/ssis_migration_info.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SsisMigrationInfo', type: { name: 'Composite', class_name: 'SsisMigrationInfo', model_properties: { ssis_store_type: { client_side_validation: true, required: false, serialized_name: 'ssisStoreType', type: { name: 'String' } }, project_overwrite_option: { client_side_validation: true, required: false, serialized_name: 'projectOverwriteOption', type: { name: 'String' } }, environment_overwrite_option: { client_side_validation: true, required: false, serialized_name: 'environmentOverwriteOption', type: { name: 'String' } } } } } end |