Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrationReportResult
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::MigrationReportResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_report_result.rb
Overview
Migration validation report result, contains the url for downloading the generated report.
Instance Attribute Summary collapse
-
#id ⇒ String
Migration validation result identifier.
-
#report_url ⇒ String
The url of the report.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MigrationReportResult class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns Migration validation result identifier.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_report_result.rb', line 17 def id @id end |
#report_url ⇒ String
Returns The url of the report.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_report_result.rb', line 20 def report_url @report_url end |
Class Method Details
.mapper ⇒ Object
Mapper for MigrationReportResult 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/migration_report_result.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MigrationReportResult', type: { name: 'Composite', class_name: 'MigrationReportResult', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, report_url: { client_side_validation: true, required: false, read_only: true, serialized_name: 'reportUrl', type: { name: 'String' } } } } } end |