Recon: {
    cancelRecon(reconId: string): Promise<ReconStatusType>;
    readRecon(reconId: string): Promise<ReconType>;
    readRecons(): Promise<ReconType[]>;
    startRecon(mappingName: string): Promise<ReconStatusType>;
    startReconById(mappingName: string, objectId: string): Promise<ReconStatusType>;
}

Type declaration

  • cancelRecon:function
  • readRecon:function
    • Read recon

      Parameters

      • reconId: string

        id of the recon

      Returns Promise<ReconType>

      a promise resolving to a recon object

  • readRecons:function
  • startRecon:function
  • startReconById:function
    • Start a reconciliation by Id

      Parameters

      • mappingName: string

        mapping to reconcile

      • objectId: string

        id of object to reconcile

      Returns Promise<ReconStatusType>

      a promise resolving to a recon status object