ovh_billovh_bill_detailovh_cloud_ai_appovh_cloud_ai_jobovh_cloud_ai_notebookovh_cloud_data_jobovh_cloud_databaseovh_cloud_flavorovh_cloud_imageovh_cloud_instanceovh_cloud_postgresovh_cloud_projectovh_cloud_regionovh_cloud_ssh_keyovh_cloud_storage_s3ovh_cloud_storage_swiftovh_cloud_volumeovh_cloud_volume_snapshotovh_refundovh_refund_detail
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, statefrom ovh_cloud_ai_notebookwhere project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8';
List stopped AI notebooks
select id, name, statefrom ovh_cloud_ai_notebookwhere project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8' and state = 'STOPPED';
List AI notebooks using a specific framework
select id, name, framework, version, statefrom ovh_cloud_ai_notebookwhere project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8' and framework = 'conda';
Schema for ovh_cloud_ai_notebook
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created_at | timestamp with time zone | Date when the notebook was created. | |
editor | text | Editor used by the notebook. | |
framework | text | Framework used by the notebook. | |
id | text | = | UUID of the notebook. |
name | text | Name of the notebook. | |
project_id | text | = | Project ID. |
region | text | Region of the job. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
state | text | State of the notebook. | |
url | text | Access URL of the notebook. | |
version | text | Framework version used by the notebook. |