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

22 lines
381 B
Ruby

require 'fog/core/model'
module Fog
module Bluebox
class BLB
class Backend < Fog::Model
identity :id
attribute :name
attribute :machines
attribute :monitoring_url
attribute :monitoring_url_hostname
attribute :acl_name
attribute :acl_rule
attribute :check_interval
end
end
end
end