23 lines
613 B
TypeScript
23 lines
613 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { AgentCreateHeartbeatConfig } from "./agentCreateHeartbeatConfig";
|
|
import type { AgentCreateIdentityProfile } from "./agentCreateIdentityProfile";
|
|
|
|
/**
|
|
* Payload for creating a new agent.
|
|
*/
|
|
export interface AgentCreate {
|
|
board_id?: string | null;
|
|
/** @minLength 1 */
|
|
name: string;
|
|
status?: string;
|
|
heartbeat_config?: AgentCreateHeartbeatConfig;
|
|
identity_profile?: AgentCreateIdentityProfile;
|
|
identity_template?: string | null;
|
|
soul_template?: string | null;
|
|
}
|