From 203541ec21308db0efe049c2dfaf6893eda3b7f9 Mon Sep 17 00:00:00 2001 From: Murray LIANG Date: Wed, 2 Sep 2020 18:02:12 +0800 Subject: [PATCH] Unity: update NasServerUnixDirectoryServiceEnum (#322) Add Local value. --- storops/unity/enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/storops/unity/enums.py b/storops/unity/enums.py index 58f470e4..a962246f 100644 --- a/storops/unity/enums.py +++ b/storops/unity/enums.py @@ -98,6 +98,7 @@ class ReplicationTypeEnum(UnityEnum): class NasServerUnixDirectoryServiceEnum(UnityEnum): NONE = (0, 'No Directory Service') + LOCAL = (1, 'Use local files for looking up identity information.') NIS = (2, 'Use NIS Server') LDAP = (3, 'Use LDAP Server') LOCAL_THEN_NIS = (4, 'Local Then NIS')