Module Values.NetworkSource

The details of network-related information about a finding.

Sourcetype nonrec t = {
  1. direction : NetworkDirection.t option;
    (*

    The direction of network traffic associated with a finding.

    *)
  2. protocol : NonEmptyString.t option;
    (*

    The protocol of network-related information about a finding. Length Constraints: Minimum of 1. Maximum of 16.

    *)
  3. openPortRange : PortRange.t option;
    (*

    The range of open ports that is present on the network.

    *)
  4. sourceIpV4 : NonEmptyString.t option;
    (*

    The source IPv4 address of network-related information about a finding.

    *)
  5. sourceIpV6 : NonEmptyString.t option;
    (*

    The source IPv6 address of network-related information about a finding.

    *)
  6. sourcePort : Integer.t option;
    (*

    The source port of network-related information about a finding.

    *)
  7. sourceDomain : NonEmptyString.t option;
    (*

    The source domain of network-related information about a finding. Length Constraints: Minimum of 1. Maximum of 128.

    *)
  8. sourceMac : NonEmptyString.t option;
    (*

    The source media access control (MAC) address of network-related information about a finding.

    *)
  9. destinationIpV4 : NonEmptyString.t option;
    (*

    The destination IPv4 address of network-related information about a finding.

    *)
  10. destinationIpV6 : NonEmptyString.t option;
    (*

    The destination IPv6 address of network-related information about a finding.

    *)
  11. destinationPort : Integer.t option;
    (*

    The destination port of network-related information about a finding.

    *)
  12. destinationDomain : NonEmptyString.t option;
    (*

    The destination domain of network-related information about a finding. Length Constraints: Minimum of 1. Maximum of 128.

    *)
}
Sourceval make : ?direction:??? -> ?protocol:??? -> ?openPortRange:??? -> ?sourceIpV4:??? -> ?sourceIpV6:??? -> ?sourcePort:??? -> ?sourceDomain:??? -> ?sourceMac:??? -> ?destinationIpV4:??? -> ?destinationIpV6:??? -> ?destinationPort:??? -> ?destinationDomain:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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