Sha256: 730f0f00d6ec35f4e11fdf076a6b56a3914dbde4ed5c0aa0dce7bfcfe85657f9
Contents?: true
Size: 900 Bytes
Versions: 14
Compression:
Stored size: 900 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 end end end
Version data entries
14 entries across 14 versions & 4 rubygems