]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/compute/requests/v2/public/list_images.rb
Revert "add aimonb/aviator to 3rdparty"
[dsa-puppet.git] / 3rdparty / modules / aviator / lib / puppet / feature / aviator / openstack / compute / requests / v2 / public / list_images.rb
diff --git a/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/compute/requests/v2/public/list_images.rb b/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/compute/requests/v2/public/list_images.rb
deleted file mode 100644 (file)
index b282aec..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-module Aviator
-  
-  define_request :list_images, :inherit => [:openstack, :common, :v2, :public, :base] do
-
-    meta :service, :compute
-
-    link 'documentation',
-         'http://docs.openstack.org/api/openstack-compute/2/content/List_Images-d1e4435.html'
-
-    param :details,        :required => false
-    param :server,         :required => false
-    param :name,           :required => false
-    param :status,         :required => false
-    param 'changes-since', :required => false, :alias => :changes_since
-    param :marker,         :required => false
-    param :limit,          :required => false
-    param :type,           :required => false
-
-
-    def headers
-      super
-    end
-
-
-    def http_method
-      :get
-    end
-
-
-    def url
-      str  = "#{ base_url }/images"
-      str += "/detail" if params[:details]
-      str += params_to_querystring(optional_params + required_params - [:details])
-    end
-
-  end
-
-end
\ No newline at end of file