@gridscale/api
Version:
gridscale API Wrapper
15 lines (12 loc) • 386 B
text/typescript
/* 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;
}