template.create

描述

object template.create(object/array templates)

此方法允许创建新模板。

此方法只有Admin(管理员)Super admin(超级管理员)用户可用。可以在用户角色设置中撤销调用该方法的权限。更多信息请查看 用户角色

参数

(object/array) 创建模版。

除了标准模板属性之外,该方法还接受以下参数。

参数类型描述
groups
(必须)
object/array将模版添加到主机 群组

主机群组必须定义groupid 属性。
tagsobject/array模版 标签.
templatesobject/array模版 要链接到模版。

模板必须定义templateid属性。
macrosobject/array要为模版创建的用户宏

返回值

(object) 返回一个对象,该对象包含templateids属性下创建的模板的ID。返回ID的顺序与传递模板的顺序匹配。

示例

创建一个模版

创建一个带有标记的模板,并将两个模板链接到此模板。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.create",
  4. "params": {
  5. "host": "Linux template",
  6. "groups": {
  7. "groupid": 1
  8. },
  9. "templates": [
  10. {
  11. "templateid": "11115"
  12. },
  13. {
  14. "templateid": "11116"
  15. }
  16. ],
  17. "tags": [
  18. {
  19. "tag": "Host name",
  20. "value": "{HOST.NAME}"
  21. }
  22. ]
  23. },
  24. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  25. "id": 1
  26. }

响应:

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

来源

CTemplate::create() in ui/include/classes/api/services/CTemplate.php.