Sha256: 8f23332b9380d4d05383e98c7723d9b553c32bf273225c8d863a3c5dd9732df1
Contents?: true
Size: 958 Bytes
Versions: 1
Compression:
Stored size: 958 Bytes
Contents
module Fog module Terremark class Real # Get list of tasks # # ==== Parameters # * tasks_list_id<~Integer> - Id of tasks lists to view # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'CatalogItems'<~Array> # * 'href'<~String> - linke to item # * 'name'<~String> - name of item # * 'type'<~String> - type of item # * 'description'<~String> - Description of catalog # * 'name'<~String> - Name of catalog def get_tasks_list(tasks_list_id) request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Terremark::GetTasksList.new, :path => "tasksList/#{tasks_list_id}" ) end end class Mock def get_tasks_list(tasks_list_id) raise MockNotImplemented.new("Contributions welcome!") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-0.0.73 | lib/fog/terremark/requests/get_tasks_list.rb |