Interface IDeployIndexer

interface IDeployIndexer {
    indexer_uuid: string;
    status: number;
    lastDeploymentId: number;
    deployment: {
        id: number;
        type: DeploymentType;
        status: IndexerDeploymentStatus;
        failed: DeploymentFailed;
    };
}

Properties

indexer_uuid: string

Indexer unique identifier.

status: number

Indexer status (1 = draft, 5 = active)

lastDeploymentId: number

Indexer last deployment id - this is the deployment id from the sqd.

deployment: {
    id: number;
    type: DeploymentType;
    status: IndexerDeploymentStatus;
    failed: DeploymentFailed;
}

Indexer sqd deployment details.

Type declaration