hetzner-ts
    Preparing search index...

    Interface FloatingIP

    interface FloatingIP {
        blocked: boolean;
        created: string;
        description: null | string;
        dns_ptr: { [ip: string]: string }[];
        home_location: {
            city: string;
            country: string;
            description: string;
            id: number;
            latitude: number;
            longitude: number;
            name: string;
            network_zone: string;
        };
        id: number;
        ip: string;
        labels: Record<string, string>;
        name: string;
        protection: { delete: boolean };
        server: null | number;
        type: "ipv4" | "ipv6";
    }
    Index

    Properties

    blocked: boolean
    created: string
    description: null | string
    dns_ptr: { [ip: string]: string }[]
    home_location: {
        city: string;
        country: string;
        description: string;
        id: number;
        latitude: number;
        longitude: number;
        name: string;
        network_zone: string;
    }
    id: number
    ip: string
    labels: Record<string, string>
    name: string
    protection: { delete: boolean }
    server: null | number
    type: "ipv4" | "ipv6"