@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 594 B
TypeScript
import { CacheRuleCacheTypeEnum } from './CacheRuleCacheTypeEnum';
import { CacheRuleFileTypeEnum } from './CacheRuleFileTypeEnum';
import { CacheRuleStatusEnum } from './CacheRuleStatusEnum';
/** CacheRules for a domain */
export interface CacheRule {
/** Id for this cache rule */
cacheRuleId: number;
/** */
cacheType: CacheRuleCacheTypeEnum;
/** */
domain: string;
/** */
fileMatch: string;
/** */
fileType: CacheRuleFileTypeEnum;
/** */
status: CacheRuleStatusEnum;
/** */
ttl: number;
}
//# sourceMappingURL=CacheRule.d.ts.map