Module Values.AgentSummarySource

Contains details about an agent.

Sourcetype nonrec t = {
  1. agentId : Id.t option;
    (*

    The unique identifier of the agent.

    *)
  2. agentName : Name.t option;
    (*

    The name of the agent.

    *)
  3. agentStatus : AgentStatus.t option;
    (*

    The status of the agent.

    *)
  4. description : Description.t option;
    (*

    The description of the agent.

    *)
  5. updatedAt : DateTimestamp.t option;
    (*

    The time at which the agent was last updated.

    *)
  6. latestAgentVersion : Version.t option;
    (*

    The latest version of the agent.

    *)
  7. guardrailConfiguration : GuardrailConfiguration.t option;
    (*

    Details about the guardrail associated with the agent.

    *)
}
Sourceval make : ?agentId:??? -> ?agentName:??? -> ?agentStatus:??? -> ?description:??? -> ?updatedAt:??? -> ?latestAgentVersion:??? -> ?guardrailConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Structure of (string * [> `String of GuardrailIdentifier.t ]) list | `Timestamp of DateTimestamp.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