UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 751 B
import { RegionContinentEnum } from '../RegionContinentEnum'; import { RegionTypeEnum } from '../RegionTypeEnum'; import { CountryCode2LettersEnum } from '../../CountryCode2LettersEnum'; /** Details about a region */ export interface AvailabilityRegion { /** Availability zones of the region */ availabilityZones: string[]; /** Region continent code */ continentCode: RegionContinentEnum; /** Region country code */ countryCode: CountryCode2LettersEnum; /** 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