mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
339 B
Ruby
20 lines
339 B
Ruby
module Fog
|
|
module Vcloud
|
|
module Terremark
|
|
module Ecloud
|
|
|
|
module Real
|
|
basic_request :delete_internet_service, 200, 'DELETE', {}, ""
|
|
end
|
|
|
|
module Mock
|
|
|
|
def delete_internet_service(service_uri)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|