steampipe plugin install francois2metz/ovh

Table: ovh_cloud_ai_notebook

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=).

Examples

List AI notebooks of a cloud project

select
id,
name,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8';

List stopped AI notebooks

select
id,
name,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and state = 'STOPPED';

List AI notebooks using a specific framework

select
id,
name,
framework,
version,
state
from
ovh_cloud_ai_notebook
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and framework = 'conda';

Schema for ovh_cloud_ai_notebook

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneDate when the notebook was created.
editortextEditor used by the notebook.
frameworktextFramework used by the notebook.
idtext=UUID of the notebook.
nametextName of the notebook.
project_idtext=Project ID.
regiontextRegion of the job.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statetextState of the notebook.
urltextAccess URL of the notebook.
versiontextFramework version used by the notebook.