Class: Yao::Resources::OldSample
Instance Attribute Summary
#service
Class Method Summary
collapse
Instance Method Summary
collapse
included, #project
Methods inherited from Base
#[], #[]=, add_instantiation_name_list, #destroy, friendly_attributes, #initialize, instantiation?, map_attribute_to_attribute, map_attribute_to_resource, map_attribute_to_resources, map_attributes_to_time, #to_hash, #update
#admin=, #api_version, #api_version=, #as_member, #client, #create, #destroy, extended, #find_by_name, #get, #get!, #list, #resources_path, #resources_path=, #return_single_on_querying, #return_single_on_querying=, #update
Class Method Details
.cache ⇒ Object
40
41
42
|
# File 'lib/yao/resources/old_sample.rb', line 40
def self.cache
@@_cache ||= {}
end
|
.list(meter_name, query = {}) ⇒ Object
get /v2/meters/#id returns samples!
34
35
36
37
38
|
# File 'lib/yao/resources/old_sample.rb', line 34
def self.list(meter_name, query={})
cache_key = [meter_name, *query].join
cache[cache_key] = GET("#{self.api_version}/meters/#{meter_name}", query).body unless cache[cache_key]
cache[cache_key].map{|d| new(d) }
end
|
Instance Method Details
#id ⇒ String
16
17
18
|
# File 'lib/yao/resources/old_sample.rb', line 16
def id
message_id
end
|
#recorded_at ⇒ Date
Also known as:
timestamp
10
11
12
|
# File 'lib/yao/resources/old_sample.rb', line 10
def recorded_at
Time.parse(self["recorded_at"] || self["timestamp"])
end
|
21
22
23
|
# File 'lib/yao/resources/old_sample.rb', line 21
def resource
@resource ||= Yao::Resource.get(resource_id)
end
|
26
27
28
|
# File 'lib/yao/resources/old_sample.rb', line 26
def user
@user ||= Yao::User.get(user_id)
end
|