1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/bluebox/requests/blb/helper.rb
2013-03-04 19:05:00 -08:00

21 lines
429 B
Ruby

class Bluebox
module BLB
module Formats
LB_APPLICATION = {
'id' => String,
'ip_v4' => String,
'ip_v6' => String,
'name' => String,
'lb_services' => Array,
'source_ip_v4' => Fog::Nullable::String,
}
ADD_MACHINE_TO_LB = {
'status' => String,
'text' => String,
}
REMOVE_MACHINE_FROM_BACKEND = 'Record Removed.'
end
end
end