创建

描述

object script.create(object/array **scripts**)

此方法允许创建一个新的脚本

参数

(object/array) Scripts to create.

The method accepts scripts with the standard script properties.

返回值

(object)返回一个对象,该对象包含在scriptids属性下创建的脚本的id。返回的id的顺序与通过的脚本的顺序相匹配。

示例如下

创建一个脚本

创建一个重启一个server的脚本,这个脚本需要对该主机有写的权限,并且在脚本运行在界面之前会提示一个确认信息。

Request:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "script.create",
  4. "params": {
  5. "name": "Reboot server",
  6. "command": "reboot server 1",
  7. "host_access": 3,
  8. "confirmation": "Are you sure you would like to reboot the server?"
  9. },
  10. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  11. "id": 1
  12. }

Response:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "scriptids": [
  5. "3"
  6. ]
  7. },
  8. "id": 1
  9. }

CScript::create() in frontends/php/include/classes/api/services/CScript.php.