diff --git a/nailgun/entities.py b/nailgun/entities.py index 1ab46562..6862569e 100644 --- a/nailgun/entities.py +++ b/nailgun/entities.py @@ -5005,6 +5005,7 @@ def __init__(self, server_config=None, **kwargs): 'password': entity_fields.StringField(), 'organization': entity_fields.OneToManyField(Organization), 'location': entity_fields.OneToManyField(Location), + 'cacert': entity_fields.StringField(), } self._meta = {'api_path': 'api/v2/http_proxies'} super().__init__(server_config, **kwargs) @@ -5030,6 +5031,7 @@ def read(self, entity=None, attrs=None, ignore=None, params=None): ignore.add('password') ignore.add('organization') ignore.add('location') + ignore.add('cacert') return super().read(entity, attrs, ignore, params)