mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
18 lines
358 B
Ruby
18 lines
358 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/storm_on_demand/models/account/token'
|
||
|
|
||
|
module Fog
|
||
|
module Account
|
||
|
class StormOnDemand
|
||
|
class Tokens < Fog::Collection
|
||
|
model Fog::Account::StormOnDemand::Token
|
||
|
|
||
|
def create(options={})
|
||
|
t = service.create_token(options).body
|
||
|
new(t)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|