Class: Fog::Collection
Direct Known Subclasses
AWS::Compute::Addresses, AWS::Compute::Flavors, AWS::Compute::Images, AWS::Compute::KeyPairs, AWS::Compute::SecurityGroups, AWS::Compute::Servers, AWS::Compute::Snapshots, AWS::Compute::Volumes, AWS::Storage::Directories, AWS::Storage::Files, Bluebox::Compute::Flavors, Bluebox::Compute::Images, Bluebox::Compute::Servers, Local::Storage::Directories, Local::Storage::Files, Rackspace::Compute::Flavors, Rackspace::Compute::Images, Rackspace::Compute::Servers, Rackspace::Storage::Directories, Rackspace::Storage::Files, Slicehost::Compute::Flavors, Slicehost::Compute::Images, Slicehost::Compute::Servers, Terremark::Shared::Addresses, Terremark::Shared::Networks, Terremark::Shared::Servers, Terremark::Shared::Tasks, Terremark::Shared::Vdcs, Vcloud::Collection
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
_load, aliases, attribute, attributes, identity, ignore_attributes, ignored_attributes
#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
#initialize(attributes = {}) ⇒ Collection
Returns a new instance of Collection.
51
52
53
|
# File 'lib/fog/collection.rb', line 51
def initialize(attributes = {})
merge_attributes(attributes)
end
|
Instance Attribute Details
#connection ⇒ Object
Returns the value of attribute connection.
38
39
40
|
# File 'lib/fog/collection.rb', line 38
def connection
@connection
end
|
Class Method Details
.model(new_model = nil) ⇒ Object
30
31
32
33
34
35
36
|
# File 'lib/fog/collection.rb', line 30
def self.model(new_model=nil)
if new_model == nil
@model
else
@model = new_model
end
end
|
Instance Method Details
#clear ⇒ Object
40
41
42
43
|
# File 'lib/fog/collection.rb', line 40
def clear
@loaded = true
super
end
|
#create(attributes = {}) ⇒ Object
45
46
47
48
49
|
# File 'lib/fog/collection.rb', line 45
def create(attributes = {})
object = new(attributes)
object.save
object
end
|
#inspect ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# File 'lib/fog/collection.rb', line 55
def inspect
Thread.current[:formatador] ||= Formatador.new
data = "#{Thread.current[:formatador].indentation}<#{self.class.name}\n"
Thread.current[:formatador].indent do
unless self.class.attributes.empty?
data << "#{Thread.current[:formatador].indentation}"
data << self.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
data << "\n"
end
data << "#{Thread.current[:formatador].indentation}["
unless self.empty?
data << "\n"
Thread.current[:formatador].indent do
data << self.map {|member| member.inspect}.join(",\n")
data << "\n"
end
data << Thread.current[:formatador].indentation
end
data << "]\n"
end
data << "#{Thread.current[:formatador].indentation}>"
data
end
|
#load(objects) ⇒ Object
79
80
81
82
83
84
85
|
# File 'lib/fog/collection.rb', line 79
def load(objects)
clear
for object in objects
self << new(object)
end
self
end
|
#model ⇒ Object
87
88
89
|
# File 'lib/fog/collection.rb', line 87
def model
self.class.instance_variable_get('@model')
end
|
#new(attributes = {}) ⇒ Object
91
92
93
94
95
96
97
98
|
# File 'lib/fog/collection.rb', line 91
def new(attributes = {})
model.new(
attributes.merge(
:collection => self,
:connection => connection
)
)
end
|
#reload ⇒ Object
100
101
102
103
104
|
# File 'lib/fog/collection.rb', line 100
def reload
clear
lazy_load
self
end
|
#table(attributes = nil) ⇒ Object
106
107
108
|
# File 'lib/fog/collection.rb', line 106
def table(attributes = nil)
Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
end
|
#to_json ⇒ Object
110
111
112
|
# File 'lib/fog/collection.rb', line 110
def to_json
self.map {|member| member}.to_json
end
|