创建

说明

object template.create(object/array **templates**)

此方法允许创建新模板。

参数

(object/array) 创建模板。

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

参数类型说明
groups
(必须)
object/array模板添加到主机组。
主机组必须定义groupid属性。
tagsobject/array模板标签。
templatesobject/array被链接到模板的模板。
模板必须定义templateid属性。
macrosobject/array为模板创建的用户宏。
hostsobject/array链接到模板的主机。
主机必须定义hostid属性。

返回值

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

范例

创建模板

创建一个模板并将其链接到两台主机上。

Request 请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.create",
  4. "params": {
  5. "host": "Linux template",
  6. "groups": {
  7. "groupid": 1
  8. },
  9. "hosts": [
  10. {
  11. "hostid": "10084"
  12. },
  13. {
  14. "hostid": "10090"
  15. }
  16. ]
  17. },
  18. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  19. "id": 1
  20. }

Response 响应:

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

源码

CTemplate::create()方法可在ui/include/classes/api/services/CTemplate.php中参考。