Delete a workbook
Console
API
Python
-
Open the Visualization
-
Find the workbook you want to delete and click
-
Confirm by clicking Delete.
Use the WorkbookService
delete method and pass the workbook_id
parameter.
You can get this value on your workbook's information page.
from doublecloud.visualization.v1.workbook_service_pb2 import DeleteWorkbookRequest
def delete_workbook(svc, workbook_id):
operation = svc.Delete(DeleteWorkbookRequest(workbook_id=workbook_id))
return operation
Previous
Next