Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::MigrateSyncCompleteCommandOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::MigrateSyncCompleteCommandOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_output.rb
Overview
Output for command that completes sync migration for a database.
Instance Attribute Summary collapse
-
#errors ⇒ Array<ReportableException>
during the command execution.
-
#id ⇒ String
Result identifier.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrateSyncCompleteCommandOutput class as Ruby Hash.
Instance Attribute Details
#errors ⇒ Array<ReportableException>
during the command execution
20 21 22 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_output.rb', line 20 def errors @errors end |
#id ⇒ String
Returns Result identifier.
16 17 18 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_output.rb', line 16 def id @id end |
Class Method Details
.mapper ⇒ Object
Mapper for MigrateSyncCompleteCommandOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/migrate_sync_complete_command_output.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrateSyncCompleteCommandOutput', type: { name: 'Composite', class_name: 'MigrateSyncCompleteCommandOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'errors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ReportableExceptionElementType', type: { name: 'Composite', class_name: 'ReportableException' } } } } } } } end |