Sha256: e3fc03f39ccdaa15d5143c9f78925ecfa71db808a2f3bc349ab6ba89c17c7be8
Contents?: true
Size: 604 Bytes
Versions: 4
Compression:
Stored size: 604 Bytes
Contents
module Fog module SharedFileSystem class HuaweiCloud class Real def list_share_networks_detail(options = {}) request( :expects => 200, :method => 'GET', :path => 'share-networks/detail', :query => options ) end end class Mock def list_share_networks_detail(_options = {}) response = Excon::Response.new response.status = 200 response.body = {'share_networks' => data[:share_networks_detail]} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems