data – property properties
Name | Value | Count | |
---|---|---|---|
group | path | 0/1 | Group to which property belongs. Ignored when defined within a job. |
name | word | 1 | Property name. |
value | string | 0/1 | Property value. |
secret | boolean | 0/1 | Property value is secret. Default = false . |
type | ENVIRONMENT HEADER PARAMETER RESOURCE TEMPLATE VARIABLE UNSET |
0/1 | Property type. Defaults = ENVIRONMENT for COMMAND jobs, PARAMETER for URL jobs, and VARIABLE for all other job types & group properties. |
if the group property value starts with …, this will be replaced by import command root parameter.
Examples
Typical property
{ "name": "hello", "value": "world" }
name: hello value: world
Group property
{ "group": "/", "name": "PATH", "value": "/bin:/usr/bin:/sbin:/usr/sbin", "type": ENVIRONMENT }
group: / name: PATH value: /bin:/usr/bin:/sbin:/usr/sbin type: UNSET
Unset an inherited property
{ "group": "/guest", "name": "PATH" "type": "UNSET" }
group: /guest name: PATH type: UNSET