@espressif/rainmaker-base-cdf
    Preparing search index...

    Interface ESPCDFNodeInterface

    interface ESPCDFNodeInterface {
        _raw: any;
        availableTransports?: Partial<Record<string, ESPCDFTransportConfig>>;
        connectivityStatus?: ESPCDFConnectivityStatusInterface;
        devices?: ESPCDFDeviceInterface[];
        id: string;
        identifier: string;
        isPrimaryUser?: boolean;
        metadata?: Record<string, any>;
        nodeConfig?: ESPCDFNodeConfigInterface;
        operations: ESPCDFNodeOperation;
        role?: string;
        services?: ESPCDFServiceInterface[];
        tags?: string[];
        transportOrder?: string[];
        type?: string;
        [key: string]: any;
    }

    Implemented by

    Indexable

    • [key: string]: any
    Index

    Properties

    _raw: any
    availableTransports?: Partial<Record<string, ESPCDFTransportConfig>>

    Available transports with their configurations

    id: string
    identifier: string
    isPrimaryUser?: boolean
    metadata?: Record<string, any>
    role?: string
    tags?: string[]
    transportOrder?: string[]

    Transport order - priority queue of transport modes

    type?: string