Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
- Inherits:
-
Object
- Object
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/retarget_schedule_properties.rb
Overview
Properties for retargeting a virtual machine schedule.
Instance Attribute Summary collapse
-
#current_resource_id ⇒ String
schedule operates.
-
#target_resource_id ⇒ String
schedule should be retargeted to.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RetargetScheduleProperties class as Ruby Hash.
Instance Attribute Details
#current_resource_id ⇒ String
schedule operates
17 18 19 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/retarget_schedule_properties.rb', line 17 def current_resource_id @current_resource_id end |
#target_resource_id ⇒ String
schedule should be retargeted to
21 22 23 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/retarget_schedule_properties.rb', line 21 def target_resource_id @target_resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for RetargetScheduleProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/retarget_schedule_properties.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RetargetScheduleProperties', type: { name: 'Composite', class_name: 'RetargetScheduleProperties', model_properties: { current_resource_id: { client_side_validation: true, required: false, serialized_name: 'currentResourceId', type: { name: 'String' } }, target_resource_id: { client_side_validation: true, required: false, serialized_name: 'targetResourceId', type: { name: 'String' } } } } } end |