class PaloAlto::XML::Config::Panorama::AuthenticationProfile::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 2880
def _section
        :'entry'
end
allow_list() click to toggle source
# File lib/palo_alto/config.rb, line 3006
def allow_list
        if @create_children
                @subclasses['allow-list'] ||= AllowList.new(parent_instance: self, create_children: @create_children)
        else
                AllowList.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 2877
def has_multiple_values?
        false
end
lockout() click to toggle source
# File lib/palo_alto/config.rb, line 2978
def lockout
        @subclasses['lockout'] ||= Lockout.new(parent_instance: self, create_children: @create_children)
end
method() click to toggle source
# File lib/palo_alto/config.rb, line 3368
def method
        if @create_children
                @subclasses['method'] ||= Method.new(parent_instance: self, create_children: @create_children)
        else
                Method.new(parent_instance: self)
        end
end
name() click to toggle source

Group name

# File lib/palo_alto/config.rb, line 3402
def name
        prop_get('@name')
end
single_sign_on() click to toggle source
# File lib/palo_alto/config.rb, line 2936
def single_sign_on
        @subclasses['single-sign-on'] ||= SingleSignOn.new(parent_instance: self, create_children: @create_children)
end
user_domain() click to toggle source

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

# File lib/palo_alto/config.rb, line 3414
def user_domain
        prop_get('user-domain')
end
user_domain=(val) click to toggle source

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

# File lib/palo_alto/config.rb, line 3418
def user_domain=(val)
        prop_set('user-domain', val)
end
username_modifier() click to toggle source

Username modifier(Not for SAML) to handle user domain

# File lib/palo_alto/config.rb, line 3406
def username_modifier
        prop_get('username-modifier')
end
username_modifier=(val) click to toggle source

Username modifier(Not for SAML) to handle user domain

# File lib/palo_alto/config.rb, line 3410
def username_modifier=(val)
        prop_set('username-modifier', val)
end