class PaloAlto::XML::Config::Panorama::AuthenticationSequence::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 3448
def _section
        :'entry'
end
authentication_profiles() click to toggle source
# File lib/palo_alto/config.rb, line 3473
def authentication_profiles
        if @create_children
                @subclasses['authentication-profiles'] ||= AuthenticationProfiles.new(parent_instance: self, create_children: @create_children)
        else
                AuthenticationProfiles.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 3445
def has_multiple_values?
        false
end
name() click to toggle source

Authentication sequence name

# File lib/palo_alto/config.rb, line 3493
def name
        prop_get('@name')
end
use_domain_find_profile() click to toggle source

Attempt to use domain to determine authentication profile

# File lib/palo_alto/config.rb, line 3497
def use_domain_find_profile
        prop_get('use-domain-find-profile')
end
use_domain_find_profile=(val) click to toggle source

Attempt to use domain to determine authentication profile

# File lib/palo_alto/config.rb, line 3501
def use_domain_find_profile=(val)
        prop_set('use-domain-find-profile', val)
end