import { Subnet } from './subnet.js'; export type Route = { etag: string; id: string; name: string; properties: { addressPrefix: string; hasBgpOverride: boolean; nextHopIpAddress: string; nextHopType: string; provisioningState: string; }; type: string; }; export type RouteTable = { etag: string; id: string; name: string; location: string; properties: { disableBgpRoutePropagation: boolean; provisioningState: string; resourceGuid: string; routes: Route[]; subnets: Subnet[]; }; type: string; tags: Record; };