1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/serviceAccountsSchema.ts
2023-12-04 21:49:49 +02:00

18 lines
578 B
TypeScript

/**
* 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[];
}