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: docs/analytics.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ The following methods call Veracode REST APIs and return JSON.
18
18
-`rawjson`: optional, defaults to False. Returns full response if True, the GUID of the request if false
19
19
-`deletion_start_date`: required for `deletedscans` report type, beginning of date range for deleted scans.
20
20
-`deletion_end_date`: optional, end of date range for deleted scans.
21
+
-`sandbox_ids`: optional, array of sandbox IDs (integers) for which to return results
21
22
22
23
-`Analytics().get(guid, report_type(findings))`: check the status of the report request and return the report contents when ready. Note that this method returns a tuple of `status` (string) and `results` (list); when `status` is `COMPLETED`, the `results` list will populate with results. Also, you need to specify the type of data expected by the GUID with `report_type`; this defaults to `findings`.
Copy file name to clipboardExpand all lines: docs/api.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
@@ -39,6 +39,9 @@ As an alternative to importing individual objects into your library, you can acc
39
39
-`policy_sandbox`: optional, 'Policy' or 'Sandbox'
40
40
-`application_id`: optional, application ID for which to return results
41
41
-`rawjson`: optional, defaults to False. Returns full response if True, the GUID of the request if false
42
+
-`deletion_start_date`: required for `deletedscans` report type, beginning of date range for deleted scans.
43
+
-`deletion_end_date`: optional, end of date range for deleted scans.
44
+
-`sandbox_ids`: optional, array of sandbox IDs (integers) for which to return results
42
45
43
46
-`get_analytics_report(guid)`: check the status of the report request and return the report contents when ready. Note that this method returns a tuple of `status` (string) and `results` (list); when `status` is `COMPLETED`, the `results` list will populate with results.
description = 'Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.'
Copy file name to clipboardExpand all lines: setup.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,15 @@
7
7
setup(
8
8
name='veracode_api_py',
9
9
packages= ['veracode_api_py'],
10
-
version='0.9.58',
10
+
version='0.9.59',
11
11
license='MIT',
12
12
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