You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,12 @@ The following methods call Veracode REST APIs and return JSON.
43
43
-`scantype`: Defaults to STATIC findings, but can be STATIC, DYNAMIC, MANUAL, SCA, or ALL (static, dynamic, manual).
44
44
-`annot`: Defaults to TRUE but can be FALSE
45
45
-`get_users()`: get a list of users for the organization.
46
+
-`get_user_self()`: get user information for the current user.
46
47
-`get_user(user_guid)`: get information for an individual user based on `user_guid`.
48
+
-`get_user_by_name(username)`: look up info for an individual user based on their user_name.
47
49
-`get_creds()`: get credentials information (API ID and expiration date) for the current user.
48
50
-`update_user(user_guid, roles)`: update the user identified by `user_guid` with the list of roles passed in `roles`. Because the Identity API does not support adding a single role, the list should be the entire list of existing roles for the user plus whatever new roles. See [veracode-user-bulk-role-assign](https://github.com/tjarrettveracode/veracode-user-bulk-role-assign) for an example.
51
+
-`disable_user(user_guid)`: set the `Active` flag the user identified by `user_guid` to `False`.
49
52
-`get_workspaces()`: get a list of SCA Agent workspaces for the organization.
50
53
-`get_workspace_by_name(name)`: get a list of SCA Agent workspaces whose name partially matches `name`.
51
54
-`create_workspace(name)`: create an SCA Agent workspace named `name`. Returns the GUID for the workspace.
Copy file name to clipboardExpand all lines: setup.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,19 +3,19 @@
3
3
setup(
4
4
name='veracode_api_py',
5
5
packages= ['veracode_api_py'],
6
-
version='0.9',
6
+
version='0.9.1',
7
7
license='MIT',
8
8
description='Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.',
0 commit comments