Set zone attribute to no_user_modify for API POST requests

fixes #5166
This commit is contained in:
Michael Friedrich 2017-04-12 09:25:28 +02:00
parent 7f3c5edd38
commit e4ae789a7c
2 changed files with 11 additions and 7 deletions

View File

@ -623,12 +623,16 @@ parameters need to be passed inside the JSON body:
In addition to these parameters a [filter](12-icinga2-api.md#icinga2-api-filters) should be provided.
**Note**: Modified attributes do not trigger a re-evaluation of existing
static [apply rules](3-monitoring-basics.md#using-apply) and [group assignments](3-monitoring-basics.md#group-assign-intro).
Delete and re-create the objects if you require such changes.
Furthermore you cannot modify templates which have already been resolved
during [object creation](12-icinga2-api.md#icinga2-api-config-objects-create).
> **Note**:
>
> Modified attributes do not trigger a re-evaluation of existing
> static [apply rules](3-monitoring-basics.md#using-apply) and [group assignments](3-monitoring-basics.md#group-assign-intro).
> Delete and re-create the objects if you require such changes.
>
> Furthermore you cannot modify templates which have already been resolved
> during [object creation](12-icinga2-api.md#icinga2-api-config-objects-create).
> There are attributes which can only be set for [PUT requests](12-icinga2-api.md#icinga2-api-config-objects-create) such as `groups`
> or `zone`. A complete list of `no_user_modify` attributes can be fetched from the [types](12-icinga2-api.md#icinga2-api-types) URL endpoint.
If attributes are of the Dictionary type, you can also use the indexer format:

View File

@ -82,7 +82,7 @@ abstract class ConfigObject : ConfigObjectBase < ConfigType
return m_ShortName;
}}}
};
[config] name(Zone) zone (ZoneName);
[config, no_user_modify] name(Zone) zone (ZoneName);
[config, no_user_modify] String package;
[config, get_protected, no_user_modify] Array::Ptr templates;
[get_protected, no_user_modify] bool active;