Sha256: 6b4fb92f9754c10542097940850d82f26c6b752fd77291bf9a965a5faa3252e1
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
module Fog module SharedFileSystem class HuaweiCloud class Real def create_share_network(options = {}) data = {} vanilla_options = [ :name, :description, :neutron_net_id, :neutron_subnet_id, :nova_net_id ] vanilla_options.select { |o| options[o] }.each do |key| data[key] = options[key] end request( :body => Fog::JSON.encode('share_network' => data), :expects => 200, :method => 'POST', :path => 'share-networks' ) end end class Mock def create_share_network(options = {}) # stringify keys options = Hash[options.map { |k, v| [k.to_s, v] }] response = Excon::Response.new response.status = 200 share_net = data[:share_networks_detail].first.dup response.body = {'share_networks' => share_net.merge(options)} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems