You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/05/05 01:01:27 UTC

svn commit: r941083 - /incubator/libcloud/trunk/libcloud/drivers/ec2.py

Author: pquerna
Date: Tue May  4 23:01:27 2010
New Revision: 941083

URL: http://svn.apache.org/viewvc?rev=941083&view=rev
Log:
Add warning about api extensions

Modified:
    incubator/libcloud/trunk/libcloud/drivers/ec2.py

Modified: incubator/libcloud/trunk/libcloud/drivers/ec2.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/ec2.py?rev=941083&r1=941082&r2=941083&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/ec2.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/ec2.py Tue May  4 23:01:27 2010
@@ -320,6 +320,8 @@ class EC2NodeDriver(NodeDriver):
     def ex_create_security_group(self, name, description):
         """Creates a new Security Group
 
+        @warning This is a non-standard extension API, and only works for EC2.
+
         @type name: C{str}
         @param name: The name of the security group to Create. This must be unique.
 
@@ -334,6 +336,8 @@ class EC2NodeDriver(NodeDriver):
     def ex_authorize_security_group_permissive(self, name):
         """Edit a Security Group to allow all traffic.
 
+        @warning This is a non-standard extension API, and only works for EC2.
+
         @type name: C{str}
         @param name: The name of the security group to edit
         """