@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 543 B
TypeScript
import { StatusEnum } from './popConfig/StatusEnum';
import { Ipv4Block } from '../Ipv4Block';
/** OVHcloud Connect Service Datacenter Configuration */
export interface DatacenterConfig {
/** ID of the datacenter linked */
datacenterId: number;
/** ID of the Datacenter configuration */
id: number;
/** OVH Private AS */
ovhBgpArea?: number;
/** Status of the pop configuration */
status: StatusEnum;
/** Subnet should be a /28 min */
subnet?: Ipv4Block;
}
//# sourceMappingURL=DatacenterConfig.d.ts.map