UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 605 B
import { RegionContinentEnum } from '../RegionContinentEnum'; import { RegionTypeEnum } from '../RegionTypeEnum'; /** Details about a region */ export interface AvailabilityRegion { /** Availability zones of the region */ availabilityZones: string[]; /** Region continent code */ continentCode: RegionContinentEnum; /** Location of the datacenter where the region is */ datacenter: string; /** Region is enabled */ enabled: boolean; /** Region name */ name: string; /** Region type */ type: RegionTypeEnum; } //# sourceMappingURL=AvailabilityRegion.d.ts.map