lib/fog/arubacloud/compute/models/snapshots.rb in fog-arubacloud-0.0.5 vs lib/fog/arubacloud/compute/models/snapshots.rb in fog-arubacloud-0.0.6

- old
+ new

@@ -1,5 +1,6 @@ +# coding: utf-8 # # Author:: Dangleterre Michaël # © Copyright ArubaCloud. # # LICENSE: MIT (http://opensource.org/licenses/MIT) @@ -11,9 +12,19 @@ module Fog module ArubaCloud class Compute class Snapshots < Fog::Collection model Fog::ArubaCloud::Compute::Snapshot + # Returns list of Ip Addresses + # @return [Fog::ArubaCloud::Compute::Ips] + # @raise [Fog::ArubaCloud::Errors::NotFound] + def all + # TODO: Implement single item retrieve + end + # Returns a single snapshot object + def get + # TODO: Implement single item retrieve + end end end end -end \ No newline at end of file +end