Variable ClusterStateSchemaConst
ClusterStateSchema: ZodObject<
{
build: ZodOptional<
ZodObject<
{
buildNumber: ZodOptional<ZodNumber>;
version: ZodOptional<ZodString>;
},
$loose,
>,
>;
state: ZodOptional<
ZodCustom<
| string & {}
| "STABLE"
| "READY_TO_UPGRADE"
| "MIXED"
| "READY_TO_RUN_UPGRADE_TASKS"
| "RUNNING_UPGRADE_TASKS"
| "UPGRADE_TASKS_FAILED",
| string & {}
| "STABLE"
| "READY_TO_UPGRADE"
| "MIXED"
| "READY_TO_RUN_UPGRADE_TASKS"
| "RUNNING_UPGRADE_TASKS"
| "UPGRADE_TASKS_FAILED",
>,
>;
},
$loose,
> = ...