Class: PaloAlto::XML::Config::Panorama::ServerProfile::Radius::Entry

Inherits:
ArrayConfigClass show all
Defined in:
lib/palo_alto/config.rb

Defined Under Namespace

Classes: Protocol, Server

Constant Summary

Constants included from DSL

DSL::AXES, DSL::LOWERCASE_LETTERS, DSL::METHODS, DSL::OPERATORS, DSL::UPPERCASE_LETTERS

Instance Attribute Summary

Attributes inherited from ArrayConfigClass

#selector

Attributes inherited from PaloAlto::XML::ConfigClass

#api_attributes, #parent_instance, #subclasses

Attributes inherited from Expression

#arguments, #expression

Instance Method Summary collapse

Methods inherited from ArrayConfigClass

#move!, #rename!, #set_xpath_from_selector!

Methods inherited from PaloAlto::XML::ConfigClass

#array_class_setter, #clear!, #complete, #create!, #delete!, #delete_child, #edit!, #enforce_type, #enforce_types, #external_set, #get, #get_all, #get_class_from_child_str, #get_primary_key, #initialize, #inspect, #maybe_register_subclass, #multimove!, #prop_get, #prop_set, #selector_subclasses, #set!, #set_array_class_attributes, #set_values, #to_xml, #values, #xml_builder

Methods inherited from Expression

#current, #initialize, #to_xpath

Methods included from DSL

#anywhere, #axis, #binary_operator, #child, #contains_word, #css, #current, #descendant, #ends_with, #function, #is, #last, #lowercase, #method, #next_sibling, #one_of, #parenthesis, #position, #previous_sibling, #qname, #relative, #root, #text, #union, #uppercase, #where, #xpath_attr

Constructor Details

This class inherits a constructor from PaloAlto::XML::ConfigClass

Instance Method Details

#_sectionObject



1164
1165
1166
# File 'lib/palo_alto/config.rb', line 1164

def _section
:entry
end

#has_multiple_values?Boolean

Returns:

  • (Boolean)


1163
# File 'lib/palo_alto/config.rb', line 1163

def has_multiple_values?; false; end

#nameObject

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



1339
1340
1341
# File 'lib/palo_alto/config.rb', line 1339

def name
prop_get('@name')
end

#protocolObject



1280
1281
1282
# File 'lib/palo_alto/config.rb', line 1280

def protocol
maybe_register_subclass('protocol', Protocol.new(parent_instance: self, client: @client, create_children: @create_children))
end

#retriesObject

number of attempts before giving up authentication



1351
1352
1353
# File 'lib/palo_alto/config.rb', line 1351

def retries
prop_get('retries')
end

#retries=(val) ⇒ Object

number of attempts before giving up authentication



1355
1356
1357
# File 'lib/palo_alto/config.rb', line 1355

def retries=(val)
prop_set('retries', val)
end

#serverObject



1334
1335
1336
# File 'lib/palo_alto/config.rb', line 1334

def server
maybe_register_subclass('server', Server.new(parent_instance: self, client: @client, create_children: @create_children))
end

#timeoutObject

number of seconds to wait for when performing authentication



1343
1344
1345
# File 'lib/palo_alto/config.rb', line 1343

def timeout
prop_get('timeout')
end

#timeout=(val) ⇒ Object

number of seconds to wait for when performing authentication



1347
1348
1349
# File 'lib/palo_alto/config.rb', line 1347

def timeout=(val)
prop_set('timeout', val)
end