class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Vsys::Entry::UserIdCollector::ServerMonitor::Entry::Syslog

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 230347
def _section
        :'syslog'
end
address() click to toggle source

IP address for the syslog server

# File lib/palo_alto/config.rb, line 230430
def address
        prop_get('address')
end
address=(val) click to toggle source

IP address for the syslog server

# File lib/palo_alto/config.rb, line 230434
def address=(val)
        prop_set('address', val)
end
connection_type() click to toggle source
# File lib/palo_alto/config.rb, line 230437
def connection_type
        prop_get('connection-type')
end
connection_type=(val) click to toggle source
# File lib/palo_alto/config.rb, line 230440
def connection_type=(val)
        prop_set('connection-type', val)
end
default_domain_name() click to toggle source
# File lib/palo_alto/config.rb, line 230443
def default_domain_name
        prop_get('default-domain-name')
end
default_domain_name=(val) click to toggle source
# File lib/palo_alto/config.rb, line 230446
def default_domain_name=(val)
        prop_set('default-domain-name', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 230344
def has_multiple_values?
        false
end
syslog_parse_profile() click to toggle source
# File lib/palo_alto/config.rb, line 230400
def syslog_parse_profile
        if @create_children
                @subclasses['syslog-parse-profile'] ||= SyslogParseProfile.new(parent_instance: self, create_children: @create_children)
        else
                SyslogParseProfile.new(parent_instance: self)
        end
end