vrli_ad¶
VCF Operations for Logs (vRLI) — Active Directory integration.
vRLI exposes AD configuration at /api/v2/ad. Verbs discovered
live:
GET /api/v2/ad -> {"enableAD": bool, ...}
POST /api/v2/ad body (all required):
{
"enableAD": bool,
"domain": "corp.example.com",
"username": "svc-vrli",
"password": "...",
"connType": "STANDARD" | "GLOBAL_CAT" | "CUSTOM"
}
PUT /api/v2/ad -> 404 "Handler not found"
PATCH /api/v2/ad -> 404 "Handler not found"
The 400 response body enumerates the exact required fields — this is authoritative for the schema.
- saltext.vcf.clients.vrli_ad.get(opts, profile=None)[source]¶
Return the current AD configuration.
On a fresh appliance this is
{"enableAD": false}; once configured the returned dict includesdomain,username,connType(password is never returned).