You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An example of listing and deleting all Application instances in 'current' project. Works in notebook, if required I can test outside DSS and introduce additional criteria for 'deletion' step
importdataikuapiimportdataikuclient=dataiku.api_client()
#AppID for any project is 'PROJECT_MYPROJECTID'app=dataikuapi.DSSClient.get_app(client,'PROJECT_'+dataiku.get_custom_variables()["projectKey"])
app.list_instance_keys()
forproject_keyinapp.list_instance_keys():
project=client.get_project(project_key)
print ('deleting application instance '+project_key)
project.delete()
The text was updated successfully, but these errors were encountered:
An example of listing and deleting all Application instances in 'current' project. Works in notebook, if required I can test outside DSS and introduce additional criteria for 'deletion' step
The text was updated successfully, but these errors were encountered: