@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 514 B
TypeScript
import { Ip } from '../Ip';
import { StateEnum } from './option/StateEnum';
/** Private management gateway */
export interface PrivateGateway {
/** Ip set on your private gateway in your network */
customerIp?: Ip;
/** Your netmask set on the private gateway */
customerNetmask?: Ip;
/** Portgroup in your VMware on OVHcloud used to deploy the private gateway */
customerPortGroup?: string;
/** State of the option */
state: StateEnum;
}
//# sourceMappingURL=PrivateGateway.d.ts.map