Class MappingRuleFilter (1.9.2)

MappingRuleFilter(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A filter defining the entities that a mapping rule should be applied to. When more than one field is specified, the rule is applied only to entities which match all the fields.

Attributes

NameDescription
parent_entity str
Optional. The rule should be applied to entities whose parent entity (fully qualified name) matches the given value. For example, if the rule applies to a table entity, the expected value should be a schema (schema). If the rule applies to a column or index entity, the expected value can be either a schema (schema) or a table (schema.table)
entity_name_prefix str
Optional. The rule should be applied to entities whose non-qualified name starts with the given prefix.
entity_name_suffix str
Optional. The rule should be applied to entities whose non-qualified name ends with the given suffix.
entity_name_contains str
Optional. The rule should be applied to entities whose non-qualified name contains the given string.
entities MutableSequence[str]
Optional. The rule should be applied to specific entities defined by their fully qualified names.