Sha256: b5ac0d2b31e88ea01951e35f0956af7aa2d0dd94f6d84f6cd82fbbc5e8385401
Contents?: true
Size: 501 Bytes
Versions: 15
Compression:
Stored size: 501 Bytes
Contents
require 'fog/core/collection' require 'fog/storm_on_demand/models/compute/config' module Fog module Compute class StormOnDemand class Configs < Fog::Collection model Fog::Compute::StormOnDemand::Config def all(options={}) data = service.list_configs(options).body['items'] load(data) end def get(config_id) data = service.get_config_details(:id => config_id).body new(data) end end end end end
Version data entries
15 entries across 15 versions & 4 rubygems