31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { AgentUpdateHeartbeatConfig } from "./agentUpdateHeartbeatConfig";
|
|
import type { AgentUpdateIdentityProfile } from "./agentUpdateIdentityProfile";
|
|
|
|
/**
|
|
* Payload for patching an existing agent.
|
|
*/
|
|
export interface AgentUpdate {
|
|
/** Optional new board assignment. */
|
|
board_id?: string | null;
|
|
/** Whether this agent is treated as the board gateway main. */
|
|
is_gateway_main?: boolean | null;
|
|
/** Optional replacement display name. */
|
|
name?: string | null;
|
|
/** Optional replacement lifecycle status. */
|
|
status?: string | null;
|
|
/** Optional heartbeat policy override. */
|
|
heartbeat_config?: AgentUpdateHeartbeatConfig;
|
|
/** Optional identity profile update values. */
|
|
identity_profile?: AgentUpdateIdentityProfile;
|
|
/** Optional replacement identity template. */
|
|
identity_template?: string | null;
|
|
/** Optional replacement soul template. */
|
|
soul_template?: string | null;
|
|
}
|