@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 398 B
TypeScript
import { Ip } from '../../../Ip';
import { TypeEnum } from './associatedEntity/TypeEnum';
/** Associated entity with a floating ip */
export interface AssociatedEntity {
/** ID of the gateway */
gatewayId: string;
/** ID of the port */
id: string;
/** IP of the port */
ip: Ip;
/** Type of the port */
type: TypeEnum;
}
//# sourceMappingURL=AssociatedEntity.d.ts.map