plan create-user

post

/V0/nosql/admin/plan#create-user

ストアで指定された名前でユーザーを作成します。admin引数は、作成したユーザーにすべての管理権限があることを示します。

リクエスト

この操作のリクエスト・パラメータはありません。

サポートされているメディア・タイプ
リクエスト本文 - application/json ()
管理CLIコマンド:
plan create-user -name [-admin] [-disable] [-password ]
ルート・スキーマ: schema
型: object
ソースの表示
例:
{
    "command":"create-user",
    "arguments":[
        {
            "name":"User name"
        },
        {
            "admin":"true|false Whether to create an admin user"
        },
        {
            "disable":"true|false Whether to create a disabled user"
        },
        {
            "password":"Password of the new user"
        }
    ]
}
ネストされたスキーマ: argument
型: array
ソースの表示
ネストされたスキーマ: items
型: object
ソースの表示
ネストされたスキーマ : argumentValue
1つのスキーマに一致
ソースの表示
先頭に戻る

レスポンス

サポートされているメディア・タイプ

200 Response

Operation ended successfully
本文()
ルート・スキーマ: commonResponse
型: object
ソースの表示
例:
{
    "operation":"Command related operation",
    "returnCode":"Error code to indicate the command result, 5000 infers plan success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem of executing plan.",
    "description":"Textual output of the command",
    "returnValue":"Valuable information returned by the command execution in JSON object format"
}
ネストされたスキーマ: returnValue
型: object
先頭に戻る