Sha256: a708cad8b7e67d97b1210fd1227345936b7f84100a3d65f0dce8ad8641d8557f
Contents?: true
Size: 602 Bytes
Versions: 20
Compression:
Stored size: 602 Bytes
Contents
module Fog module OpenStack class SharedFileSystem 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
20 entries across 20 versions & 3 rubygems