Sha256: 27538dacfb80a0bc5d1a811e096c812f68cf9662329697cd7454e6246d821b1c
Contents?: true
Size: 795 Bytes
Versions: 20
Compression:
Stored size: 795 Bytes
Contents
module Fog module OpenStack class NFV class Real def create_vnfd(options) options_valid = [ :auth, :vnfd, ] # Filter only allowed creation attributes data = options.select do |key, _| options_valid.include?(key.to_sym) || options_valid.include?(key.to_s) end request( :body => Fog::JSON.encode(data), :expects => 201, :method => "POST", :path => "vnfds" ) end end class Mock def create_vnfd(_) response = Excon::Response.new response.status = 201 response.body = {"vnfd" => data[:vnfds].first} response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems