Sha256: 58c0bcd7141175f1dbc01941c3858d8cc6621cd7ce8e0a6545586c6da323b68b
Contents?: true
Size: 508 Bytes
Versions: 13
Compression:
Stored size: 508 Bytes
Contents
require 'fog/ecloud/models/compute/api_key' module Fog module Compute class Ecloud class ApiKeys < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::ApiKey def all data = connection.get_api_keys(href).body load(data) end def get(uri) if data = connection.get_api_key(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