Module Values_3.ClientVpnConnectionSource

Describes a client connection.

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

    The ID of the Client VPN endpoint to which the client is connected.

    *)
  2. timestamp : Values_0.String_.t option;
    (*

    The current date and time.

    *)
  3. connectionId : Values_0.String_.t option;
    (*

    The ID of the client connection.

    *)
  4. username : Values_0.String_.t option;
    (*

    The username of the client who established the client connection. This information is only provided if Active Directory client authentication is used.

    *)
  5. connectionEstablishedTime : Values_0.String_.t option;
    (*

    The date and time the client connection was established.

    *)
  6. ingressBytes : Values_0.String_.t option;
    (*

    The number of bytes sent by the client.

    *)
  7. egressBytes : Values_0.String_.t option;
    (*

    The number of bytes received by the client.

    *)
  8. ingressPackets : Values_0.String_.t option;
    (*

    The number of packets sent by the client.

    *)
  9. egressPackets : Values_0.String_.t option;
    (*

    The number of packets received by the client.

    *)
  10. clientIp : Values_0.String_.t option;
    (*

    The IP address of the client.

    *)
  11. clientIpv6Address : Values_0.String_.t option;
    (*

    The IPv6 address assigned to the client connection when using a dual-stack Client VPN endpoint. This field is only populated when the endpoint is configured for dual-stack addressing, and the client is using IPv6 for connectivity.

    *)
  12. commonName : Values_0.String_.t option;
    (*

    The common name associated with the client. This is either the name of the client certificate, or the Active Directory user name.

    *)
  13. status : Values_1.ClientVpnConnectionStatus.t option;
    (*

    The current state of the client connection.

    *)
  14. connectionEndTime : Values_0.String_.t option;
    (*

    The date and time the client connection was terminated.

    *)
  15. postureComplianceStatuses : Values_0.ValueStringList.t option;
    (*

    The statuses returned by the client connect handler for posture compliance, if applicable.

    *)
}
Sourceval make : ?clientVpnEndpointId:??? -> ?timestamp:??? -> ?connectionId:??? -> ?username:??? -> ?connectionEstablishedTime:??? -> ?ingressBytes:??? -> ?egressBytes:??? -> ?ingressPackets:??? -> ?egressPackets:??? -> ?clientIp:??? -> ?clientIpv6Address:??? -> ?commonName:??? -> ?status:??? -> ?connectionEndTime:??? -> ?postureComplianceStatuses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of Values_0.String_.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