class PaloAlto::XML::Config::Shared::ApplicationFilter::Entry::Tagging

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 42501
def _section
        :'tagging'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 42498
def has_multiple_values?
        true
end
no_tag() click to toggle source
# File lib/palo_alto/config.rb, line 42539
def no_tag
        prop_get('no-tag')
end
no_tag=(val) click to toggle source
# File lib/palo_alto/config.rb, line 42542
def no_tag=(val)
        prop_set('no-tag', val)
end
tag() click to toggle source
# File lib/palo_alto/config.rb, line 42527
def tag
        if @create_children
                @subclasses['tag'] ||= Tag.new(parent_instance: self, create_children: @create_children)
        else
                Tag.new(parent_instance: self)
        end
end