class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::Ike__4::CryptoProfiles::IkeCryptoProfiles::Entry
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 187730 def _section :'entry' end
authentication_multiple()
click to toggle source
IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
# File lib/palo_alto/config.rb, line 187938 def authentication_multiple prop_get('authentication-multiple') end
authentication_multiple=(val)
click to toggle source
IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
# File lib/palo_alto/config.rb, line 187942 def authentication_multiple=(val) prop_set('authentication-multiple', val) end
dh_group()
click to toggle source
# File lib/palo_alto/config.rb, line 187839 def dh_group if @create_children @subclasses['dh-group'] ||= DhGroup.new(parent_instance: self, create_children: @create_children) else DhGroup.new(parent_instance: self) end end
encryption()
click to toggle source
# File lib/palo_alto/config.rb, line 187765 def encryption if @create_children @subclasses['encryption'] ||= Encryption.new(parent_instance: self, create_children: @create_children) else Encryption.new(parent_instance: self) end end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 187727 def has_multiple_values? false end
hash()
click to toggle source
# File lib/palo_alto/config.rb, line 187800 def hash if @create_children @subclasses['hash'] ||= Hash.new(parent_instance: self, create_children: @create_children) else Hash.new(parent_instance: self) end end
lifetime()
click to toggle source
# File lib/palo_alto/config.rb, line 187911 def lifetime if @create_children @subclasses['lifetime'] ||= Lifetime.new(parent_instance: self, create_children: @create_children) else Lifetime.new(parent_instance: self) end end
name()
click to toggle source
alphanumeric string begin with letter: [0-9a-zA-Z._-]
# File lib/palo_alto/config.rb, line 187934 def name prop_get('@name') end