node-ovh-ts
Version:
OVH API wrapper library for TypeScript
16 lines (13 loc) • 559 B
TypeScript
import { CdnanycastCacheRuleFileTypeEnum } from './CdnanycastCacheRuleFileTypeEnum.js';
import { CdnanycastCacheRuleCacheTypeEnum } from './CdnanycastCacheRuleCacheTypeEnum.js';
import { CdnanycastCacheRuleStatusEnum } from './CdnanycastCacheRuleStatusEnum.js';
type CdnanycastCacheRule = {
cacheRuleId?: number;
cacheType?: CdnanycastCacheRuleCacheTypeEnum;
domain?: string;
fileMatch?: string;
fileType?: CdnanycastCacheRuleFileTypeEnum;
status?: CdnanycastCacheRuleStatusEnum;
ttl?: number;
};
export { CdnanycastCacheRule };