Class: PaloAlto::XML::Config::Shared::Profiles::Decryption::Entry

Inherits:
ArrayConfigClass show all
Defined in:
lib/palo_alto/config.rb

Defined Under Namespace

Classes: SshProxy, SslForwardProxy, SslInboundProxy, SslNoProxy, SslProtocolSettings

Constant Summary

Constants included from DSL

DSL::AXES, DSL::LOWERCASE_LETTERS, DSL::METHODS, DSL::OPERATORS, DSL::UPPERCASE_LETTERS

Instance Attribute Summary

Attributes inherited from ArrayConfigClass

#selector

Attributes inherited from PaloAlto::XML::ConfigClass

#api_attributes, #parent_instance, #subclasses

Attributes inherited from Expression

#arguments, #expression

Instance Method Summary collapse

Methods inherited from ArrayConfigClass

#move!, #rename!, #set_xpath_from_selector!

Methods inherited from PaloAlto::XML::ConfigClass

#array_class_setter, #clear!, #complete, #create!, #delete!, #delete_child, #edit!, #enforce_type, #enforce_types, #external_set, #get, #get_all, #get_class_from_child_str, #get_primary_key, #initialize, #inspect, #maybe_register_subclass, #multimove!, #prop_get, #prop_set, #selector_subclasses, #set!, #set_array_class_attributes, #set_values, #to_xml, #values, #xml_builder

Methods inherited from Expression

#current, #initialize, #to_xpath

Methods included from DSL

#anywhere, #axis, #binary_operator, #child, #contains_word, #css, #current, #descendant, #ends_with, #function, #is, #last, #lowercase, #method, #next_sibling, #one_of, #parenthesis, #position, #previous_sibling, #qname, #relative, #root, #text, #union, #uppercase, #where, #xpath_attr

Constructor Details

This class inherits a constructor from PaloAlto::XML::ConfigClass

Instance Method Details

#_sectionObject



19636
19637
19638
# File 'lib/palo_alto/config.rb', line 19636

def _section
:entry
end

#disable_overrideObject

disable object override in child device groups



20019
20020
20021
# File 'lib/palo_alto/config.rb', line 20019

def disable_override
prop_get('disable-override')
end

#disable_override=(val) ⇒ Object

disable object override in child device groups



20023
20024
20025
# File 'lib/palo_alto/config.rb', line 20023

def disable_override=(val)
prop_set('disable-override', val)
end

#forwarded_onlyObject

mirror after security policy allow



20035
20036
20037
# File 'lib/palo_alto/config.rb', line 20035

def forwarded_only
prop_get('forwarded-only')
end

#forwarded_only=(val) ⇒ Object

mirror after security policy allow



20039
20040
20041
# File 'lib/palo_alto/config.rb', line 20039

def forwarded_only=(val)
prop_set('forwarded-only', val)
end

#has_multiple_values?Boolean

Returns:

  • (Boolean)


19635
# File 'lib/palo_alto/config.rb', line 19635

def has_multiple_values?; false; end

#interfaceObject

decrypt mirror port



20027
20028
20029
# File 'lib/palo_alto/config.rb', line 20027

def interface
prop_get('interface')
end

#interface=(val) ⇒ Object

decrypt mirror port



20031
20032
20033
# File 'lib/palo_alto/config.rb', line 20031

def interface=(val)
prop_set('interface', val)
end

#nameObject

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



20015
20016
20017
# File 'lib/palo_alto/config.rb', line 20015

def name
prop_get('@name')
end

#ssh_proxyObject



20010
20011
20012
# File 'lib/palo_alto/config.rb', line 20010

def ssh_proxy
@subclasses['ssh-proxy'] ||= SshProxy.new(parent_instance: self, client: @client, create_children: @create_children)
end

#ssl_forward_proxyObject



19758
19759
19760
# File 'lib/palo_alto/config.rb', line 19758

def ssl_forward_proxy
@subclasses['ssl-forward-proxy'] ||= SslForwardProxy.new(parent_instance: self, client: @client, create_children: @create_children)
end

#ssl_inbound_proxyObject



19808
19809
19810
# File 'lib/palo_alto/config.rb', line 19808

def ssl_inbound_proxy
@subclasses['ssl-inbound-proxy'] ||= SslInboundProxy.new(parent_instance: self, client: @client, create_children: @create_children)
end

#ssl_no_proxyObject



19968
19969
19970
# File 'lib/palo_alto/config.rb', line 19968

def ssl_no_proxy
@subclasses['ssl-no-proxy'] ||= SslNoProxy.new(parent_instance: self, client: @client, create_children: @create_children)
end

#ssl_protocol_settingsObject



19942
19943
19944
# File 'lib/palo_alto/config.rb', line 19942

def ssl_protocol_settings
@subclasses['ssl-protocol-settings'] ||= SslProtocolSettings.new(parent_instance: self, client: @client, create_children: @create_children)
end