@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 640 B
TypeScript
import { IpBlock } from '../../IpBlock';
/** Frontend UDP */
export interface FrontendUdp {
/** Only attach frontend on these ip. No restriction if null */
dedicatedIpfo?: IpBlock[];
/** Default UDP Farm of your frontend */
defaultFarmId?: number;
/** Disable frontend. Default: 'false' */
disabled: boolean;
/** Human readable name for your frontend, this field is for you */
displayName?: string;
/** Id of your frontend */
frontendId: number;
/** Listening port(s) on the server */
port: string;
/** Zone of you frontend */
zone: string;
}
//# sourceMappingURL=FrontendUdp.d.ts.map