コード例 #1
0
    def __init__(self, attrs):
        AtlasBase.__init__(self, attrs)

        self.categoryGuid = attrs.get('categoryGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.description = attrs.get('description')
        self.displayText = attrs.get('displayText')
        self.status = attrs.get('status')
コード例 #2
0
ファイル: lineage.py プロジェクト: zhangqixin9527/atlas
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.baseEntityGuid = attrs.get('baseEntityGuid')
        self.lineageDirection = attrs.get('lineageDirection')
        self.lineageDepth = attrs.get('lineageDepth')
        self.guidEntityMap = attrs.get('guidEntityMap')
        self.relations = attrs.get('relations')
コード例 #3
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.categoryGuid = attrs.get('categoryGuid')
        self.parentCategoryGuid = attrs.get('parentCategoryGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.displayText = attrs.get('displayText')
        self.description = attrs.get('description')
コード例 #4
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.fromEntityId = attrs.get('fromEntityId')
        self.toEntityId = attrs.get('toEntityId')
        self.relationshipId = attrs.get('relationshipId')
コード例 #5
0
ファイル: admin.py プロジェクト: yipianshuyeleaf/atlas
    def __init__(self, attrs=None):
        AtlasBase.__init__(self, attrs)

        attrs = attrs or {}
        _data = attrs.get('data', {})

        self.general = _data.get('general', {})
        self.tag = _data.get('tag', {})
        self.entity = _data.get('entity', {})
        self.system = _data.get('system', {})
コード例 #6
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.termGuid = attrs.get('termGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.displayText = attrs.get('displayText')
        self.description = attrs.get('description')
        self.expression = attrs.get('expression')
        self.steward = attrs.get('steward')
        self.source = attrs.get('source')
        self.status = attrs.get('status')
コード例 #7
0
    def __init__(self, attrs):
        AtlasBase.__init__(self, attrs)

        self.glossaryGuid = attrs.get('glossaryGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.displayText = attrs.get('displayText')