File: update_admin.py

package info (click to toggle)
python-duo-client 5.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 768 kB
  • sloc: python: 7,105; sh: 6; makefile: 4
file content (37 lines) | stat: -rw-r--r-- 1,371 bytes parent folder | download
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
#!/usr/bin/python
import pprint
import sys

import duo_client

argv_iter = iter(sys.argv[1:])
def get_next_arg(prompt):
    try:
        return next(argv_iter)
    except StopIteration:
        return input(prompt)
    
# Configuration and information about objects to create.
admin_api = duo_client.Admin(
    ikey=get_next_arg('Admin API integration key ("DI..."): '),
    skey=get_next_arg('integration secret key: '),
    host=get_next_arg('API hostname ("api-....duosecurity.com"): '),
)

ADMIN_ID = get_next_arg('Admin Id: ')
NAME = get_next_arg('Admin name: ') or None
PHONE = get_next_arg('Phone number (e.g. 2154567890): ') or None
PASSWORD_CHANGE_REQ = get_next_arg('password_change_required: ') or None
STATUS = get_next_arg('status: ') or None
ROLE = get_next_arg('Administrative Role(Optional): ') or None
SUBACCOUNT_ROLE = get_next_arg('Subaccount Role(Optional): ') or None

updated_admin = admin_api.update_admin(admin_id=ADMIN_ID, 
                                       name=NAME, 
                                       phone=PHONE, 
                                       password_change_required=PASSWORD_CHANGE_REQ, 
                                       status=STATUS, 
                                       role=ROLE, 
                                       subaccount_role=SUBACCOUNT_ROLE)
print('Updated Admin: ')
pprint.pprint(updated_admin)