@taiyi-io/api-connector-ts
    Preparing search index...

    Interface GuestSpec

    云主机规格

    interface GuestSpec {
        address_pool?: string;
        auto_start: boolean;
        boot_image?: string;
        cloud_init?: CloudInitSpec;
        cores: number;
        created_time: string;
        disks: DiskSpec[];
        id: string;
        memory: number;
        monitor: MonitorSpec;
        name: string;
        network_interfaces: NetworkInterfaces;
        network_mode: Bridge;
        qos?: GuestQoS;
        storage_pool: string;
        storage_type: StorageType;
        system: GuestSystemSpec;
    }

    Hierarchy (View Summary)

    Index

    Properties

    address_pool?: string

    地址池

    auto_start: boolean

    自动启动

    boot_image?: string

    引导镜像

    cloud_init?: CloudInitSpec

    CloudInit配置

    cores: number

    核心数

    created_time: string

    创建时间,RFC3339

    disks: DiskSpec[]

    磁盘规格列表

    id: string

    云主机ID

    memory: number

    内存大小

    monitor: MonitorSpec

    监控规格

    name: string

    云主机名称

    network_interfaces: NetworkInterfaces

    网络接口

    network_mode: Bridge

    网络模式

    qos?: GuestQoS

    QoS配置

    storage_pool: string

    存储池

    storage_type: StorageType

    存储类型

    目标系统