Sha256: f19b7855ed668810fd9dbc5c330f2aa2b687c5a42c8cfd6858756060af270cc8
Contents?: true
Size: 771 Bytes
Versions: 44
Compression:
Stored size: 771 Bytes
Contents
module Fog module Bluebox class Compute class Real # Get list of OS templates # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~String> - UUID of the image # * 'description'<~String> - Description of the image # * 'public'<~Boolean> - Public / Private image # * 'created'<~Datetime> - Timestamp of when the image was created def get_templates request( :expects => 200, :method => 'GET', :path => 'api/block_templates.json' ) end end class Mock def get_templates Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems