Class: Fastly::LoggingPlacement

Inherits:
Object
  • Object
show all
Defined in:
lib/fastly/models/logging_placement.rb

Constant Summary collapse

NONE =
"none".freeze
WAF_DEBUG =
"waf_debug".freeze
NULL =
"null".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string



23
24
25
# File 'lib/fastly/models/logging_placement.rb', line 23

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string



30
31
32
33
34
# File 'lib/fastly/models/logging_placement.rb', line 30

def build_from_hash(value)
  constantValues = LoggingPlacement.constants.select { |c| LoggingPlacement::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #LoggingPlacement" if constantValues.empty?
  value
end