commands.agent_nodes
Agent node commands for Datalayer CLI.
agent_nodes_callback
@app.callback()
def agent_nodes_callback(ctx: typer.Context) -> None
Agent Node management commands.
list_agent_nodes
@app.command(name="ls")
def list_agent_nodes(token: Optional[str] = typer.Option(
None,
"--api-key",
help="API key (Bearer token for API requests).",
),
runtimes_url: Optional[str] = typer.Option(
None,
"--runtimes-url",
help="Datalayer Runtimes server URL",
)) -> None
List registered agent nodes.
agent_nodes_list
def agent_nodes_list(token: Optional[str] = typer.Option(
None,
"--api-key",
help="API key (Bearer token for API requests).",
),
runtimes_url: Optional[str] = typer.Option(
None,
"--runtimes-url",
help="Datalayer Runtimes server URL",
)) -> None
List registered agent nodes (root command).
agent_nodes_ls
def agent_nodes_ls(token: Optional[str] = typer.Option(
None,
"--api-key",
help="API key (Bearer token for API requests).",
),
runtimes_url: Optional[str] = typer.Option(
None,
"--runtimes-url",
help="Datalayer Runtimes server URL",
)) -> None
List registered agent nodes (root alias).