List configuration revisions
- async AsyncCogniteClient.extraction_pipelines.config.list(
- external_id: str,
Retrieve all configuration revisions from an extraction pipeline.
- Parameters:
external_id (str) – External id of the extraction pipeline to retrieve config from.
- Returns:
Retrieved extraction pipeline configuration revisions
- Return type:
Examples
Retrieve a list of config revisions:
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> res = client.extraction_pipelines.config.list("extId")