Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
40 lines
818 B
TypeScript
40 lines
818 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
|
|
import type { EnforcementCondition } from './EnforcementCondition';
|
|
import type { EnforcementStatus } from './EnforcementStatus';
|
|
import type { i64 } from './i64';
|
|
/**
|
|
* Summary enforcement response for list views
|
|
*/
|
|
export type EnforcementSummary = {
|
|
/**
|
|
* Enforcement condition
|
|
*/
|
|
condition: EnforcementCondition;
|
|
/**
|
|
* Creation timestamp
|
|
*/
|
|
created: string;
|
|
event?: (null | i64);
|
|
/**
|
|
* Enforcement ID
|
|
*/
|
|
id: i64;
|
|
rule?: (null | i64);
|
|
/**
|
|
* Rule reference
|
|
*/
|
|
rule_ref: string;
|
|
/**
|
|
* Enforcement status
|
|
*/
|
|
status: EnforcementStatus;
|
|
/**
|
|
* Trigger reference
|
|
*/
|
|
trigger_ref: string;
|
|
};
|
|
|