1 2 3 4 5 6 7 8 | {
"repositories" : [
{
"id" : <number> }...
],
"plugin" : {
"id" : <number> },
...
|
hostType for Universal Repository type
1 2 3 | ...
"hostType" : <string> "all" | "asset" | "ip" | "hostUUID" ,
...
|
hostType for Agent Repository type
1 2 3 | ...
"hostType" : <string> "all" | "asset" | "uuid" ,
...
|
hostType for IPv4 or IPv6 Repository type
1 2 3 | ...
"hostType" : <string> "all" | "asset" | "ip" ,
...
|
1 2 3 4 5 6 | "port" : <number:1..65535> | <string> "any" DEFAULT "any" ,
"protocol" : <number:1..> | <string> "any" DEFAULT "any" ,
"comments" : <string> DEFAULT "" ,
"expires" : <number> (integer >= -1) DEFAULT -1 (not set)
...
}
|
hostType "asset"
The "hostValue" parameter should contain a usable, accessible Asset ID.
1 2 3 4 | ...
"hostValue" : {
"id" : <number> }
...
|
hostType "ip"
The "hostValue" parameter should contain a newline-separated and/or comma-separated list of IPs.
1 2 | ...
"hostValue" : <string>...
|
hostType "uuid"
The "hostValue" parameter should contain a newline-separated and/or comma-separated list of UUIDs.
1 2 | ...
"hostValue" : <string>...
|
hostType "hostUUID"
The "hostValue" parameter should contain a newline-separated and/or comma-separated list of UUIDs.
1 2 | ...
"hostValue" : <string>...
|