Module Values.ServiceInstanceStateSource

The detailed data about the current state of this service instance.

Sourcetype nonrec t = {
  1. lastSuccessfulComponentDeploymentIds : ComponentDeploymentIdList.t option;
    (*

    The IDs for the last successful components deployed for this service instance.

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

    The ID for the last successful environment deployed for this service instance.

    *)
  3. lastSuccessfulServicePipelineDeploymentId : DeploymentId.t option;
    (*

    The ID for the last successful service pipeline deployed for this service instance.

    *)
  4. spec : SpecContents.t option;
    (*

    The service spec that was used to create the service instance.

    *)
  5. templateMajorVersion : TemplateVersionPart.t option;
    (*

    The major version of the service template that was used to create the service pipeline.

    *)
  6. templateMinorVersion : TemplateVersionPart.t option;
    (*

    The minor version of the service template that was used to create the service pipeline.

    *)
  7. templateName : ResourceName.t option;
    (*

    The name of the service template that was used to create the service instance.

    *)
}
Sourceval make : ?lastSuccessfulComponentDeploymentIds:??? -> ?lastSuccessfulEnvironmentDeploymentId:??? -> ?lastSuccessfulServicePipelineDeploymentId:??? -> ?spec:??? -> ?templateMajorVersion:??? -> ?templateMinorVersion:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DeploymentId.t ] list | `String of DeploymentId.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