steampipe plugin install francois2metz/ovh

Table: ovh_cloud_ai_app

OVHcloud AI Deploy lets you easily deploy machine learning models and applications to production, create your API access points effortlessly, and make effective predictions. See the official guide.

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

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

List running AI apps

select
id,
name,
state
from
ovh_cloud_ai_app
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and state = 'RUNNING';

List AI apps using a specific image

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

Schema for ovh_cloud_ai_app

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