@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 318 B
TypeScript
import { IpBlock } from '../../IpBlock';
import { IpStatusEnum } from './IpStatusEnum';
/** CloudIp */
export interface CloudIp {
/** Ip id */
id: string;
/** Ip */
ip?: IpBlock;
/** Ip status */
status: IpStatusEnum;
/** Ip type */
type: string;
}
//# sourceMappingURL=CloudIp.d.ts.map