This is a translation of the original English documentation page. Help us make it better.

hostgroup.massupdate

説明

object hostgroup.massupdate(object parameters)

この方法は、複数の host group において、ホストとテンプレートを指定したものに置き換えることができます。

このメソッドは、Admin および Super admin ユーザータイプにのみ使用できます。このメソッドを呼び出す許可は、
ユーザーロール設定で取り消すことができます。詳細については、User roles を参照してください。

パラメータ

(object) 更新する host group の ID と更新すべきオブジェクトを含むパラメータ。

パラメータ Type 説明
groups
(required)
object/array Host groups to be updated.

The host groups must have the groupid property defined.
hosts
(required)
object/array Hosts to replace the current hosts on the given host groups.
All other hosts, except the ones mentioned, will be excluded from host groups.
Discovered hosts will not be affected.

The hosts must have the hostid property defined.
templates
(required)
object/array Templates to replace the current templates on the given host groups.
All other templates, except the ones mentioned, will be excluded from host groups.

The templates must have the templateid property defined.

戻り値

(object) groupids プロパティの下で更新された host group の ID を含むオブジェクトを返します。

host group内のホストとテンプレートの入れ替え

host group 内のすべてのホストを指定されたホストに置き換え、ホストグループ内のすべてのテンプレートのリンクを解除します。

Request:

{
           "jsonrpc": "2.0",
           "method": "hostgroup.massupdate",
           "params": {
               "groups": [
                   {
                       "groupid": "6"
                   }
               ],
               "hosts": [
                   {
                       "hostid": "30050"
                   }
               ],
               "templates": []
           },
           "auth": "f223adf833b2bf2ff38574a67bba6372",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "groupids": [
                   "6",
               ]
           },
           "id": 1
       }

参照

ソース

CHostGroup::massUpdate() in ui/include/classes/api/services/CHostGroup.php.