UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 485 B
import { Ipv4Block } from '../../../Ipv4Block'; /** Service Wiregard peer details */ export interface Peer { /** Wireguard peer status */ active: boolean; /** Wireguard peer description */ description: string; /** Wireguard peer name */ name: string; /** Wireguard peer id */ peerId: string; /** Wireguard peer private IP */ privateIpv4: Ipv4Block; /** Wireguard peer public key */ publicKey: string; } //# sourceMappingURL=Peer.d.ts.map