OVHcloud AI Notebook gives a quick and simple start launching your Jupyter or VS Code notebooks in the cloud. See the official guide.
The ovh_cloud_ai_notebook
table can be used to query information about your AI notebooks and you must specify which cloud project in the where or join clause (where project_id=
, join ovh_cloud_project on id=
).
select
id,
name,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8';
select
id,
name,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and state = 'STOPPED';
select
id,
name,
framework,
version,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and framework = 'conda';