Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::RunProfile
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::RunProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/run_profile.rb
Overview
Describes the run profile.
Instance Attribute Summary collapse
-
#id ⇒ String
The run profile Id.
-
#name ⇒ String
The run profile name.
-
#run_steps ⇒ Array<RunStep>
The run steps of the run profile.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RunProfile class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
16 17 18 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/run_profile.rb', line 16 def id @id end |
#name ⇒ String
19 20 21 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/run_profile.rb', line 19 def name @name end |
#run_steps ⇒ Array<RunStep>
22 23 24 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/run_profile.rb', line 22 def run_steps @run_steps end |
Class Method Details
.mapper ⇒ Object
Mapper for RunProfile class as Ruby Hash. This will be used for serialization/deserialization.
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 67 68 69 70 71 72 73 74 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/run_profile.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RunProfile', type: { name: 'Composite', class_name: 'RunProfile', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, run_steps: { client_side_validation: true, required: false, serialized_name: 'runSteps', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'RunStepElementType', type: { name: 'Composite', class_name: 'RunStep' } } } } } } } end |