steampipe plugin install francois2metz/ovh

Table: ovh_cloud_ai_job

OVHcloud AI Training lets you train your AI, machine learning and deep learning models efficiently and easily, and optimise your GPU usage. See the official guide.

The ovh_cloud_ai_job table can be used to query information about your AI jobs 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 jobs of a cloud project

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

List completed AI jobs

select
id,
name,
state
from
ovh_cloud_ai_job
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and state = 'DONE';

List AI jobs using a specific image

select
id,
name,
image,
state
from
ovh_cloud_ai_job
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and image LIKE 'pytorch%';

Schema for ovh_cloud_ai_job

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