node-ovsdb
    Preparing search index...

    Type Alias InsertOperation<TDatabase, TTable>

    Insert operation.

    type InsertOperation<
        TDatabase extends DatabaseTableMap,
        TTable extends TableName<TDatabase> = TableName<TDatabase>,
    > = {
        op: "insert";
        row: Partial<TableRow<TDatabase, TTable>> & RowRecord;
        table: TTable;
        uuidName?: string;
    }

    Type Parameters

    Index

    Properties

    Properties

    op: "insert"
    table: TTable
    uuidName?: string