mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
19 lines
375 B
Ruby
19 lines
375 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
class BLB
|
|
class LbBackend < Fog::Model
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :lb_machines
|
|
attribute :monitoring_url
|
|
attribute :monitoring_url_hostname
|
|
attribute :acl_name
|
|
attribute :acl_rule
|
|
attribute :check_interval
|
|
end
|
|
end
|
|
end
|
|
end
|