summaryrefslogtreecommitdiff
path: root/pycadf/reason.py
diff options
context:
space:
mode:
authorGordon Chung <chungg@ca.ibm.com>2013-08-06 09:45:23 -0400
committerGordon Chung <chungg@ca.ibm.com>2013-08-06 15:27:29 -0400
commit7f76e5cf7bf560603829ffaa73458a86c384ecb7 (patch)
treefc371bbd7b86ce8fb3b74d81aa56c9cbd66c4ce9 /pycadf/reason.py
parentdd9bb2391719c7f0d4f26b127fdff541645f71d4 (diff)
downloadpycadf-7f76e5cf7bf560603829ffaa73458a86c384ecb7.tar.gz
DMTF CADF format
Adding support for the DMTF Cloud Audit (CADF) format which will be used along with a generic notification filter to audit 'core' component APIs. initial code drop blueprint support-standard-audit-formats Change-Id: I3b27ceae8faa6427e4be1290c1406102e790e2e3
Diffstat (limited to 'pycadf/reason.py')
-rw-r--r--pycadf/reason.py70
1 files changed, 70 insertions, 0 deletions
diff --git a/pycadf/reason.py b/pycadf/reason.py
new file mode 100644
index 0000000..57f559f
--- /dev/null
+++ b/pycadf/reason.py
@@ -0,0 +1,70 @@
+# -*- encoding: utf-8 -*-
+#
+# Copyright 2013 IBM Corp.
+#
+# Author: Matt Rutkowski <mrutkows@us.ibm.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+from pycadf import cadftype
+
+TYPE_URI_REASON = cadftype.CADF_VERSION_1_0_0 + 'reason'
+
+REASON_KEYNAME_REASONTYPE = "reasonType"
+REASON_KEYNAME_REASONCODE = "reasonCode"
+REASON_KEYNAME_POLICYTYPE = "policyType"
+REASON_KEYNAME_POLICYID = "policyId"
+
+REASON_KEYNAMES = [REASON_KEYNAME_REASONTYPE,
+ REASON_KEYNAME_REASONCODE,
+ REASON_KEYNAME_POLICYTYPE,
+ REASON_KEYNAME_POLICYID]
+
+
+class Reason(cadftype.CADFAbstractType):
+
+ reasonType = cadftype.ValidatorDescriptor(REASON_KEYNAME_REASONTYPE,
+ lambda x: isinstance(x, str))
+ reasonCode = cadftype.ValidatorDescriptor(REASON_KEYNAME_REASONCODE,
+ lambda x: isinstance(x, str))
+ policyType = cadftype.ValidatorDescriptor(REASON_KEYNAME_POLICYTYPE,
+ lambda x: isinstance(x, str))
+ policyId = cadftype.ValidatorDescriptor(REASON_KEYNAME_POLICYID,
+ lambda x: isinstance(x, str))
+
+ def __init__(self, reasonType=None, reasonCode=None, policyType=None,
+ policyId=None):
+
+ # Reason.reasonType
+ if reasonType is not None:
+ setattr(self, REASON_KEYNAME_REASONTYPE, reasonType)
+
+ # Reason.reasonCode
+ if reasonCode is not None:
+ setattr(self, REASON_KEYNAME_REASONCODE, reasonCode)
+
+ # Reason.policyType
+ if policyType is not None:
+ setattr(self, REASON_KEYNAME_POLICYTYPE, policyType)
+
+ # Reason.policyId
+ if policyId is not None:
+ setattr(self, REASON_KEYNAME_POLICYID, policyId)
+
+ # TODO(mrutkows): validate this cadf:Reason type against schema
+ def is_valid(self):
+ # MUST have at least one valid pairing of reason+code or policy+id
+ return ((hasattr(self, REASON_KEYNAME_REASONTYPE) and
+ hasattr(self, REASON_KEYNAME_REASONCODE)) or
+ (hasattr(self, REASON_KEYNAME_POLICYTYPE) and
+ hasattr(self, REASON_KEYNAME_POLICYID)))