class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Shared::ServerProfile::Radius::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 241285
def _section
        :'entry'
end
admin_use_only() click to toggle source

Can only be used for administrative purposes

# File lib/palo_alto/config.rb, line 241586
def admin_use_only
        prop_get('admin-use-only')
end
admin_use_only=(val) click to toggle source

Can only be used for administrative purposes

# File lib/palo_alto/config.rb, line 241590
def admin_use_only=(val)
        prop_set('admin-use-only', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 241282
def has_multiple_values?
        false
end
name() click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 241582
def name
        prop_get('@name')
end
protocol() click to toggle source
# File lib/palo_alto/config.rb, line 241453
def protocol
        if @create_children
                @subclasses['protocol'] ||= Protocol.new(parent_instance: self, create_children: @create_children)
        else
                Protocol.new(parent_instance: self)
        end
end
retries() click to toggle source

number of attempts before giving up authentication

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

number of attempts before giving up authentication

# File lib/palo_alto/config.rb, line 241606
def retries=(val)
        prop_set('retries', val)
end
server() click to toggle source
# File lib/palo_alto/config.rb, line 241546
def server
        if @create_children
                @subclasses['server'] ||= Server.new(parent_instance: self, create_children: @create_children)
        else
                Server.new(parent_instance: self)
        end
end
timeout() click to toggle source

number of seconds to wait for when performing authentication

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

number of seconds to wait for when performing authentication

# File lib/palo_alto/config.rb, line 241598
def timeout=(val)
        prop_set('timeout', val)
end