From d52e13758b1bdd20424ec040ad48fb0fcdde9ceb Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Wed, 4 Dec 2024 11:32:29 +0100 Subject: [PATCH] fix: don't send `is_multimaster` NSGroup field in update See [this issue](https://github.com/infobloxopen/infoblox-client/issues/386). --- infoblox_client/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infoblox_client/objects.py b/infoblox_client/objects.py index 5d7f12f..06ec899 100644 --- a/infoblox_client/objects.py +++ b/infoblox_client/objects.py @@ -12946,7 +12946,7 @@ class Nsgroup(InfobloxObject): 'external_secondaries', 'grid_primary', 'grid_secondaries', 'is_grid_default', 'is_multimaster', 'name', 'use_external_primary'] - _search_for_update_fields = ['name'] + _search_for_update_fields = ['name', 'is_multimaster'] _updateable_search_fields = ['comment', 'name'] _all_searchable_fields = ['comment', 'name'] _return_fields = ['comment', 'extattrs', 'name']