1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
"""
Duo Security Accounts API reference client implementation.
<http://www.duosecurity.com/docs/accountsapi>
"""
from . import client
class Accounts(client.Client):
child_map = {}
def get_child_accounts(self):
"""
Return a list of all child accounts of the integration's account.
"""
params = {}
response = self.json_api_call('POST',
'/accounts/v1/account/list',
params)
if response and isinstance(response, list):
for account in response:
account_id = account.get('account_id', None)
api_hostname = account.get('api_hostname', None)
if account_id and api_hostname:
Accounts.child_map[account_id] = api_hostname
return response
def create_account(self, name):
"""
Create a new child account of the integration's account.
"""
params = {
'name': name,
}
response = self.json_api_call('POST',
'/accounts/v1/account/create',
params)
return response
def delete_account(self, account_id):
"""
Delete a child account of the integration's account.
"""
params = {
'account_id': account_id,
}
response = self.json_api_call('POST',
'/accounts/v1/account/delete',
params)
return response
|