i am using below query to get the F5 Partition details.
========================
foreach device in network.devices
where device.platform.vendor == Vendor.F5
let outputs = device.outputs
foreach c in outputs.commands
where c.commandType == CommandType.PARTITION_CONFIG
select {
Device: device.name,
Location: device.locationName,
"Partition Name": c.response
}
=====================================
but the output is not looks good , i am also getting the Partition description in Output , i just need only Partition name only , Please help