class PaloAlto::XML::Config::Panorama::ServerProfile

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 1252
def _section
        :'server-profile'
end
dns() click to toggle source
# File lib/palo_alto/config.rb, line 2857
def dns
        if @create_children
                @subclasses['dns'] ||= Dns.new(parent_instance: self, create_children: @create_children)
        else
                Dns.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 1249
def has_multiple_values?
        false
end
kerberos() click to toggle source
# File lib/palo_alto/config.rb, line 2069
def kerberos
        if @create_children
                @subclasses['kerberos'] ||= Kerberos.new(parent_instance: self, create_children: @create_children)
        else
                Kerberos.new(parent_instance: self)
        end
end
ldap() click to toggle source
# File lib/palo_alto/config.rb, line 1518
def ldap
        if @create_children
                @subclasses['ldap'] ||= Ldap.new(parent_instance: self, create_children: @create_children)
        else
                Ldap.new(parent_instance: self)
        end
end
netflow() click to toggle source
# File lib/palo_alto/config.rb, line 2655
def netflow
        if @create_children
                @subclasses['netflow'] ||= Netflow.new(parent_instance: self, create_children: @create_children)
        else
                Netflow.new(parent_instance: self)
        end
end
radius() click to toggle source
# File lib/palo_alto/config.rb, line 1855
def radius
        if @create_children
                @subclasses['radius'] ||= Radius.new(parent_instance: self, create_children: @create_children)
        else
                Radius.new(parent_instance: self)
        end
end
saml_idp() click to toggle source
# File lib/palo_alto/config.rb, line 2479
def saml_idp
        if @create_children
                @subclasses['saml-idp'] ||= SamlIdp.new(parent_instance: self, create_children: @create_children)
        else
                SamlIdp.new(parent_instance: self)
        end
end
scp() click to toggle source
# File lib/palo_alto/config.rb, line 1954
def scp
        if @create_children
                @subclasses['scp'] ||= Scp.new(parent_instance: self, create_children: @create_children)
        else
                Scp.new(parent_instance: self)
        end
end
tacplus() click to toggle source
# File lib/palo_alto/config.rb, line 2243
def tacplus
        if @create_children
                @subclasses['tacplus'] ||= Tacplus.new(parent_instance: self, create_children: @create_children)
        else
                Tacplus.new(parent_instance: self)
        end
end