From b6c30e7985308b3daa0c0b9785bf43a1fcb47f2b Mon Sep 17 00:00:00 2001 From: Eric Chou Date: Fri, 1 Jul 2016 17:59:49 -0700 Subject: [PATCH] Added axapi_authenticate_v3 and axapi_call_v3 for new AXAPIv3 that is not backward compatible --- lib/ansible/module_utils/a10.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/module_utils/a10.py b/lib/ansible/module_utils/a10.py index e9eb7f10e6c..737919b4638 100644 --- a/lib/ansible/module_utils/a10.py +++ b/lib/ansible/module_utils/a10.py @@ -97,15 +97,15 @@ def axapi_authenticate_v3(module, base_url, username, password): signature = result['authresponse']['signature'] return signature -def axapi_call_v3(module, url, post=None, signature=''): +def axapi_call_v3(module, url, method=None, body=None, signature=None): ''' Returns a datastructure based on the result of the API call ''' if signature: - headers = {'content-type': 'application/json', 'signature': signature} + headers = {'content-type': 'application/json', 'Authorization': 'A10 %s' % signature} else: headers = {'content-type': 'application/json'} - rsp, info = fetch_url(module, url, method='POST', data=json.dumps(post), headers=headers) + rsp, info = fetch_url(module, url, method=method, data=json.dumps(body), headers=headers) if not rsp or info['status'] >= 400: module.fail_json(msg="failed to connect (status code %s), error was %s" % (info['status'], info.get('msg', 'no error given'))) try: