Module Values.DeploymentModelSource

Sourcetype nonrec t = {
  1. modelHandle : EntityName.t option;
    (*

    The unique handle of the model.

    *)
  2. modelName : ModelName.t option;
    (*

    The name of the model.

    *)
  3. modelVersion : Version.t option;
    (*

    The version of the model.

    *)
  4. desiredState : ModelState.t option;
    (*

    The desired state of the model.

    *)
  5. state : ModelState.t option;
    (*

    Returns the current state of the model.

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

    Returns the deployment status of the model.

    *)
  7. statusReason : String_.t option;
    (*

    Returns the error message for the deployment status result.

    *)
  8. rollbackFailureReason : String_.t option;
    (*

    Returns the error message if there is a rollback.

    *)
}
Sourceval make : ?modelHandle:??? -> ?modelName:??? -> ?modelVersion:??? -> ?desiredState:??? -> ?state:??? -> ?status:??? -> ?statusReason:??? -> ?rollbackFailureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.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