Module Values.AgentVersionSummarySource

Contains details about a version of an agent.

Sourcetype nonrec t = {
  1. agentName : Name.t option;
    (*

    The name of the agent to which the version belongs.

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

    The status of the agent to which the version belongs.

    *)
  3. agentVersion : Version.t option;
    (*

    The version of the agent.

    *)
  4. createdAt : DateTimestamp.t option;
    (*

    The time at which the version was created.

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

    The time at which the version was last updated.

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

    The description of the version of the agent.

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

    Details about the guardrail associated with the agent.

    *)
}
Sourceval make : ?agentName:??? -> ?agentStatus:??? -> ?agentVersion:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?description:??? -> ?guardrailConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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