2013-03-01 15:26:52 -05:00
|
|
|
require 'fog/core/collection'
|
2013-03-06 12:01:54 -05:00
|
|
|
require 'fog/hp/models/lb/version'
|
2013-03-01 15:26:52 -05:00
|
|
|
|
|
|
|
module Fog
|
|
|
|
module HP
|
|
|
|
class LB
|
|
|
|
class Versions < Fog::Collection
|
|
|
|
model Fog::HP::LB::Version
|
|
|
|
|
|
|
|
def all
|
2013-05-22 10:03:55 -04:00
|
|
|
data = service.list_versions.body['version']
|
|
|
|
data = [data] unless data.kind_of? Array
|
2013-03-01 15:26:52 -05:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(record_id)
|
2013-05-21 17:09:13 -04:00
|
|
|
record = service.get_versions(record_id).body['version']
|
2013-03-01 15:26:52 -05:00
|
|
|
new(record)
|
|
|
|
rescue Fog::HP::LB::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-05-21 17:09:13 -04:00
|
|
|
end
|