Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::GetProjectDetailsNonSqlTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::GetProjectDetailsNonSqlTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_project_details_non_sql_task_input.rb
Overview
Input for the task that reads configuration from project artifacts
Instance Attribute Summary collapse
-
#project_location ⇒ String
artifacts.
-
#project_name ⇒ String
Name of the migration project.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetProjectDetailsNonSqlTaskInput class as Ruby Hash.
Instance Attribute Details
#project_location ⇒ String
artifacts
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_project_details_non_sql_task_input.rb', line 20 def project_location @project_location end |
#project_name ⇒ String
Returns Name of the migration project.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_project_details_non_sql_task_input.rb', line 16 def project_name @project_name end |
Class Method Details
.mapper ⇒ Object
Mapper for GetProjectDetailsNonSqlTaskInput 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_project_details_non_sql_task_input.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetProjectDetailsNonSqlTaskInput', type: { name: 'Composite', class_name: 'GetProjectDetailsNonSqlTaskInput', model_properties: { project_name: { client_side_validation: true, required: true, serialized_name: 'projectName', type: { name: 'String' } }, project_location: { client_side_validation: true, required: true, serialized_name: 'projectLocation', type: { name: 'String' } } } } } end |