/** * @type Zone: Zone is the container for hostnames and various CDN settings/properties. Each zone is tied to a single origin. * * @property zoneId: Identity of the zone. * - **Max Length:** 100 * * @property name: Name given to the zone. This needs to be a DNS domain name for eg example.com * - **Max Length:** 100 * * @property status: Status of the zone for eg \"Pending\" , \"Active\" * */ export type Zone = { zoneId: string; name: string; status: ZoneStatusEnum; } & { [key: string]: any; }; export type ZoneStatusEnum = 'active' | 'pending' | 'initializing' | 'moved' | 'deleted' | 'deactivated';