/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { RoleSchema } from './roleSchema'; import type { ServiceAccountSchema } from './serviceAccountSchema'; /** * Represents a list of service accounts, and includes a list of root roles they reference */ export interface ServiceAccountsSchema { /** A list of root roles that are referenced from service account objects in the `serviceAccounts` list */ rootRoles?: RoleSchema[]; /** A list of service accounts */ serviceAccounts: ServiceAccountSchema[]; }