2023-01-12 16:09:13 +01:00
|
|
|
/**
|
2023-03-15 13:30:07 +01:00
|
|
|
* Generated by Orval
|
2023-01-12 16:09:13 +01:00
|
|
|
* Do not edit manually.
|
2023-03-15 13:30:07 +01:00
|
|
|
* See `gen:api` script in package.json
|
2023-01-12 16:09:13 +01:00
|
|
|
*/
|
|
|
|
import type { RoleSchema } from './roleSchema';
|
2023-12-04 20:49:49 +01:00
|
|
|
import type { ServiceAccountSchema } from './serviceAccountSchema';
|
2023-01-12 16:09:13 +01:00
|
|
|
|
2023-07-20 12:59:55 +02:00
|
|
|
/**
|
|
|
|
* Represents a list of service accounts, and includes a list of root roles they reference
|
|
|
|
*/
|
2023-01-12 16:09:13 +01:00
|
|
|
export interface ServiceAccountsSchema {
|
2023-07-20 12:59:55 +02:00
|
|
|
/** A list of root roles that are referenced from service account objects in the `serviceAccounts` list */
|
2023-01-12 16:09:13 +01:00
|
|
|
rootRoles?: RoleSchema[];
|
2023-12-04 20:49:49 +01:00
|
|
|
/** A list of service accounts */
|
|
|
|
serviceAccounts: ServiceAccountSchema[];
|
2023-01-12 16:09:13 +01:00
|
|
|
}
|