class PaloAlto::XML::Config::Panorama::ServerProfile::Netflow::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 2497
def _section
        :'entry'
end
active_timeout() click to toggle source

Active timeout in minutes

# File lib/palo_alto/config.rb, line 2631
def active_timeout
        prop_get('active-timeout')
end
active_timeout=(val) click to toggle source

Active timeout in minutes

# File lib/palo_alto/config.rb, line 2635
def active_timeout=(val)
        prop_set('active-timeout', val)
end
export_enterprise_fields() click to toggle source

Export PAN-OS Specific Field Types

# File lib/palo_alto/config.rb, line 2639
def export_enterprise_fields
        prop_get('export-enterprise-fields')
end
export_enterprise_fields=(val) click to toggle source

Export PAN-OS Specific Field Types

# File lib/palo_alto/config.rb, line 2643
def export_enterprise_fields=(val)
        prop_set('export-enterprise-fields', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 2494
def has_multiple_values?
        false
end
name() click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 2627
def name
        prop_get('@name')
end
server() click to toggle source
# File lib/palo_alto/config.rb, line 2600
def server
        if @create_children
                @subclasses['server'] ||= Server.new(parent_instance: self, create_children: @create_children)
        else
                Server.new(parent_instance: self)
        end
end
template_refresh_rate() click to toggle source
# File lib/palo_alto/config.rb, line 2532
def template_refresh_rate
        @subclasses['template-refresh-rate'] ||= TemplateRefreshRate.new(parent_instance: self, create_children: @create_children)
end