@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 442 B
TypeScript
import { OperatorEnum } from './edge/OperatorEnum';
/** OVHcloud Connect Edge */
export interface Edge {
/** FTTO access associated to the Edge */
access?: string;
/** Access name associated to the Edge */
accessName: string;
/** Edge id */
id: number;
/** Operator associated to the Edge */
operator: OperatorEnum;
/** uCPE associated to the Edge */
ucpe?: string;
}
//# sourceMappingURL=Edge.d.ts.map