Sha256: 1abdb6951bc1c44bb7104b0ef5d8d4e1accd3cba57552ba94324a556b8fb9eb2
Contents?: true
Size: 1.03 KB
Versions: 27
Compression:
Stored size: 1.03 KB
Contents
module Fog module Terremark module Shared module 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::Shared::GetTasksList.new, :path => "tasksList/#{tasks_list_id}" ) end end module Mock def get_tasks_list(tasks_list_id) raise MockNotImplemented.new("Contributions welcome!") end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems