@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
17 lines • 459 B
TypeScript
import { IpBlock } from '../../IpBlock';
import { Ip } from '../../Ip';
import { IPPool } from './IPPool';
/** Subnet */
export interface Subnet {
    /** Subnet CIDR */
    cidr: IpBlock;
    /** Is DHCP enabled for the subnet */
    dhcpEnabled: boolean;
    /** Gateway IP in the subnet */
    gatewayIp?: Ip;
    /** Subnet id */
    id: string;
    /** List of ip pools allocated in subnet */
    ipPools: IPPool[];
}
//# sourceMappingURL=Subnet.d.ts.map