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 {#agent-id}
The unique identifier of the AI Agent to which the alias will be associated.
AiAgentAliasCreateInput.agentVersionId ● ID scalar miscellaneous {#agent-version-id}
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}
Name of the AI Agent Alias.
AiAgentAliasCreateInput.description ● String scalar miscellaneous {#description}
Description of the AI Agent Alias.
AiAgentAliasCreateInput.externalId ● ID scalar miscellaneous {#external-id}
External identifier for the AI Agent Alias in the provider system.
AiAgentAliasCreateInput.trustLevel ● AiAgentRegistryTrustLevel enum agent-control-tower {#trust-level}
Indicates the confidence and reliability level of the AI Agent Alias.
AiAgentAliasCreateInput.tags ● [AiAgentTagInput!] list input agent-control-tower {#tags}
Tags for classification and organization of the AI Agent Alias. If not provided, tags will be empty.
Member Of
aiAgentAliasCreate mutation