@gridscale/api
Version:
gridscale API Wrapper
10 lines (9 loc) • 324 B
TypeScript
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 declare type IpRelation = {
servers?: ServerinIp;
loadbalancers?: LoadbalancerinIp;
};