# coding: utf-8 # # Author:: Alessio Rocchi () # © Copyright ArubaCloud. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # require 'fog/core/collection' require 'fog/arubacloud/compute/models/disk' module Fog module ArubaCloud class Compute class Disks < Fog::Collection model Fog::ArubaCloud::Compute::Disk # Dummy Method, only to maintain fog structure, it returns nothings. # @return [Nil] def all end # Another dummy method, it returns nothings. # @return [Nil] def get end end #Disks end # Compute end # ArubaCloud end #Fog