summaryrefslogtreecommitdiff
path: root/boto/iam
diff options
context:
space:
mode:
authorMitch Garnaat <mitch@cloudright.com>2011-01-07 21:58:56 -0500
committerMitch Garnaat <mitch@cloudright.com>2011-01-07 21:58:56 -0500
commit25c98a7eff5123905cc7c4694968c5f60633ce2a (patch)
tree434f30114ae0913af24f797b415702e63a12d6a1 /boto/iam
parent181b7337530563bf2d14b50b66f33d7da7e7e986 (diff)
downloadboto-25c98a7eff5123905cc7c4694968c5f60633ce2a.tar.gz
Lots of small changes to accomodate plug-in authentication mechanism. Still on branch for now.
Diffstat (limited to 'boto/iam')
-rw-r--r--boto/iam/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/boto/iam/__init__.py b/boto/iam/__init__.py
index 5de79e1e..2195ef80 100644
--- a/boto/iam/__init__.py
+++ b/boto/iam/__init__.py
@@ -28,7 +28,6 @@ from boto.connection import AWSQueryConnection
class IAMConnection(AWSQueryConnection):
APIVersion = '2010-05-08'
- SignatureVersion = '2'
def __init__(self, aws_access_key_id=None, aws_secret_access_key=None,
is_secure=True, port=None, proxy=None, proxy_port=None,
@@ -38,6 +37,9 @@ class IAMConnection(AWSQueryConnection):
is_secure, port, proxy, proxy_port, proxy_user, proxy_pass,
host, debug, https_connection_factory, path)
+ def _required_auth_capability(self):
+ return ['iam']
+
def get_response(self, action, params, path='/', parent=None,
verb='GET', list_marker='Set'):
"""