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_application.rb

22 lines
356 B
Ruby
Raw Normal View History

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