Class: PaloAlto::XML::Config::Panorama::AuthenticationProfile::Entry

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

Defined Under Namespace

Classes: AllowList, Lockout, Method, SingleSignOn

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, #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



2007
2008
2009
# File 'lib/palo_alto/config.rb', line 2007

def _section
:entry
end

#allow_listObject



2083
2084
2085
# File 'lib/palo_alto/config.rb', line 2083

def allow_list
maybe_register_subclass('allow-list', AllowList.new(parent_instance: self, client: @client, create_children: @create_children))
end

#has_multiple_values?Boolean

Returns:

  • (Boolean)


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

def has_multiple_values?; false; end

#lockoutObject



2067
2068
2069
# File 'lib/palo_alto/config.rb', line 2067

def lockout
@subclasses['lockout'] ||= Lockout.new(parent_instance: self, client: @client, create_children: @create_children)
end

#methodObject



2379
2380
2381
# File 'lib/palo_alto/config.rb', line 2379

def method
maybe_register_subclass('method', Method.new(parent_instance: self, client: @client, create_children: @create_children))
end

#nameObject

Group name



2384
2385
2386
# File 'lib/palo_alto/config.rb', line 2384

def name
prop_get('@name')
end

#single_sign_onObject



2041
2042
2043
# File 'lib/palo_alto/config.rb', line 2041

def single_sign_on
@subclasses['single-sign-on'] ||= SingleSignOn.new(parent_instance: self, client: @client, create_children: @create_children)
end

#user_domainObject

Domain name(Not for SAML) to be used for authentication



2396
2397
2398
# File 'lib/palo_alto/config.rb', line 2396

def user_domain
prop_get('user-domain')
end

#user_domain=(val) ⇒ Object

Domain name(Not for SAML) to be used for authentication



2400
2401
2402
# File 'lib/palo_alto/config.rb', line 2400

def user_domain=(val)
prop_set('user-domain', val)
end

#username_modifierObject

Username modifier(Not for SAML) to handle user domain



2388
2389
2390
# File 'lib/palo_alto/config.rb', line 2388

def username_modifier
prop_get('username-modifier')
end

#username_modifier=(val) ⇒ Object

Username modifier(Not for SAML) to handle user domain



2392
2393
2394
# File 'lib/palo_alto/config.rb', line 2392

def username_modifier=(val)
prop_set('username-modifier', val)
end