mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
361 B
Ruby
20 lines
361 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
|