Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / aviator / lib / puppet / feature / aviator / openstack / compute / requests / v2 / public / list_addresses.rb
diff --git a/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/compute/requests/v2/public/list_addresses.rb b/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/compute/requests/v2/public/list_addresses.rb
deleted file mode 100644 (file)
index 2c6fe60..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-module Aviator
-
-  define_request :list_addresses, :inherit => [:openstack, :common, :v2, :public, :base] do
-
-    meta :service, :compute
-
-    link 'documentation',
-         'http://docs.openstack.org/api/openstack-compute/2/content/List_Addresses-d1e3014.html'
-
-    link 'documentation',
-         'http://docs.openstack.org/api/openstack-compute/2/content/List_Addresses_by_Network-d1e3118.html'
-
-
-    param :id,        :required => true
-    param :networkID, :required => false, :alias => :network_id
-
-
-    def headers
-      super
-    end
-
-
-    def http_method
-      :get
-    end
-
-
-    def url
-      url  = "#{ base_url }/servers/#{ params[:id] }/ips"
-      url += "/#{ params[:networkID] }" if params[:networkID]
-      url
-    end
-
-  end
-
-end