Sha256: aea7cad2de4fdb4c5b901703cf3ee0ae34496ab1a53d6b5c4e32dc08f3679152
Contents?: true
Size: 510 Bytes
Versions: 13
Compression:
Stored size: 510 Bytes
Contents
require 'fog/ecloud/models/compute/rnat' module Fog module Compute class Ecloud class Rnats < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::Rnat def all data = connection.get_rnats(href).body[:Rnats][:Rnat] load(data) end def get(uri) if data = connection.get_rnat(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
13 entries across 13 versions & 7 rubygems