Skip to content

Commit

Permalink
Merge branch 'fidelity-contributions-dx_ctl_user_apiUser'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Przepiorowski committed Apr 25, 2024
2 parents 404f70e + 27a5aa6 commit cfcfdc1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
19 changes: 10 additions & 9 deletions bin/dx_ctl_users.pl
Original file line number Diff line number Diff line change
Expand Up @@ -515,15 +515,16 @@ =head1 EXAMPLES
Example csv user file:
# operation,username,first_name,last_name,email address,work_phone,home_phone,cell_phone,type(NATIVE|LDAP),principal_credential,password,admin_priv,js_user
# comment - create a new user with Delphix authentication
C,testuser,Test,User,[email protected],,555-222-222,,NATIVE,,password,Y
# comment - create a new user with LDAP
C,testuser2,Test,User2,[email protected],555-111-111,555-222-222,555-333- 333,LDAP,"[email protected]",,Y
# update existing user - non-empty values will be updated, password can't be modified in this version
U,user11,FirstName,LastName,[email protected],,,,,,, U,testuser,Test,User,[email protected],,555-222-333,,NATIVE,,password,Y
# delete user
D,testuser2,,,,,,,,,,
#operation,username,first_name,last_name,email address,work_phone,home_phone,cell_phone,type(NATIVE|LDAP),principal_credential,password,admin_priv,js_user,timeout,apiUser
# comment - create a new user with Delphix authentication
C,testuser,Test,User,[email protected],,555-222-222,,NATIVE,,password,Y,N,60,N
# comment - create a new user with LDAP
C,testuser2,Test,User2,[email protected],555-111-111,555-222-222,555-333-333,LDAP,"[email protected]",,Y,N,60,N
# update existing user - non-empty values will be updated, password can't be modified in this version
U,user11,FirstName,LastName,[email protected],,,,,,,
U,testuser,Test,User,[email protected],,555-222-333,,NATIVE,,password,,Y
# delete user
D,testuser2,,,,,,,,,,,
Example csv profile file:
Expand Down
9 changes: 5 additions & 4 deletions bin/dxusers.csv.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#operation,username,first_name,last_name,email address,work_phone,home_phone,cell_phone,type(NATIVE|LDAP),principal_credential,password,admin_priv,js_user,timeout
#operation,username,first_name,last_name,email address,work_phone,home_phone,cell_phone,type(NATIVE|LDAP),principal_credential,password,admin_priv,js_user,timeout,apiUser
# comment - create a new user with Delphix authentication
C,testuser,Test,User,[email protected],,555-222-222,,NATIVE,,password,Y,60
C,testuser,Test,User,[email protected],,555-222-222,,NATIVE,,password,Y,N,60,N
# comment - create a new user with LDAP
C,testuser2,Test,User2,[email protected],555-111-111,555-222-222,555-333-333,LDAP,"[email protected]",,Y
C,testuser2,Test,User2,[email protected],555-111-111,555-222-222,555-333-333,LDAP,"[email protected]",,Y,N,60,N
# update existing user - non-empty values will be updated, password can't be modified in this version
U,user11,FirstName,LastName,[email protected],,,,,,,
U,testuser,Test,User,[email protected],,555-222-333,,NATIVE,,password,,Y
# delete user
D,testuser2,,,,,,,,,,
D,testuser2,,,,,,,,,,,

0 comments on commit cfcfdc1

Please sign in to comment.