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

18 lines
578 B
TypeScript
Raw Normal View History

/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* 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[];
}