From 7102c8034f0ac99ab8d24e0b6691b6a3685cd377 Mon Sep 17 00:00:00 2001 From: Lachlan Gleeson Date: Mon, 29 Jul 2024 08:16:05 +1000 Subject: [PATCH] rename variable --- pyisva/core/systemsettings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyisva/core/systemsettings.py b/pyisva/core/systemsettings.py index bafc853..ad2a23d 100644 --- a/pyisva/core/systemsettings.py +++ b/pyisva/core/systemsettings.py @@ -57,7 +57,7 @@ class SystemSettings(object): :var fips: Manage the :ref:`fips ` settings for Verify Access appliances. :var mgmt_authentication: Manage the :ref:`authentication ` to the management interface. :var mgmt_authorization: Manage :ref:`authorization ` to the management interface. - :var container_management: Manage :ref:`containers ` deployed to a Verify Access appliance. + :var container_mgmt: Manage :ref:`containers ` deployed to a Verify Access appliance. ''' @@ -206,7 +206,7 @@ class SystemSettings10070(SystemSettings10060): def __init__(self, base_url, username, password): super(SystemSettings10070, self).__init__(base_url, username, password) - self.container_management = ContainerManagement(base_url, username, password) + self.container_mgmt = ContainerManagement(base_url, username, password) class SystemSettings10080(SystemSettings10070):