Added base64 transmission of script_file

This commit is contained in:
Joe Bowen
2014-05-16 11:42:43 -06:00
parent f79b2b061b
commit cef8a3f116
3 changed files with 48 additions and 3 deletions

View File

@ -36,6 +36,10 @@ VPCS_CREATE_SCHEMA = {
"type": "string",
"minLength": 1,
},
"base_script_file_base64": {
"description": "startup script file base64 encoded",
"type": "string"
},
},
"required": ["path"]
}
@ -73,10 +77,14 @@ VPCS_UPDATE_SCHEMA = {
"minLength": 1,
},
"base_script_file": {
"description": "path to the VPCS startup configuration file",
"description": "path to the VPCS startup script file file",
"type": "string",
"minLength": 1,
},
"base_script_file_base64": {
"description": "startup script file base64 encoded",
"type": "string"
},
},
"required": ["id"]
}