Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(metadata-model): marking data process aspect & snapshot as deprecated #3172

Merged
merged 1 commit into from
Sep 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ import com.linkedin.common.Status
/**
* A union of all supported metadata aspects for a data process
*/
typeref DataProcessAspect = union[DataProcessKey, Ownership, DataProcessInfo, Status]
@deprecated = "Use DataJob instead."
typeref DataProcessAspect = union[DataProcessKey, Ownership, DataProcessInfo, Status]
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import com.linkedin.metadata.aspect.DataProcessAspect
"name": "dataProcess",
"keyAspect": "dataProcessKey"
}
@deprecated = "Use DataJob instead."
record DataProcessSnapshot {

/**
Expand All @@ -21,4 +22,4 @@ record DataProcessSnapshot {
* The list of metadata aspects associated with the data process. Depending on the use case, this can either be all, or a selection, of supported aspects.
*/
aspects: array[DataProcessAspect]
}
}