Package com.atlan.model.discovery
Interface CommonFilters
public interface CommonFilters
Base class for fields that can be used to filter all assets.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final EnumFilterField
Filter assets to those with any one of the provided collection of announcement types.static final DateFilterField
Filter assets to those whose creation time (in Atlan) matches.static final StrictEqualityFilterField
Filter assets to those that whose creating user matches.static final StringFilterField
Filter assets whose description matches.static final ExactMatchFilterField
Filter assets to those whose UUID matches.static final BooleanFilterField
When true, filter to assets that have lineage and when false to assets that do not have lineage.static final BooleanFilterField
When true, filter to assets that have a README and when false to assets without READMEs.static final BooleanFilterField
When true, filter to assets that have one or more links (resources) and when false to assets without links.static final BooleanFilterField
When true, filter to assets that are soft-deleted (archived) and when false to assets that are still active.static final StringFilterField
Filter assets to those whose technical or business name matches.static final StringFilterField
Filter assets to those whose unique qualifiedName matches.static final DateFilterField
Filter assets to those whose create time at source matches.static final DateFilterField
Filter assets to those whose last update at source matches.static final BooleanFilterField
When true, filter to assets the use has starred and when false to assets that are not starred by the user.static final DateFilterField
Filter assets to those whose last update time (in Atlan) matches.static final StrictEqualityFilterField
Filter assets to those that whose last updating user matches.
-
Field Details
-
STARRED
When true, filter to assets the use has starred and when false to assets that are not starred by the user. -
HAS_LINEAGE
When true, filter to assets that have lineage and when false to assets that do not have lineage. -
HAS_README
When true, filter to assets that have a README and when false to assets without READMEs. -
HAS_RESOURCE
When true, filter to assets that have one or more links (resources) and when false to assets without links. -
IS_ARCHIVED
When true, filter to assets that are soft-deleted (archived) and when false to assets that are still active. -
ANNOUNCEMENT_TYPE
Filter assets to those with any one of the provided collection of announcement types. To match assets with no announcements, use a value of "none". -
NAME
Filter assets to those whose technical or business name matches. -
GUID
Filter assets to those whose UUID matches. -
QUALIFIED_NAME
Filter assets to those whose unique qualifiedName matches. -
SOURCE_UPDATED_AT
Filter assets to those whose last update at source matches. -
SOURCE_CREATED_AT
Filter assets to those whose create time at source matches. -
UPDATE_TIME
Filter assets to those whose last update time (in Atlan) matches. -
CREATE_TIME
Filter assets to those whose creation time (in Atlan) matches. -
UPDATED_BY
Filter assets to those that whose last updating user matches. -
CREATED_BY
Filter assets to those that whose creating user matches. -
DESCRIPTION
Filter assets whose description matches.
-