desktopAppProcessConfig Data Type

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

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs wrapped by description
allow_unlisted_process_override boolean element 0/1   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.

allow_unlisted_processes boolean element 0/1   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

name string element 0/unbounded allowed_processes 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.

name string element 0/unbounded blocked_processes 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 element 0/1   The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
link link element 0/unbounded links Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

<desktop_process_config>
  <allow_unlisted_processes>...</allow_unlisted_processes>
  <allow_unlisted_process_override>...</allow_unlisted_process_override>
  <allowed_processes>
    <name>...</name>
  </allowed_processes>
  <blocked_processes>
    <name>...</name>
  </blocked_processes>
  <href>...</href>
  <links>
    <link>
      <href>...</href>
      <rel>...</rel>
    </link>
  </links>
</desktop_process_config>