setSystemProperty

Set a system property
System properties behave like global variables for the server.

Format

udclient [global-args...] [global-flags...]
  setSystemProperty [parameters]

Parameters

Table 1. Request parameters
Parameter Type Required Description
name string true Name of the property
isSecure boolean false Whether the property is secure; the default is the current state of the property, or false if the property is not yet specified
value string false Value of the property

Example

udclient -username admin -password admin 
  -weburl https://myserver.example.com:8443
  setSystemProperty
  -name "System property 1"
  -value value001

Example response

{
  "id": "f3bec2ee-3f3e-461f-b5b0-e844efafbdbe",
  "name": "System property 1",
  "value": "value001",
  "secure": false
}

Related REST command: Set a system property.


Feedback