Module Values.NetworkMigrationDeployerJobDetailsSource

Details about a network migration deployer job.

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

    The unique identifier of the deployer 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 deployer job.

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

    Detailed status information about the job.

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