@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 596 B
TypeScript
import { AssociatedEntity } from './floatingIp/AssociatedEntity';
import { Ip } from '../../Ip';
import { StatusEnum } from './floatingIp/StatusEnum';
/** A floating ip */
export interface FloatingIp {
/** Associated entity with the floating ip */
associatedEntity?: AssociatedEntity;
/** ID of the floating ip */
id: string;
/** Value of the floating ip */
ip: Ip;
/** ID of the network */
networkId: string;
/** Floating ip region */
region?: string;
/** Status of the floating ip */
status: StatusEnum;
}
//# sourceMappingURL=FloatingIp.d.ts.map