2013-03-04 17:34:33 -05:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2013-03-04 19:21:37 -05:00
|
|
|
LB_APPLICATIONS = [LB_APPLICATION]
|
|
|
|
|
|
|
|
LB_SERVICE = {
|
|
|
|
'name' => String,
|
|
|
|
'port' => Integer,
|
|
|
|
'private' => Fog::Boolean,
|
|
|
|
'status_username' => String,
|
|
|
|
'status_password' => String,
|
|
|
|
'status_url' => String,
|
|
|
|
'service_type' => String,
|
|
|
|
'created' => DateTime,
|
|
|
|
'lb_backends' => Array,
|
|
|
|
'pem_file_uploaded?' => Fog::Nullable::Boolean,
|
|
|
|
}
|
|
|
|
|
|
|
|
LB_SERVICES = [LB_SERVICE]
|
|
|
|
|
2013-03-04 17:34:33 -05:00
|
|
|
ADD_MACHINE_TO_LB = {
|
|
|
|
'status' => String,
|
|
|
|
'text' => String,
|
|
|
|
}
|
|
|
|
|
|
|
|
REMOVE_MACHINE_FROM_BACKEND = 'Record Removed.'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|