Exemplo n.º 1
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.searchResults = attrs.get('searchResults')
        self.aggregationMetrics = attrs.get('aggregationMetrics')
Exemplo n.º 2
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.entity = attrs.get('entity')
        self.score = attrs.get('score')
Exemplo n.º 3
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.typeName = attrs.get('typeName')
        self.attributes = attrs.get('attributes')
Exemplo n.º 4
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.name = attrs.get('name')
        self.name = attrs.get('count')
Exemplo n.º 5
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.relationship = attrs.get('relationship')
        self.referredEntities = attrs.get('referredEntities')
Exemplo n.º 6
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.op = attrs.get('op')
        self.entity = attrs.get('entity')
Exemplo n.º 7
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.type = attrs.get('type')
        self.params = attrs.get('params')
Exemplo n.º 8
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.name = attrs.get('name')
        self.values = attrs.get('values')
Exemplo n.º 9
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.mutatedEntities = attrs.get('mutatedEntities')
        self.guidAssignments = attrs.get('guidAssignments')
Exemplo n.º 10
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.suggestions = attrs.get('suggestions')
        self.prefixString = attrs.get('prefixString')
        self.fieldName = attrs.get('fieldName')
Exemplo n.º 11
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.value = attrs.get('value')
        self.description = attrs.get('description')
        self.ordinal = attrs.get('ordinal')
Exemplo n.º 12
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.glossaryGuid = attrs.get('glossaryGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.displayText = attrs.get('displayText')
Exemplo n.º 13
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.guid = attrs.get('guid')
        self.typeName = attrs.get('typeName')
        self.uniqueAttributes = attrs.get('uniqueAttributes')
Exemplo n.º 14
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')
Exemplo n.º 15
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')
Exemplo n.º 16
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.entityGuids = attrs.get('entityGuids')
        self.entityTypes = attrs.get('entityTypes')
        self.fixIssues = attrs.get('fixIssues')
Exemplo n.º 17
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.guid = attrs.get('guid')
        self.typeName = attrs.get('typeName')
        self.name = attrs.get('name')
        self.status = attrs.get('status')
        self.state = attrs.get('state')
        self.issues = attrs.get('issues')
Exemplo n.º 18
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.enumDefs = attrs.get('enumDefs')
        self.structDefs = attrs.get('structDefs')
        self.classificationDefs = attrs.get('classificationDefs')
        self.entityDefs = attrs.get('entityDefs')
        self.relationshipDefs = attrs.get('relationshipDefs')
        self.businessMetadataDefs = attrs.get('businessMetadataDefs')
Exemplo n.º 19
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.type = attrs.get('type')
        self.name = attrs.get('name')
        self.isContainer = attrs.get('isContainer')
        self.cardinality = attrs.get('cardinality')
        self.isLegacyAttribute = attrs.get('isLegacyAttribute')
        self.description = attrs.get('description')
Exemplo n.º 20
0
    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', {})
Exemplo n.º 21
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.entitiesScanned = attrs.get('entitiesScanned')
        self.entitiesOk = attrs.get('entitiesOk')
        self.entitiesFixed = attrs.get('entitiesFixed')
        self.entitiesPartiallyFixed = attrs.get('entitiesPartiallyFixed')
        self.entitiesNotFixed = attrs.get('entitiesNotFixed')
        self.state = attrs.get('state')
        self.entities = attrs.get('entities')
Exemplo n.º 22
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.attributeName = attrs.get('attributeName')
        self.operator = attrs.get('operator')
        self.attributeValue = attrs.get('attributeValue')
        self.condition = attrs.get('condition')
        self.criterion = attrs.get('criterion')
Exemplo n.º 23
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')
Exemplo n.º 24
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.query = attrs.get('query')
        self.typeName = attrs.get('typeName')
        self.entityFilters = attrs.get('entityFilters')
        self.includeSubTypes = attrs.get('includeSubTypes')
        self.excludeDeletedEntities = attrs.get('excludeDeletedEntities')
        self.offset = attrs.get('offset')
        self.limit = attrs.get('limit')
        self.attributes = attrs.get('attributes')
Exemplo n.º 25
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.termGuid = attrs.get('termGuid')
        self.relationGuid = attrs.get('relationGuid')
        self.description = attrs.get('description')
        self.displayText = attrs.get('displayText')
        self.expression = attrs.get('expression')
        self.createdBy = attrs.get('createdBy')
        self.steward = attrs.get('steward')
        self.source = attrs.get('source')
        self.confidence = attrs.get('confidence')
Exemplo n.º 26
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.category = attrs.get('category')
        self.guid = attrs.get('guid')
        self.createdBy = attrs.get('createdBy')
        self.updatedBy = attrs.get('updatedBy')
        self.createTime = attrs.get('createTime')
        self.updateTime = attrs.get('updateTime')
        self.version = attrs.get('version')
        self.name = attrs.get('name')
        self.description = attrs.get('description')
        self.typeVersion = attrs.get('typeVersion')
        self.serviceType = attrs.get('serviceType')
        self.options = attrs.get('options')
Exemplo n.º 27
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.queryType = non_null(attrs.get('queryType'), QueryType.BASIC.name)
        self.searchParameters = attrs.get('searchParameters')
        self.queryText = attrs.get('queryText')
        self.type = attrs.get('type')
        self.classification = attrs.get('classification')
        self.entities = attrs.get('entities')
        self.attributes = attrs.get('attributes')
        self.fullTextResult = attrs.get('fullTextResult')
        self.referredEntities = attrs.get('referredEntities')
        self.approximateCount = non_null(attrs.get('approximateCount'), -1)
Exemplo n.º 28
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.name = attrs.get('name')
        self.typeName = attrs.get('typeName')
        self.isOptional = attrs.get('isOptional')
        self.cardinality = attrs.get('cardinality')
        self.valuesMinCount = attrs.get('valuesMinCount')
        self.valuesMaxCount = attrs.get('valuesMaxCount')
        self.isUnique = attrs.get('isUnique')
        self.isIndexable = attrs.get('isIndexable')
        self.includeInNotification = attrs.get('includeInNotification')
        self.defaultValue = attrs.get('defaultValue')
        self.description = attrs.get('description')
        self.searchWeight = non_null(attrs.get('searchWeight'), -1)
        self.indexType = attrs.get('indexType')
        self.constraints = attrs.get('constraints')
        self.options = attrs.get('options')
        self.displayName = attrs.get('displayName')
Exemplo n.º 29
0
    def __init__(self, attrs=None):
        attrs = attrs or {}

        AtlasBase.__init__(self, attrs)

        self.query = attrs.get('query')
        self.typeName = attrs.get('typeName')
        self.classification = attrs.get('classification')
        self.termName = attrs.get('termName')
        self.sortBy = attrs.get('sortBy')
        self.excludeDeletedEntities = attrs.get('excludeDeletedEntities')
        self.includeClassificationAttributes = attrs.get(
            'includeClassificationAttributes')
        self.includeSubTypes = non_null(attrs.get('includeSubTypes'), True)
        self.includeSubClassifications = non_null(
            attrs.get('includeSubClassifications'), True)
        self.limit = attrs.get('limit')
        self.offset = attrs.get('offset')
        self.entityFilters = attrs.get('entityFilters')
        self.tagFilters = attrs.get('tagFilters')
        self.attributes = attrs.get('attributes')
        self.sortOrder = attrs.get('sortOrder')
Exemplo n.º 30
0
    def __init__(self, attrs={}):
        AtlasBase.__init__(self, attrs)

        self.type = attrs.get('type')
        self.params = attrs.get('params')