mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
429 B
Ruby
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
|