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

    Interface ESPCDFNodeOperation

    interface ESPCDFNodeOperation {
        addAutomation?(automationDetails: Record<string, any>): Promise<any>;
        checkOTAUpdate?(): Promise<ESPCDFAPIDataResponse<ESPCDFOTAUpdateResponse>>;
        delete(): Promise<ESPCDFAPIResponse<any>>;
        getOTAUpdateStatus?(
            otaJobId: string,
        ): Promise<ESPCDFAPIDataResponse<ESPCDFOTAUpdateStatusResponse>>;
        pushOTAUpdate?(params: any): Promise<ESPCDFAPIResponse<any>>;
        setMultipleParams(
            params: Record<string, any>,
        ): Promise<ESPCDFAPIResponse<any>>;
        setTimeZone(timeZone: string): Promise<ESPCDFAPIResponse<any>>;
        updateMetadata(
            metadata: Record<string, any>,
        ): Promise<ESPCDFAPIResponse<any>>;
    }
    Index

    Methods

    • Parameters

      • automationDetails: Record<string, any>

      Returns Promise<any>