plan change-storagedir

post

/V0/nosql/admin/plan#change-storagedir

Adds or removes a storage directory on a Storage Node for use by a Replication Node. When add is specified, the optional storagedirsize flag can be specified to set the size of the directory. The size format is number [unit], where unit can be KB, MG, GB, or TB. The unit is case insensitive and may be separated from the number by a space, -, or _.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Example:
{
    "command":"change-storagedir",
    "arguments":[
        {
            "sn":"Id of SN to change"
        },
        {
            "storagedir":"Path to storage directory"
        },
        {
            "add":"true|false Whether to add storage directory"
        },
        {
            "remove":"true|false Whether to remove storage directory"
        },
        {
            "storagedirsize":"Size of storage directory"
        }
    ]
}
Nested Schema : arguments
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : argumentValue
Match One Schema
Show Source
Back to Top

Response

Supported Media Types

200 Response

Operation ended successfully
Body ()
Root Schema : commonResponse
Type: object
Show Source
Example:
{
    "operation":"operation executed",
    "returnCode":"5000 when success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem at execution",
    "description":"error description when returnCode != 5000",
    "returnValue":"JSON object with the output returned by the command when returnCode: 5000(success). Otherwise, null"
}
Nested Schema : returnValue
Type: object
Back to Top