2026-02-04 20:21:33 +05:30
|
|
|
/**
|
2026-02-12 18:04:35 +05:30
|
|
|
* Generated by orval v8.3.0 🍺
|
2026-02-04 20:21:33 +05:30
|
|
|
* Do not edit manually.
|
|
|
|
|
* Mission Control API
|
|
|
|
|
* OpenAPI spec version: 0.1.0
|
|
|
|
|
*/
|
|
|
|
|
import type { AgentUpdateHeartbeatConfig } from "./agentUpdateHeartbeatConfig";
|
2026-02-06 16:12:04 +05:30
|
|
|
import type { AgentUpdateIdentityProfile } from "./agentUpdateIdentityProfile";
|
2026-02-04 20:21:33 +05:30
|
|
|
|
2026-02-10 00:17:21 +05:30
|
|
|
/**
|
|
|
|
|
* Payload for patching an existing agent.
|
|
|
|
|
*/
|
2026-02-04 20:21:33 +05:30
|
|
|
export interface AgentUpdate {
|
|
|
|
|
board_id?: string | null;
|
|
|
|
|
heartbeat_config?: AgentUpdateHeartbeatConfig;
|
2026-02-06 16:12:04 +05:30
|
|
|
identity_profile?: AgentUpdateIdentityProfile;
|
|
|
|
|
identity_template?: string | null;
|
2026-02-12 18:04:35 +05:30
|
|
|
is_gateway_main?: boolean | null;
|
|
|
|
|
name?: string | null;
|
2026-02-06 16:12:04 +05:30
|
|
|
soul_template?: string | null;
|
2026-02-12 18:04:35 +05:30
|
|
|
status?: string | null;
|
2026-02-04 20:21:33 +05:30
|
|
|
}
|