Class: Fog::Ecloud::MockDataClasses::MockVdc
- Inherits:
-
Base
- Object
- Hash
- Base
- Fog::Ecloud::MockDataClasses::MockVdc
show all
- Defined in:
- lib/fog/ecloud/compute.rb
Instance Method Summary
collapse
Methods inherited from Base
#_parent, base_url, #base_url, base_url=, #first, #href, #initialize, #inspect, #last
Instance Method Details
#catalog ⇒ Object
280
281
282
|
# File 'lib/fog/ecloud/compute.rb', line 280
def catalog
@catalog ||= MockCatalog.new({}, self)
end
|
#cpu_allocated ⇒ Object
272
273
274
|
# File 'lib/fog/ecloud/compute.rb', line 272
def cpu_allocated
self[:cpu_allocated] || 10000
end
|
#firewall_acls ⇒ Object
305
306
307
|
# File 'lib/fog/ecloud/compute.rb', line 305
def firewall_acls
@firewall_acls ||= MockFirewallAcls.new({}, self)
end
|
#internet_service_collection ⇒ Object
301
302
303
|
# File 'lib/fog/ecloud/compute.rb', line 301
def internet_service_collection
@internet_service_collection ||= MockVdcInternetServices.new({}, self)
end
|
#memory_allocated ⇒ Object
276
277
278
|
# File 'lib/fog/ecloud/compute.rb', line 276
def memory_allocated
self[:memory_allocated] || 20480
end
|
#name ⇒ Object
260
261
262
|
# File 'lib/fog/ecloud/compute.rb', line 260
def name
self[:name]
end
|
#networks ⇒ Object
284
285
286
|
# File 'lib/fog/ecloud/compute.rb', line 284
def networks
@networks ||= []
end
|
#public_ip_collection ⇒ Object
for TM eCloud, should probably be subclassed
297
298
299
|
# File 'lib/fog/ecloud/compute.rb', line 297
def public_ip_collection
@public_ip_collection ||= MockPublicIps.new({}, self)
end
|
#storage_allocated ⇒ Object
264
265
266
|
# File 'lib/fog/ecloud/compute.rb', line 264
def storage_allocated
self[:storage_allocated] || 200
end
|
#storage_used ⇒ Object
268
269
270
|
# File 'lib/fog/ecloud/compute.rb', line 268
def storage_used
self[:storage_used] || 105
end
|
#task_list ⇒ Object
292
293
294
|
# File 'lib/fog/ecloud/compute.rb', line 292
def task_list
@task_list ||= MockTaskList.new({}, self)
end
|
#virtual_machines ⇒ Object
288
289
290
|
# File 'lib/fog/ecloud/compute.rb', line 288
def virtual_machines
@virtual_machines ||= []
end
|