@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 492 B
TypeScript
import { StateEnum } from './option/StateEnum';
import { Ip } from '../Ip';
/** VMware Aria Operations option */
export interface Vrops {
/** State of the option */
state: StateEnum;
/** Available upgrades for Aria Operations */
upgrades?: string[];
/** Url of Aria Operations interface */
url?: string;
/** VMware Aria Operation public IP */
vROpsPublicIP?: Ip;
/** Version of Aria Operations */
version?: string;
}
//# sourceMappingURL=Vrops.d.ts.map