Module Values.DiscoveredEndpointSource

Represents an endpoint discovered during a pentest job.

Sourcetype nonrec t = {
  1. uri : String_.t option;
    (*

    The URI of the discovered endpoint.

    *)
  2. pentestJobId : String_.t option;
    (*

    The unique identifier of the pentest job that discovered the endpoint.

    *)
  3. taskId : String_.t option;
    (*

    The unique identifier of the task that discovered the endpoint.

    *)
  4. agentSpaceId : String_.t option;
    (*

    The unique identifier of the agent space associated with the discovered endpoint.

    *)
  5. evidence : String_.t option;
    (*

    The evidence that led to the discovery of the endpoint.

    *)
  6. operation : String_.t option;
    (*

    The HTTP operation associated with the discovered endpoint.

    *)
  7. description : String_.t option;
    (*

    A description of the discovered endpoint.

    *)
}
Sourceval make : ?uri:??? -> ?pentestJobId:??? -> ?taskId:??? -> ?agentSpaceId:??? -> ?evidence:??? -> ?operation:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t