Module Values.DeploymentStateSource

The detailed data about the current state of the deployment.

Sourcetype nonrec t = {
  1. component : ComponentState.t option;
    (*

    The state of the component associated with the deployment.

    *)
  2. environment : EnvironmentState.t option;
    (*

    The state of the environment associated with the deployment.

    *)
  3. serviceInstance : ServiceInstanceState.t option;
    (*

    The state of the service instance associated with the deployment.

    *)
  4. servicePipeline : ServicePipelineState.t option;
    (*

    The state of the service pipeline associated with the deployment.

    *)
}
Sourceval make : ?component:??? -> ?environment:??? -> ?serviceInstance:??? -> ?servicePipeline:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of DeploymentId.t ] list | `String of ResourceNameOrEmpty.t ]) list ]) 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