updated_time and other columns returned by rsconnect::applications are undocumented

rsconnect::applications documents these columns as being returned:

Usage:

     applications(account = NULL, server = NULL)
     
...
Value:

     Returns a data frame with the following columns:

       'id'          Application unique id                                      
       'name'        Name of application                                        
       'title'       Application title                                          
       'url'         URL where application can be accessed                      
       'status'      Current status of application. Valid values are 'pending', 
                     'deploying', 'running', 'terminating', and 'terminated' 
       'size'        Instance size (small, medium, large, etc.) (on 
                     ShinyApps.io) 
       'instances'   Number of instances (on ShinyApps.io)                      
       'config_url'  URL where application can be configured  

But I find other columns additionally returned, viz:

colnames(applications(account='myaccount'))
 [1] "id"           "name"         "url"          "status"       "created_time"
 [6] "updated_time" "size"         "instances"    "guid"         "title"       
[11] "config_url"  

I am seeking a definition of updated_time. Specifically, what events cause this value to be reset?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.