class PaloAlto::XML::Config::Devices::Entry::Deviceconfig::System::ManagementTunnel__32::CryptoProfiles::Ikev2CryptoProfiles::Entry
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 75562 def _section :'entry' end
authentication_multiple()
click to toggle source
MP-IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
# File lib/palo_alto/config.rb, line 75749 def authentication_multiple prop_get('authentication-multiple') end
authentication_multiple=(val)
click to toggle source
MP-IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
# File lib/palo_alto/config.rb, line 75753 def authentication_multiple=(val) prop_set('authentication-multiple', val) end
dh_group()
click to toggle source
# File lib/palo_alto/config.rb, line 75650 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 75591 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 75559 def has_multiple_values? false end
hash()
click to toggle source
# File lib/palo_alto/config.rb, line 75620 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 75722 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 75745 def name prop_get('@name') end