sdk.analysis_computation.run()

elements.sdk.api.analysis_computation

Run an Analysis Computation.

The first time this endpoint is called, the system initiates the running of the provided Analysis Computation ID. This causes credits to be place in pending status and eventually consumed when the computation completes. Credits are consumed as each result is produced. Once an Analysis Computation has been run, all of its underlying constituent parts are considered locked and cannot be modified.

Parameters

  • analysis_computation_ids (List[str]) : list of Analysis Computations to run

Returns

None

Example(s)

# Run an Analysis Computation
await sdk.analysis_computation.run(
  analysis_computation_ids=["cf880d7e-8a4d-4c0e-a946-9b8e8a6f225d"]
)