Delete a workbook

  1. Open the Visualization page in the console.

  2. Find the workbook you want to delete and click Delete.

  3. 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.

github-mark-white

View this example on GitHub

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