mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
356 B
Ruby
22 lines
356 B
Ruby
![]() |
require 'fog/core/model'
|
||
|
|
||
|
module Fog
|
||
|
module Bluebox
|
||
|
class BLB
|
||
|
|
||
|
class Application < 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
|