Sha256: b19fd45130a1001d5f03213e8830f3bf89fd1cf1d3b03c5d73249aa2246625d6
Contents?: true
Size: 931 Bytes
Versions: 12
Compression:
Stored size: 931 Bytes
Contents
module Fog module Compute class RackspaceV2 class Real # Deletes virtual interface from server # @param [String] server_id The server id that contains the virtual interface # @param [String] interface_id The id of the virtual interface # @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404 # @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400 # @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500 # @raise [Fog::Compute::RackspaceV2::ServiceError] # @see http://docs.rackspace.com/servers/api/v2/cn-devguide/content/delete_virt_interface_api.html def delete_virtual_interface(server_id, interface_id) request( :expects => [200], :method => 'DELETE', :path => "/servers/#{server_id}/os-virtual-interfacesv2/#{interface_id}" ) end end end end end
Version data entries
12 entries across 12 versions & 3 rubygems