TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Type Alias BucketInfoHybrid

    BucketInfoHybrid: Omit<
        BucketInfoBasic,
        "data_retention"
        | "data_retention_ignore",
    > & {
        chunk_period: ChunkPeriod;
        chunk_retention: number;
        mutable_variable_regex: string;
        type: "hybrid";
    }

    Type declaration

    • chunk_period: ChunkPeriod

      Chunk division to retain data in the device.

      Always returned for Hybrid devices.

    • chunk_retention: number

      Amount of chunks to retain data according to the chunk_period.

      Always returned for Hybrid devices.

    • mutable_variable_regex: string

      Regex that routes each variable to the mutable side at insert time (unanchored substring match). It must not match every variable or no variable; use a mutable or immutable device for those cases.

      Always returned for Hybrid devices.

    • type: "hybrid"