class PaloAlto::XML::Config::Panorama::LogSettings::Http::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 11806
def _section
        :'entry'
end
format() click to toggle source
# File lib/palo_alto/config.rb, line 14233
def format
        @subclasses['format'] ||= Format.new(parent_instance: self, create_children: @create_children)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 11803
def has_multiple_values?
        false
end
name() click to toggle source

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

# File lib/palo_alto/config.rb, line 14249
def name
        prop_get('@name')
end
server() click to toggle source
# File lib/palo_alto/config.rb, line 11973
def server
        if @create_children
                @subclasses['server'] ||= Server.new(parent_instance: self, create_children: @create_children)
        else
                Server.new(parent_instance: self)
        end
end
tag_registration() click to toggle source

The server(s) should have User-ID agent running in order for tag registration to work

# File lib/palo_alto/config.rb, line 14253
def tag_registration
        prop_get('tag-registration')
end
tag_registration=(val) click to toggle source

The server(s) should have User-ID agent running in order for tag registration to work

# File lib/palo_alto/config.rb, line 14257
def tag_registration=(val)
        prop_set('tag-registration', val)
end