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/api.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,8 +84,9 @@ As an alternative to importing individual objects into your library, you can acc
84
84
-`get_apps(policy_check_after(opt))` : get a list of Veracode applications (JSON format). If provided, returns only applications that have a policy check date on or after `policy_check_after` (format is `yyyy-mm-dd`).
85
85
-`get_app(guid(opt),legacy_id(opt))`: get information for a single Veracode application using either the `guid` or the `legacy_id` (integer).
86
86
-`get_app_by_name(name)`: get list of applications whose names contain the search string `name`.
Copy file name to clipboardExpand all lines: docs/applications.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,9 @@ The following methods call Veracode REST APIs and return JSON.
7
7
-`Applications().get_all(policy_check_after(opt))` : get a list of Veracode applications (JSON format). If provided, returns only applications that have a policy check date on or after `policy_check_after` (format is `yyyy-mm-dd`).
8
8
-`Applications().get(guid(opt),legacy_id(opt))`: get information for a single Veracode application using either the `guid` or the `legacy_id` (integer).
9
9
-`Applications().get_by_name(name)`: get list of applications whose names contain the search string `name`.
-`business_criticality`: one of "VERY HIGH", "HIGH", "MEDIUM", "LOW", "VERY LOW"
12
+
-`description`: extended description of the application.
12
13
-`business_unit`: the GUID of the business unit to which the application should be assigned
13
14
-`teams`: a list of the GUIDs of the teams to which the application should be assigned
14
15
-`policy_guid`: the GUID of the policy to set for this application.
@@ -17,7 +18,7 @@ The following methods call Veracode REST APIs and return JSON.
17
18
-`bus_owner_email`: the email address of the business owner of the application
18
19
-`git_repo_url`: the URL to the git repository containing the code for the application
19
20
-`custom_kms_alias`: the alias for the Customer Managed Encryption Key (CMK), which will be used to encrypt/decrypt customer provided data. Note: The Customer Managed Encrytion Key feature must be activated and configured for your organization before attempting to set this value.
20
-
-`Applications().update(guid, app_name, business_criticality, business_unit(opt), teams(opt), policy_guid(opt), custom_fields(opt array), bus_owner_name(opt), bus_owner_email(opt),git_repo_url(opt))`: update an application profile. Note that partial updates are NOT supported, so you need to provide all values including those that aren't changing.
21
+
-`Applications().update(guid, app_name, business_criticality, description(opt),business_unit(opt), teams(opt), policy_guid(opt), custom_fields(opt array), bus_owner_name(opt), bus_owner_email(opt),git_repo_url(opt))`: update an application profile. Note that partial updates are NOT supported, so you need to provide all values including those that aren't changing.
21
22
-`Applications().delete(guid)`: delete the application identified by `guid`. This is not a reversible action.
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.57',
10
+
version='0.9.58',
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