mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-15 01:16:22 +02:00
32 lines
764 B
TypeScript
32 lines
764 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Key resources within the project
|
|
*/
|
|
export type ProjectStatusSchemaResources = {
|
|
/**
|
|
* The number of API tokens created specifically for this project.
|
|
* @minimum 0
|
|
*/
|
|
apiTokens: number;
|
|
/**
|
|
* The number of environments that have received SDK traffic in this project.
|
|
* @minimum 0
|
|
*/
|
|
connectedEnvironments: number;
|
|
/**
|
|
* The number of users who have been granted roles in this project. Does not include users who have access via groups.
|
|
* @minimum 0
|
|
*/
|
|
members: number;
|
|
/**
|
|
* The number of segments that are scoped to this project.
|
|
* @minimum 0
|
|
*/
|
|
segments: number;
|
|
};
|