Module Values.ManagedAgentStateChangeSource

An object representing a change in state for a managed agent.

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

    The name of the container that's associated with the managed agent.

    *)
  2. managedAgentName : ManagedAgentName.t;
    (*

    The name of the managed agent.

    *)
  3. status : String_.t;
    (*

    The status of the managed agent.

    *)
  4. reason : String_.t option;
    (*

    The reason for the status of the managed agent.

    *)
}
Sourceval context_ : string
Sourceval make : ?reason:??? -> containerName:String_.t -> managedAgentName:ManagedAgentName.t -> status:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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