]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/identity/requests/v2/public/list_tenants.rb
Revert "add aimonb/aviator to 3rdparty"
[dsa-puppet.git] / 3rdparty / modules / aviator / lib / puppet / feature / aviator / openstack / identity / requests / v2 / public / list_tenants.rb
diff --git a/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/identity/requests/v2/public/list_tenants.rb b/3rdparty/modules/aviator/lib/puppet/feature/aviator/openstack/identity/requests/v2/public/list_tenants.rb
deleted file mode 100644 (file)
index 094032a..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-module Aviator
-  
-  define_request :list_tenants, :inherit => [:openstack, :common, :v2, :public, :base] do
-
-    meta :service, :identity
-  
-    link 'documentation',
-         'http://docs.openstack.org/api/openstack-identity-service/2.0/content/GET_listTenants_v2.0_tokens_tenants_.html'
-
-    link 'documentation bug',
-         'https://bugs.launchpad.net/keystone/+bug/1218601'
-
-
-    param :marker, :required => false
-    param :limit,  :required => false
-
-
-    def url
-      str = "#{ base_url }/tenants"
-      str += params_to_querystring(optional_params + required_params)
-    end
-
-  
-    def headers
-      super
-    end
-  
-  
-    def http_method
-      :get
-    end
-
-  end
-  
-end