{%
    if IsLocalFile then
        echo('Import certificate successfully')
    end

    if State == 'New' then
        echo('Downloading...')
    end

    if State == 'Exception' or State == 'Killed' or State == 'Cancelled' then
        echo('Import certificate failed.')
    end

    if State == 'Completed' then
        echo('Import certificate successfully')
    end

%}