mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
38 lines
920 B
TypeScript
38 lines
920 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
created_at: PropTypes.string,
|
|
updated_at: PropTypes.string,
|
|
id: PropTypes.number.isRequired,
|
|
pack_id: PropTypes.number.isRequired,
|
|
name: PropTypes.string.isRequired,
|
|
query_id: PropTypes.number.isRequired,
|
|
query_name: PropTypes.string.isRequired,
|
|
query: PropTypes.string.isRequired,
|
|
interval: PropTypes.number.isRequired,
|
|
snapshot: PropTypes.bool,
|
|
removed: PropTypes.bool,
|
|
platform: PropTypes.string,
|
|
version: PropTypes.string,
|
|
shard: PropTypes.number,
|
|
denylist: PropTypes.bool,
|
|
});
|
|
|
|
export interface IScheduledQuery {
|
|
created_at: string;
|
|
updated_at: string;
|
|
id: number;
|
|
pack_id: number;
|
|
name: string;
|
|
query_id: number;
|
|
query_name: string;
|
|
query: string;
|
|
interval: number;
|
|
snapshot: boolean;
|
|
removed: boolean;
|
|
platform?: string;
|
|
version?: string;
|
|
shard: number | null;
|
|
denylist?: boolean;
|
|
}
|