UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 338 B
import { AccessTypeEnum } from './AccessTypeEnum'; /** A structure describing the server's access */ export interface Access { /** Password */ password?: string; /** Application access type */ type: AccessTypeEnum; /** Url */ url?: string; /** Login */ user?: string; } //# sourceMappingURL=Access.d.ts.map