mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
358 B
Ruby
21 lines
358 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
class BLB
|
|
|
|
class LbApplication < Fog::Model
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :ip_v4
|
|
attribute :ip_v6
|
|
attribute :services
|
|
attribute :description
|
|
attribute :created, :aliases => 'created_at'
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|