Module Values.NetworkPathComponentSource

Information about a network path component.

Sourcetype nonrec t = {
  1. componentId : NonEmptyString.t option;
    (*

    The identifier of a component in the network path. Length Constraints: Minimum of 1. Maximum of 32.

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

    The type of component. Length Constraints: Minimum of 1. Maximum of 32.

    *)
  3. egress : NetworkHeader.t option;
    (*

    Information about the component that comes after the current component in the network path.

    *)
  4. ingress : NetworkHeader.t option;
    (*

    Information about the component that comes before the current node in the network path.

    *)
}
Sourceval make : ?componentId:??? -> ?componentType:??? -> ?egress:??? -> ?ingress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ] list ]) list ]) 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