2013-07-03 14:04:58 -07:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/rackspace/models/monitoring/agent_token'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Monitoring
|
|
|
|
class AgentTokens < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Rackspace::Monitoring::AgentToken
|
|
|
|
|
2013-07-24 15:18:02 -05:00
|
|
|
def all(options={})
|
|
|
|
clear
|
|
|
|
body = service.list_agent_tokens(options).body
|
2013-07-03 14:04:58 -07:00
|
|
|
|
2013-07-24 15:18:02 -05:00
|
|
|
load(body['values'])
|
2013-07-03 14:04:58 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def get(id)
|
|
|
|
data = service.get_agent_token(id).body
|
|
|
|
new(data)
|
|
|
|
rescue Fog::Rackspace::Monitoring::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|