Module Values.NetworkMigrationCodeGenerationJobDetailsSource

Details about a network migration code generation job.

Sourcetype nonrec t = {
  1. jobID : NetworkMigrationJobID.t option;
    (*

    The unique identifier of the code generation job.

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

    The unique identifier of the network migration execution.

    *)
  3. networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;
    (*

    The unique identifier of the network migration definition.

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

    The timestamp when the job was created.

    *)
  5. endedAt : Timestamp.t option;
    (*

    The timestamp when the job completed or failed.

    *)
  6. status : NetworkMigrationJobStatus.t option;
    (*

    The current status of the code generation job.

    *)
  7. statusDetails : LargeBoundedString.t option;
    (*

    Detailed status information about the job.

    *)
  8. codeGenerationOutputFormatStatusDetailsMap : CodeGenerationOutputFormatStatusDetailsMap.t option;
    (*

    A map of output format types to their status details.

    *)
}
Sourceval make : ?jobID:??? -> ?networkMigrationExecutionID:??? -> ?networkMigrationDefinitionID:??? -> ?createdAt:??? -> ?endedAt:??? -> ?status:??? -> ?statusDetails:??? -> ?codeGenerationOutputFormatStatusDetailsMap:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Enum of string | `String of LargeBoundedString.t ]) list ]) list | `String of NetworkMigrationJobID.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