KSC Open API
13.1
Kaspersky Security Center API description
|
Modifies the specified attributes for the host.
See also how to use the KlAkOAPI Python package: server = KlAkOAPI.AdmServer.KlAkAdmServer.Create("https://ksc.example.com:13299", "username", "password", verify = False) oHostGroup = KlAkOAPI.HostGroup.KlAkHostGroup(server) # name of the host to change attributes strHostName = ... oHostGroup.UpdateHost(strHostName, {"KLHST_WKS_DN": "New host display name"}) |