@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 415 B
TypeScript
import { Ip } from '../../Ip';
import { IpBlock } from '../../IpBlock';
/** A structure describing the Bay's network configuration */
export interface IpInfo {
/** Network gateway of the bay */
gateway?: Ip;
/** Network address of the bay */
network: IpBlock;
/** Reserved addresses. You should not use them in your network */
reservedAddresses?: Ip[];
}
//# sourceMappingURL=IpInfo.d.ts.map