Module Values.GetSolNetworkOperationTaskDetailsSource

Gets the details of a network operation. A network operation is any operation that is done to your network, such as network instance instantiation or termination.

Sourcetype nonrec t = {
  1. taskContext : StringMap.t option;
    (*

    Context for the network operation task.

    *)
  2. taskEndTime : SyntheticTimestamp_date_time.t option;
    (*

    Task end time.

    *)
  3. taskErrorDetails : ErrorInfo.t option;
    (*

    Task error details.

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

    Task name.

    *)
  5. taskStartTime : SyntheticTimestamp_date_time.t option;
    (*

    Task start time.

    *)
  6. taskStatus : TaskStatus.t option;
    (*

    Task status.

    *)
}
Sourceval make : ?taskContext:??? -> ?taskEndTime:??? -> ?taskErrorDetails:??? -> ?taskName:??? -> ?taskStartTime:??? -> ?taskStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `String of ErrorCause.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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