mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
538 B
Ruby
20 lines
538 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Joyent
|
|
class Analytics
|
|
class Value < Fog::Model
|
|
attribute :value
|
|
attribute :transformations
|
|
attribute :start_time, :type => :timestamp
|
|
attribute :duration
|
|
attribute :end_time, :type => :timestamp
|
|
attribute :nsources
|
|
attribute :minreporting
|
|
attribute :requested_start_time, :type => :timestamp
|
|
attribute :requested_duration
|
|
attribute :requested_end_time, :type => :timestamp
|
|
end
|
|
end
|
|
end
|
|
end
|