Module Values.VirtualInterfaceTestHistorySource

Information about the virtual interface failover test.

Sourcetype nonrec t = {
  1. testId : TestId.t option;
    (*

    The ID of the virtual interface failover test.

    *)
  2. virtualInterfaceId : VirtualInterfaceId.t option;
    (*

    The ID of the tested virtual interface.

    *)
  3. bgpPeers : BGPPeerIdList.t option;
    (*

    The BGP peers that were put in the DOWN state as part of the virtual interface failover test.

    *)
  4. status : FailureTestHistoryStatus.t option;
    (*

    The status of the virtual interface failover test.

    *)
  5. ownerAccount : OwnerAccount.t option;
    (*

    The owner ID of the tested virtual interface.

    *)
  6. testDurationInMinutes : TestDuration.t option;
    (*

    The time that the virtual interface failover test ran in minutes.

    *)
  7. startTime : StartTime.t option;
    (*

    The time that the virtual interface moves to the DOWN state.

    *)
  8. endTime : EndTime.t option;
    (*

    The time that the virtual interface moves out of the DOWN state.

    *)
}
Sourceval make : ?testId:??? -> ?virtualInterfaceId:??? -> ?bgpPeers:??? -> ?status:??? -> ?ownerAccount:??? -> ?testDurationInMinutes:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TestDuration.t | `List of [> `String of BGPPeerId.t ] list | `String of TestId.t | `Timestamp of StartTime.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