mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
28 lines
735 B
TypeScript
28 lines
735 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
destination_url: PropTypes.string,
|
|
policy_ids: PropTypes.arrayOf(PropTypes.number),
|
|
enable_failing_policies_webhook: PropTypes.bool,
|
|
host_batch_size: PropTypes.number,
|
|
});
|
|
|
|
export interface IWebhookHostStatus {
|
|
enable_host_status_webhook?: boolean;
|
|
destination_url?: string;
|
|
host_percentage?: number;
|
|
days_count?: number;
|
|
}
|
|
export interface IWebhookFailingPolicies {
|
|
destination_url?: string;
|
|
policy_ids?: number[];
|
|
enable_failing_policies_webhook?: boolean;
|
|
host_batch_size?: number;
|
|
}
|
|
|
|
export interface IWebhookSoftwareVulnerabilities {
|
|
destination_url?: string;
|
|
enable_vulnerabilities_webhook?: boolean;
|
|
host_batch_size?: number;
|
|
}
|