UNPKG

@gridscale/api

Version:
15 lines (12 loc) 386 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import { LoadbalancerinIp } from './LoadbalancerinIp'; import { ServerinIp } from './ServerinIp'; /** * The information about other object which are related to this IP. the object could be servers and/or loadbalancer */ export type IpRelation = { servers?: ServerinIp; loadbalancers?: LoadbalancerinIp; }