Configuration of processes that are allowed to trigger on-demand file downloads on the desktop.
name | data type | description |
---|---|---|
allow_unlisted_processes | boolean | Defines whether an unlisted process can trigger on-demand downloads.
An unlisted process is any process that is not included in either the |
allow_unlisted_process_override | boolean | Defines whether a user can override the allow_unlisted_processes setting. Only applies if
allow_unlisted_processes is false.
When this is true, unlisted processes are blocked until the desktop user indicates that the process should be allowed. |
allowed_processes | array of string | A list of process names that are allowed to trigger on-demand downloads on the desktop.
Only applicable when |
blocked_processes | array of string | A list of process names that are not allowed to trigger on-demand downloads on the desktop.
Only applicable when |
Properties inherited from BaseRestObject |
||
href | string | The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest). |
links | array of Link | Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs) |
Example
{ "allow_unlisted_processes" : true, "allow_unlisted_process_override" : true, "allowed_processes" : [ "...", "..." ], "blocked_processes" : [ "...", "..." ], "href" : "...", "links" : [ { "href" : "...", "rel" : "..." }, { "href" : "...", "rel" : "..." } ] }