DesktopAppProcessConfig Data Type

Configuration of processes that are allowed to trigger on-demand file downloads on the desktop.

Properties
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 allowed_process or blocked_process lists

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 allow_unlisted_processes is false or allow_unlisted_process_override is true.

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 allow_unlisted_processes is true.

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" : "..."
  } ]
}