Sha256: 348c1d73d237ddc8d839173d4aaf99348281a4a612eaa71515bb95f71e0a405b
Contents?: true
Size: 1023 Bytes
Versions: 82
Compression:
Stored size: 1023 Bytes
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) Fog::Mock.not_implemented end end end end end
Version data entries
82 entries across 82 versions & 4 rubygems