1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-24 20:06:55 +01:00
unleash.unleash/frontend/src/openapi/models/safeguardSchema.ts
2025-11-10 16:52:07 +01:00

19 lines
537 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { SafeguardSchemaTriggerCondition } from './safeguardSchemaTriggerCondition.js';
/**
* A safeguard configuration for release plan automation
*/
export interface SafeguardSchema {
/** The unique ULID identifier for this safeguard */
id: string;
/** The impact metric id */
impactMetric: string;
/** The condition that triggers the safeguard action */
triggerCondition: SafeguardSchemaTriggerCondition;
}