AiAgentAliasCreateInput
No description
input AiAgentAliasCreateInput {
agentId: ID!
agentVersionId: ID
name: String!
description: String
externalId: ID
trustLevel: AiAgentRegistryTrustLevel
tags: [AiAgentTagInput!]
}
Fields
AiAgentAliasCreateInput.agentId ● ID! non-null scalar miscellaneous
The unique identifier of the AI Agent to which the alias will be associated.
AiAgentAliasCreateInput.agentVersionId ● ID scalar miscellaneous
The unique identifier of the AI Agent Version to which the alias will be associated. If provided, the alias will be created for this existing published version. If not provided, a new version will be published from the current draft and the alias will be associated to it.
AiAgentAliasCreateInput.name ● String! non-null scalar miscellaneous
Name of the AI Agent Alias.
AiAgentAliasCreateInput.description ● String scalar miscellaneous
Description of the AI Agent Alias.
AiAgentAliasCreateInput.externalId ● ID scalar miscellaneous
External identifier for the AI Agent Alias in the provider system.
AiAgentAliasCreateInput.trustLevel ● AiAgentRegistryTrustLevel enum agent-control-tower
Indicates the confidence and reliability level of the AI Agent Alias.
AiAgentAliasCreateInput.tags ● [AiAgentTagInput!] list input agent-control-tower
Tags for classification and organization of the AI Agent Alias. If not provided, tags will be empty.
Member Of
aiAgentAliasCreate mutation