Listing storages for a project

saagieapi.storages.list_for_project

Example :

saagieapi.storages.list_for_project(project_id="860b8dc8-e634-4c98-b2e7-f9ec32ab4771",
                                    minimal=False)

Response payload example :

{
    "volumes":[
        {
            "id":"89bf5f86-3fc3-4bf6-879b-7ca8eafe6c4f",
            "name":"storage Jupyter Notebook (0)",
            "size":"64 MB",
            "description":"Autogenerated storage from app installation for \"/notebooks-dir\" path in \"Jupyter Notebook\" app.",
            "creationDate":"2022-08-26T13:12:05.363Z",
            "creator":"guillaume.prevost",
            "linkedApp":{
                "id":"6871e9a2-2c06-45fe-bf8d-6356090f1d1d",
                "name":"Jupyter Notebook",
                "versions":[
                    {
                        "number":1,
                        "volumesWithPath":[
                            {
                                "path":"/notebooks-dir",
                                "volume":{
                                    "id":"89bf5f86-3fc3-4bf6-879b-7ca8eafe6c4f"
                                }
                            }
                        ]
                    }
                ],
                "currentVersion":{
                    "number":1,
                    "volumesWithPath":[]
                }
            }
        },
        {
            "id":"905d8441-8955-444f-a333-19d7c6fe6274",
            "name":"test",
            "size":"128 MB",
            "description":"test description",
            "creationDate":"2022-08-29T08:02:11.811Z",
            "creator":"user.name",
            "linkedApp":{
                "id":"c7b2b5ea-834a-4e0e-bfa4-f3303477b9e5",
                "name":"test_app",
                "versions":[
                    {
                        "number":5,
                        "volumesWithPath":[
                            {
                                "path":"/data",
                                "volume":{
                                    "id":"905d8441-8955-444f-a333-19d7c6fe6274"
                                }
                            }
                        ]
                    }
                ],
                "currentVersion":{
                    "number":1,
                    "volumesWithPath":[
                        {
                            "path":"/data",
                            "volume":{
                                "id":"905d8441-8955-444f-a333-19d7c6fe6274"
                            }
                        }
                    ]
                }
            }
        }
    ]
}