import { InstanceAddressSubnetNetwork } from './InstanceAddressSubnetNetwork';
import { Ip } from '../../Ip';
/** Subnet of the address */
export interface InstanceAddressSubnet {
    /** Subnet gateway ip */
    gatewayIP?: Ip;
    /** Subnet id */
    id: string;
    /** Subnet name */
    name: string;
    /** Subnet network */
    network: InstanceAddressSubnetNetwork;
}
//# sourceMappingURL=InstanceAddressSubnet.d.ts.map