class Egi::Fedcloud::Vmhound::Connectors::DummyConnector

Public Instance Methods

active_instances() click to toggle source

Retrieves running instances from the underlying Dummy. Only currently running instances will be included.

@return [Array<Hash>] List of instances, each represented as a hash

# File lib/egi/fedcloud/vmhound/connectors/dummy_connector.rb, line 18
def active_instances
  Egi::Fedcloud::Vmhound::Log.info "[#{self.class}] Retrieving running instances"
  []
end
instances() click to toggle source

Retrieves active instances from the underlying Dummy. Including instances in transitional or suspended states. Terminated instances will not be included.

@return [Array<Hash>] List of instances, each represented as a hash

# File lib/egi/fedcloud/vmhound/connectors/dummy_connector.rb, line 9
def instances
  Egi::Fedcloud::Vmhound::Log.info "[#{self.class}] Retrieving active instances"
  []
end