class Fog::NFV::OpenStack::Real
Public Class Methods
new(options = {})
click to toggle source
# File lib/fog/openstack/nfv.rb, line 101 def initialize(options = {}) initialize_identity options @openstack_service_type = options[:openstack_service_type] || ['servicevm'] @openstack_service_name = options[:openstack_service_name] @connection_options = options[:connection_options] || {} authenticate unless @path.match(SUPPORTED_VERSIONS) @path = "/" + Fog::OpenStack.get_supported_version( SUPPORTED_VERSIONS, @openstack_management_uri, @auth_token, @connection_options ) end @persistent = options[:persistent] || false @connection = Fog::Core::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options) end
Public Instance Methods
create_vnf(options)
click to toggle source
# File lib/fog/openstack/requests/nfv/create_vnf.rb, line 5 def create_vnf(options) options_valid = [ :auth, :vnf, ] # 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 => "vnfs" ) end
create_vnfd(options)
click to toggle source
# File lib/fog/openstack/requests/nfv/create_vnfd.rb, line 5 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
delete_vnf(vnf_id)
click to toggle source
# File lib/fog/openstack/requests/nfv/delete_vnf.rb, line 5 def delete_vnf(vnf_id) request( :expects => 204, :method => "DELETE", :path => "vnfs/#{vnf_id}" ) end
delete_vnfd(vnfd_id)
click to toggle source
# File lib/fog/openstack/requests/nfv/delete_vnfd.rb, line 5 def delete_vnfd(vnfd_id) request( :expects => 204, :method => "DELETE", :path => "vnfds/#{vnfd_id}" ) end
get_vnf(vnf_id)
click to toggle source
# File lib/fog/openstack/requests/nfv/get_vnf.rb, line 5 def get_vnf(vnf_id) request( :expects => 200, :method => 'GET', :path => "vnfs/#{vnf_id}" ) end
get_vnfd(vnfd_id)
click to toggle source
# File lib/fog/openstack/requests/nfv/get_vnfd.rb, line 5 def get_vnfd(vnfd_id) request( :expects => 200, :method => 'GET', :path => "vnfds/#{vnfd_id}" ) end
list_vnfds(options = {})
click to toggle source
# File lib/fog/openstack/requests/nfv/list_vnfds.rb, line 5 def list_vnfds(options = {}) request( :expects => 200, :method => 'GET', :path => "vnfds", :query => options ) end
list_vnfs(options = {})
click to toggle source
# File lib/fog/openstack/requests/nfv/list_vnfs.rb, line 5 def list_vnfs(options = {}) request( :expects => 200, :method => 'GET', :path => "vnfs", :query => options ) end
request(params)
click to toggle source
# File lib/fog/openstack/nfv.rb, line 124 def request(params) response = @connection.request( params.merge( :headers => { 'Content-Type' => 'application/json', 'X-Auth-Token' => @auth_token }.merge!(params[:headers] || {}), :path => "#{@path}/#{params[:path]}" ) ) rescue Excon::Errors::Unauthorized => error if error.response.body != "Bad username or password" # token expiration @openstack_must_reauthenticate = true authenticate retry else # bad credentials raise error end rescue Excon::Errors::HTTPStatusError => error raise case error when Excon::Errors::NotFound Fog::NFV::OpenStack::NotFound.slurp(error) else error end else unless response.body.empty? response.body = Fog::JSON.decode(response.body) end response end
update_vnf(id, options)
click to toggle source
# File lib/fog/openstack/requests/nfv/update_vnf.rb, line 5 def update_vnf(id, options) options_valid = [ :auth, :vnf, ] # 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 => 200, :method => "PUT", :path => "vnfs/#{id}", ) end