Module Values.DeploymentDataSummarySource

A summary of the deployment data.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the deployment

    *)
  2. id : DeploymentId.t option;
    (*

    The ID of the deployment.

    *)
  3. workloadName : WorkloadName.t option;
    (*

    The name of the workload.

    *)
  4. patternName : DeploymentPatternName.t option;
    (*

    The name of the workload deployment pattern.

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

    The status of the deployment.

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

    The time the deployment was created.

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

    The time the deployment was last modified.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?workloadName:??? -> ?patternName:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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