sdk.analysis.list()
elements.sdk.api.analysis
Retrieve a list of Analyses.
Retrieve the metadata for all Analyses that this user has access to and that match the provided search filters, if any. Empty Arg list will list all available Analyses.
Parameters
- [Optional] search_text (str) - applied to the entire manifest returning all Analyses with metadata that matches the search text
- [Optional] min_created_on (datetime) - for Analyses created only after a certain time
- [Optional] max_created_on (datetime) - filter for Analyses created only before a certain time
- [Optional] pagination (Pagination) - Pagination object only with page size field set
Returns
List[Analysis]
Example(s)
# Query Analyses by search_text
await sdk.analysis.list(search_text="Awesome")
# Output (List[Analysis])
[id: "40078e32-27ee-438e-87bf-87063482c7b4"
author: "[email protected]"
created_on {
seconds: 1667404863
nanos: 766877000
}
name: "My Awesome Analysis"
]Updated 6 months ago