@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 432 B
TypeScript
import { Plan } from './Plan';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** The container registry capability for a single region */
export interface Capability {
/** Available plans in the region */
plans: Plan[];
/** The region name */
regionName: string;
/** The type of region ("REGION-1-AZ" or "REGION-3-AZ") */
regionType: RegionTypeEnum;
}
//# sourceMappingURL=Capability.d.ts.map