
Aikido List
CertifiedList Aikido code repositories
Aikido List
List Aikido code repositories
Lists code repositories connected to Aikido and pages through every matching result. fetchType=STORE is recommended for large result sets: it streams results to internal storage instead of holding them all in memory or in the execution output.
type: io.kestra.plugin.aikido.repositories.ListExamples
List every active code repository
id: list_aikido_repositories
namespace: company.security
tasks:
- id: list_repositories
type: io.kestra.plugin.aikido.repositories.List
clientId: "{{ secret('AIKIDO_CLIENT_ID') }}"
clientSecret: "{{ secret('AIKIDO_CLIENT_SECRET') }}"
fetchType: FETCH
Properties
clientId *Requiredstring
OAuth2 client ID
Client ID of an Aikido API client with the OAuth2 scopes required by the tasks and triggers being used (for example issues: read, repositories: write). Client credentials are created in the Aikido console under Settings > API access.
clientSecret *Requiredstring
OAuth2 client secret
Client secret of the Aikido API client. Exchanged for a short-lived JWT Bearer token on first use (and transparently refreshed before it expires); never logged or included in error messages.
baseUrl string
https://app.aikido.devAikido API base URL
Base URL of the Aikido Security application for your account's region: https://app.aikido.dev (Europe, default), https://app.us.aikido.dev (United States), https://app.au.aikido.dev (Australia), or https://app.me.aikido.dev (Middle East). The OAuth2 token endpoint is derived from this same host, so a region override applies to both authentication and API calls.
fetchType string
FETCHSTOREFETCHFETCH_ONENONEFetch type
FETCH_ONE outputs the first matching repository, FETCH outputs every matching repository, STORE streams every matching repository to internal storage and returns a URI. Defaults to FETCH.
filterBranch string
Filter by branch
filterName string
Filter by repository name
includeInactive booleanstring
falseInclude inactive repositories
Defaults to false.
pageSize integerstring
20Page size
Internal pagination page size, from 10 to 200. Defaults to 20.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
row
First fetched repository
Populated only when fetchType=FETCH_ONE.
io.kestra.plugin.aikido.repositories.CodeRepository
The branch Aikido scans
Connectivity classification of this repository, if requested
The ID of the repository from the provider
The repository's ID in Aikido
Unix timestamp (seconds) of the last scan, or -1 if never scanned
The name of the code repository
Where the code repository is hosted
One of github, gitlab, gitlab-server, bitbucket, azure_devops, or selfscan.
Sensitivity classification of this repository, if requested
External URL to the repository
rows array
Fetched repositories
Populated only when fetchType=FETCH.
io.kestra.plugin.aikido.repositories.CodeRepository
The branch Aikido scans
Connectivity classification of this repository, if requested
The ID of the repository from the provider
The repository's ID in Aikido
Unix timestamp (seconds) of the last scan, or -1 if never scanned
The name of the code repository
Where the code repository is hosted
One of github, gitlab, gitlab-server, bitbucket, azure_devops, or selfscan.
Sensitivity classification of this repository, if requested
External URL to the repository
size integer
Number of repositories fetched
uri string
uriStored data URI
Populated only when fetchType=STORE.