MigratorCommand#

pydantic model nublado.controller.models.v1.migrator.MigratorCommand#

Command to start the file system admin pod.

Parameters:

data (Any)

Show JSON schema
{
   "title": "MigratorCommand",
   "description": "Command to start the file system admin pod.",
   "type": "object",
   "properties": {
      "old_user": {
         "title": "Source user to copy from",
         "type": "string"
      },
      "new_user": {
         "title": "Target user to copy to",
         "type": "string"
      }
   },
   "required": [
      "old_user",
      "new_user"
   ]
}

Fields:
field new_user: Annotated[str] [Required]#
field old_user: Annotated[str] [Required]#