Class: Azure::Automation::Mgmt::V2015_10_31::Models::ScheduleUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Automation::Mgmt::V2015_10_31::Models::ScheduleUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-10-31/generated/azure_mgmt_automation/models/schedule_update_parameters.rb
Overview
The parameters supplied to the update schedule operation.
Instance Attribute Summary collapse
-
#description ⇒ String
Gets or sets the description of the schedule.
-
#is_enabled ⇒ Boolean
is enabled.
-
#name ⇒ String
Gets or sets the name of the Schedule.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ScheduleUpdateParameters class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns Gets or sets the description of the schedule.
19 20 21 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/schedule_update_parameters.rb', line 19 def description @description end |
#is_enabled ⇒ Boolean
is enabled.
23 24 25 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/schedule_update_parameters.rb', line 23 def is_enabled @is_enabled end |
#name ⇒ String
Returns Gets or sets the name of the Schedule.
16 17 18 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/schedule_update_parameters.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for ScheduleUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
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/2015-10-31/generated/azure_mgmt_automation/models/schedule_update_parameters.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ScheduleUpdateParameters', type: { name: 'Composite', class_name: 'ScheduleUpdateParameters', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, is_enabled: { client_side_validation: true, required: false, serialized_name: 'properties.isEnabled', type: { name: 'Boolean' } } } } } end |