Method: Fog::Compute::Ecloud::Rows#get

Defined in:
lib/fog/ecloud/models/compute/rows.rb

#get(uri) ⇒ Object


17
18
19
20
21
22
23
# File 'lib/fog/ecloud/models/compute/rows.rb', line 17

def get(uri)
  if data = connection.get_row(uri)
    new(data.body)
  end
rescue Fog::Errors::NotFound
  nil
end