Class: Azure::ARM::Web::Models::AutoHealCustomAction
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::AutoHealCustomAction
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/auto_heal_custom_action.rb
Overview
AutoHealCustomAction - Describes the custom action to be executed when an auto heal rule is triggered.
Instance Attribute Summary collapse
-
#exe ⇒ String
Executable to be run.
-
#parameters ⇒ String
Parameters for the executable.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ AutoHealCustomAction
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#exe ⇒ String
Returns Executable to be run.
17 18 19 |
# File 'lib/azure_mgmt_web/models/auto_heal_custom_action.rb', line 17 def exe @exe end |
#parameters ⇒ String
Returns Parameters for the executable.
20 21 22 |
# File 'lib/azure_mgmt_web/models/auto_heal_custom_action.rb', line 20 def parameters @parameters end |
Class Method Details
.deserialize_object(object) ⇒ AutoHealCustomAction
Deserializes given Ruby Hash into Model object.
52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/azure_mgmt_web/models/auto_heal_custom_action.rb', line 52 def self.deserialize_object(object) return if object.nil? output_object = AutoHealCustomAction.new deserialized_property = object['exe'] output_object.exe = deserialized_property deserialized_property = object['parameters'] output_object.parameters = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/azure_mgmt_web/models/auto_heal_custom_action.rb', line 34 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.exe output_object['exe'] = serialized_property unless serialized_property.nil? serialized_property = object.parameters output_object['parameters'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
25 26 27 |
# File 'lib/azure_mgmt_web/models/auto_heal_custom_action.rb', line 25 def validate # Nothing to validate end |