Module Values.NetworkMigrationExecutionSource

Details about a network migration execution instance.

Sourcetype nonrec t = {
  1. networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;
    (*

    The unique identifier of the network migration definition used by this execution.

    *)
  2. networkMigrationExecutionID : NetworkMigrationExecutionID.t option;
    (*

    The unique identifier of the execution.

    *)
  3. status : ExecutionStatus.t option;
    (*

    The current status of the execution.

    *)
  4. stage : ExecutionStage.t option;
    (*

    The current stage of the execution in the migration workflow.

    *)
  5. activity : ExecutionStageActivity.t option;
    (*

    The current activity being performed in the execution.

    *)
  6. createdAt : Timestamp.t option;
    (*

    The timestamp when the execution was created.

    *)
  7. updatedAt : Timestamp.t option;
    (*

    The timestamp when the execution was last updated.

    *)
  8. tags : TagsMap.t option;
    (*

    Tags assigned to the execution.

    *)
}
Sourceval make : ?networkMigrationDefinitionID:??? -> ?networkMigrationExecutionID:??? -> ?status:??? -> ?stage:??? -> ?activity:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NetworkMigrationDefinitionID.t | `Timestamp of Timestamp.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