Module Values.GetSolNetworkOperationMetadataSource

Metadata related to a network operation occurrence. A network operation is any operation that is done to your network, such as network instance instantiation or termination.

Sourcetype nonrec t = {
  1. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date that the resource was created.

    *)
  2. instantiateMetadata : InstantiateMetadata.t option;
    (*

    Metadata related to the network operation occurrence for network instantiation. This is populated only if the lcmOperationType is INSTANTIATE.

    *)
  3. lastModified : SyntheticTimestamp_date_time.t option;
    (*

    The date that the resource was last modified.

    *)
  4. modifyVnfInfoMetadata : ModifyVnfInfoMetadata.t option;
    (*

    Metadata related to the network operation occurrence for network function updates in a network instance. This is populated only if the lcmOperationType is UPDATE and the updateType is MODIFY_VNF_INFORMATION.

    *)
  5. updateNsMetadata : UpdateNsMetadata.t option;
    (*

    Metadata related to the network operation occurrence for network instance updates. This is populated only if the lcmOperationType is UPDATE and the updateType is UPDATE_NS.

    *)
}
Sourceval make : ?createdAt:??? -> ?instantiateMetadata:??? -> ?lastModified:??? -> ?modifyVnfInfoMetadata:??? -> ?updateNsMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of NsdInfoId.t | `Structure of 'a list ]) 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