AiAgentUpdateInput
No description
input AiAgentUpdateInput {
id: ID!
agentName: String
externalId: ID
agentDescription: String
agentStatus: AgentStatus
tags: [AiAgentTagInput!]
trustLevel: AiAgentRegistryTrustLevel
versionMetadata: String
metaData: String
}
Fields
AiAgentUpdateInput.id ● ID! non-null scalar miscellaneous {#id}
Unique identifier of the internal AI agent to be updated.
AiAgentUpdateInput.agentName ● String scalar miscellaneous {#agent-name}
Defines title of the AI agent.
AiAgentUpdateInput.externalId ● ID scalar miscellaneous {#external-id}
External identifier for the AI agent in the provider system
AiAgentUpdateInput.agentDescription ● String scalar miscellaneous {#agent-description}
Provides detailed information about the AI agent's capabilities and features.
AiAgentUpdateInput.agentStatus ● AgentStatus enum agent-control-tower {#agent-status}
Indicates the current operational state of the AI agent (e.g., PREPARING, RUNNING).
AiAgentUpdateInput.tags ● [AiAgentTagInput!] list input agent-control-tower {#tags}
Allows classification and organization through optional labeling system.
AiAgentUpdateInput.trustLevel ● AiAgentRegistryTrustLevel enum agent-control-tower {#trust-level}
Indicates the confidence and reliability level of the AI agent.
AiAgentUpdateInput.versionMetadata ● String scalar miscellaneous {#version-metadata}
Optional metadata for the version in JSON format.
AiAgentUpdateInput.metaData ● String scalar miscellaneous {#meta-data}
Optional metadata for the agent in JSON format.
Member Of
aiAgentUpdate mutation