@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 715 B
TypeScript
import { IpBlock } from '../IpBlock';
import { MacAddress } from '../MacAddress';
/** OVHcloud Connect Diagnostic Result */
export interface DiagnosticResult {
/** As-path for routes */
aspath?: string;
/** Command sent to equipment */
cmd?: string;
/** Local prefix used for routes */
localprefix?: number;
/** Mac address */
mac?: MacAddress;
/** BGP Med (Metric) */
med?: number;
/** Output of command sent to equipment */
output?: string;
/** Prefix for routes */
prefix?: IpBlock;
/** eVPN router mac */
routermac?: string;
/** Local date when route/mac was declared */
timestamp?: string;
}
//# sourceMappingURL=DiagnosticResult.d.ts.map