class PaloAlto::XML::Config::Devices::Entry::Deviceconfig::HighAvailability::ElectionOption

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 87600
def _section
        :'election-option'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 87597
def has_multiple_values?
        false
end
preemptive() click to toggle source

Configure on both HA peers to allow preemption by Passive device based on priority, default yes

# File lib/palo_alto/config.rb, line 87776
def preemptive
        prop_get('preemptive')
end
preemptive=(val) click to toggle source

Configure on both HA peers to allow preemption by Passive device based on priority, default yes

# File lib/palo_alto/config.rb, line 87780
def preemptive=(val)
        prop_set('preemptive', val)
end
priority() click to toggle source

Set priority of the local device

# File lib/palo_alto/config.rb, line 87768
def priority
        prop_get('priority')
end
priority=(val) click to toggle source

Set priority of the local device

# File lib/palo_alto/config.rb, line 87772
def priority=(val)
        prop_set('priority', val)
end
timers() click to toggle source
# File lib/palo_alto/config.rb, line 87749
def timers
        @subclasses['timers'] ||= Timers.new(parent_instance: self, create_children: @create_children)
end