aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_netconf/constant.py
diff options
context:
space:
mode:
authorCherukuri, Venkatanaresh (vn166g) <vn166g@att.com>2019-02-05 09:47:55 -0500
committervenkatanaresh cherukuri <vn166g@att.com>2019-02-06 15:36:41 +0000
commit8df5693cba361b130d9feff10e2477cfec1230d7 (patch)
tree31b007c5c95bcc540b0afba2254413afebb03d0f /components/scripts/python/ccsdk_netconf/constant.py
parentd72aeb02425dc63ee86dbec816aba162cb28b315 (diff)
Blueprint Processor Python Script Components
Adding Python scripts for Netconf Executor components Change-Id: I6d84dea2e47860063a1140146aebe94d61f8d9c1 Issue-ID: CCSDK-997 Signed-off-by: Cherukuri, Venkatanaresh (vn166g) <vn166g@att.com>
Diffstat (limited to 'components/scripts/python/ccsdk_netconf/constant.py')
-rw-r--r--components/scripts/python/ccsdk_netconf/constant.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/components/scripts/python/ccsdk_netconf/constant.py b/components/scripts/python/ccsdk_netconf/constant.py
new file mode 100644
index 000000000..534ca9e13
--- /dev/null
+++ b/components/scripts/python/ccsdk_netconf/constant.py
@@ -0,0 +1,15 @@
+SERVICE_LOG = "log"
+SERVICE_NETCONF = "netconfService"
+SERVICE_MESSAGE = "messageService"
+
+PARAM_REQUEST_ID = "requestId"
+PARAM_ACTION = "action"
+
+STATUS_SUCCESS = "success"
+STATUS_FAILURE = "failure"
+
+CONFIG_TARGET_RUNNING = "running"
+CONFIG_TARGET_CANDIDATE = "candidate"
+CONFIG_DEFAULT_OPERATION_MERGE = "merge"
+CONFIG_DEFAULT_OPERATION_REPLACE = "replace"
+CONFIG_DEFAULT_OPERATION_NONE = "none"