class Azure::Web::Mgmt::V2016_09_01::Models::AutoHealCustomAction
Custom action to be executed when an auto heal rule is triggered.
Attributes
exe[RW]
@return [String] Executable to be run.
parameters[RW]
@return [String] Parameters for the executable.
Private Class Methods
mapper()
click to toggle source
Mapper for AutoHealCustomAction
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-09-01/generated/azure_mgmt_web/models/auto_heal_custom_action.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AutoHealCustomAction', type: { name: 'Composite', class_name: 'AutoHealCustomAction', model_properties: { exe: { client_side_validation: true, required: false, serialized_name: 'exe', type: { name: 'String' } }, parameters: { client_side_validation: true, required: false, serialized_name: 'parameters', type: { name: 'String' } } } } } end