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

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 370866
def _section
        :'election-option'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 370863
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 no

# File lib/palo_alto/config.rb, line 371008
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 no

# File lib/palo_alto/config.rb, line 371012
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 371000
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 371004
def priority=(val)
        prop_set('priority', val)
end
timers() click to toggle source
# File lib/palo_alto/config.rb, line 370981
def timers
        @subclasses['timers'] ||= Timers.new(parent_instance: self, create_children: @create_children)
end