UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 429 B
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