nuxt-app
    Preparing search index...

    Interface UserCreateRequestDTO

    ユーザ作成リクエストオブジェクト

    interface UserCreateRequestDTO {
        email: string;
        isAdmin: boolean;
        maxCpuCore?: number;
        maxMemorySize?: number;
        maxStorageSize?: number;
        name: string;
        password: string;
        useTOTP: boolean;
    }
    Index

    Properties

    email: string

    ユーザのメールアドレス

    isAdmin: boolean

    ユーザが管理者かどうかを示すフラグ

    maxCpuCore?: number

    ユーザが使用できる最大CPUコア数

    maxMemorySize?: number

    ユーザが使用できる最大メモリサイズ(バイト単位)

    maxStorageSize?: number

    ユーザが使用できる最大ストレージサイズ(バイト単位)

    name: string

    ユーザの名前

    password: string

    ユーザのパスワード

    useTOTP: boolean

    TOTPを使用するかどうかを示すフラグ