RelatedInfoListResult

RelatedInfoListResult
Related Info List Result

Paginated response containing process or user login context data discovered on a specific VM.

Notes:

  • results is an array of BaseRelatedInfoEntity objects. The content of each entry depends on the info_type specified in the request (PROCESS or USER_LOGIN_INFO).
  • related_info_summary provides aggregate counts for the returned info type.
  • time_interval reflects the resolved query window.
AllOf
This class requires all of the following:
JSON Example
{
    "offset": 0,
    "number_of_results": 0,
    "total_result_count": 0,
    "total_pages": 0,
    "sort_ascending": false,
    "sort_by": "string",
    "time_interval": {
        "start_time": 0,
        "end_time": 0
    },
    "related_info_summary": {
        "id": "string",
        "name": "string",
        "info_type": "string"
    },
    "results": [
        {
            "id": "string",
            "name": "string",
            "info_type": "string"
        }
    ]
}