mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
425 B
Ruby
24 lines
425 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
class BLB
|
|
|
|
class LbService < Fog::Model
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :port
|
|
attribute :backends
|
|
attribute :private
|
|
|
|
attribute :status_url
|
|
attribute :status_username
|
|
attribute :status_password
|
|
attribute :created, :aliases => 'created_at'
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|