class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Vsys::Entry::AuthenticationProfile::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 218789
def _section
        :'entry'
end
allow_list() click to toggle source
# File lib/palo_alto/config.rb, line 218917
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 218786
def has_multiple_values?
        false
end
lockout() click to toggle source
# File lib/palo_alto/config.rb, line 218887
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 219291
def method
        if @create_children
                @subclasses['method'] ||= Method.new(parent_instance: self, create_children: @create_children)
        else
                Method.new(parent_instance: self)
        end
end
multi_factor_auth() click to toggle source
# File lib/palo_alto/config.rb, line 219348
def multi_factor_auth
        @subclasses['multi-factor-auth'] ||= MultiFactorAuth.new(parent_instance: self, create_children: @create_children)
end
name() click to toggle source

Group name

# File lib/palo_alto/config.rb, line 219378
def name
        prop_get('@name')
end
single_sign_on() click to toggle source
# File lib/palo_alto/config.rb, line 218845
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 219390
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 219394
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 219382
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 219386
def username_modifier=(val)
        prop_set('username-modifier', val)
end