Class: MistApi::ProtectReCustomProtocolEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/mist_api/models/protect_re_custom_protocol_enum.rb

Overview

enum: ‘any`, `icmp`, `tcp`, `udp`

Constant Summary collapse

PROTECT_RE_CUSTOM_PROTOCOL_ENUM =
[
  # TODO: Write general description for ANY
  ANY = 'any'.freeze,

  # TODO: Write general description for ICMP
  ICMP = 'icmp'.freeze,

  # TODO: Write general description for TCP
  TCP = 'tcp'.freeze,

  # TODO: Write general description for UDP
  UDP = 'udp'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = ANY) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/mist_api/models/protect_re_custom_protocol_enum.rb', line 29

def self.from_value(value, default_value = ANY)
  return default_value if value.nil?

  str = value.to_s.strip

  case str.downcase
  when 'any' then ANY
  when 'icmp' then ICMP
  when 'tcp' then TCP
  when 'udp' then UDP
  else
    default_value
  end
end

.validate(value) ⇒ Object



23
24
25
26
27
# File 'lib/mist_api/models/protect_re_custom_protocol_enum.rb', line 23

def self.validate(value)
  return false if value.nil?

  PROTECT_RE_CUSTOM_PROTOCOL_ENUM.include?(value)
end