summaryrefslogtreecommitdiff
path: root/boto/iam
diff options
context:
space:
mode:
authorAndrew Miller <info@akmiller.co.uk>2014-06-19 14:23:59 +0100
committerAndrew Miller <info@akmiller.co.uk>2014-06-19 14:23:59 +0100
commit71c9b1f41da72523b13bf949b02641d9e31e68fa (patch)
tree37dad362126556ab06b17f611e3fbdfe28d2661b /boto/iam
parent75dd18f9a54554162af214dc71c12d4b26d2f478 (diff)
downloadboto-71c9b1f41da72523b13bf949b02641d9e31e68fa.tar.gz
Correct list_saml_providers to return all items
Added list_marker of SAMLProviderList so that all Providers are returned instead of just one
Diffstat (limited to 'boto/iam')
-rw-r--r--boto/iam/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/iam/connection.py b/boto/iam/connection.py
index c6ee3007..0295ab70 100644
--- a/boto/iam/connection.py
+++ b/boto/iam/connection.py
@@ -1440,7 +1440,7 @@ class IAMConnection(AWSQueryConnection):
Lists the SAML providers in the account.
This operation requires `Signature Version 4`_.
"""
- return self.get_response('ListSAMLProviders', {})
+ return self.get_response('ListSAMLProviders', {}, list_marker='SAMLProviderList')
def get_saml_provider(self, saml_provider_arn):
"""