@urixen/ptero-connect
    Preparing search index...

    Interface Node

    Represents the main node object, including its relationships.

    interface Node {
        attributes: {
            allocated_resources: { disk: number; memory: number };
            behind_proxy: boolean;
            created_at: string;
            daemon_base: string;
            daemon_listen: number;
            daemon_sftp: number;
            description: string;
            disk: number;
            disk_overallocate: number;
            fqdn: string;
            id: number;
            location_id: number;
            maintenance_mode: boolean;
            memory: number;
            memory_overallocate: number;
            name: string;
            public: boolean;
            scheme: string;
            updated_at: string;
            upload_size: number;
            uuid: string;
        };
        object: "node";
        relationships: { allocations: AllocationList; location: Location };
    }
    Index

    Properties

    attributes: {
        allocated_resources: { disk: number; memory: number };
        behind_proxy: boolean;
        created_at: string;
        daemon_base: string;
        daemon_listen: number;
        daemon_sftp: number;
        description: string;
        disk: number;
        disk_overallocate: number;
        fqdn: string;
        id: number;
        location_id: number;
        maintenance_mode: boolean;
        memory: number;
        memory_overallocate: number;
        name: string;
        public: boolean;
        scheme: string;
        updated_at: string;
        upload_size: number;
        uuid: string;
    }
    object: "node"
    relationships: { allocations: AllocationList; location: Location }