steampipe plugin install francois2metz/scalingo

Table: scalingo_scm_integration

SCM Integrations represent a link between your account and an SCM platform like github.com.

Examples

List all scm integrations

select
scm_type username
from
scalingo_scm_integration;

List scm integrations from GitHub

select
*
from
scalingo_scm_integration
where
scm_type = 'github';

Schema for scalingo_scm_integration

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
avatar_urltextUser avatar URL provided by the SCM platform.
created_attimestamp with time zonecreation date of the SCM integration.
idtext=Unique ID identifying the SCM integration.
owner_emailtextEmail of the owner.
owner_idtextUnique id of the owner.
owner_usernametextUsername of the owner.
profile_urltextUser profile URL provided by the SCM platform.
scm_typetextSCM type (github, gitlab, github-enterprise or gitlab-self-hosted)
uidtextUser ID provided by the SCM platform.
urltextURL where the SCM platform is hosted
usernametextUsername provided by the SCM platform.