Sha256: 81d4809ed7c3f5c826508eb0ecae9068abbc06bdb1b8d76f0b225378df2c44e1
Contents?: true
Size: 606 Bytes
Versions: 13
Compression:
Stored size: 606 Bytes
Contents
require 'fog/ecloud/models/compute/server_configuration_option' module Fog module Compute class Ecloud class ServerConfigurationOptions < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::ServerConfigurationOption def all data = connection.get_server_configuration_options(href).body load(data) end def get(uri) if data = connection.get_server_configuration_option(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