メイン コンテンツにスキップする

Plugins

Plugins add extra functionality to interact with Cognite Data Fusion (CDF):

  • Run — to run Cognite Functions locally and live.
  • Pull — to download a governed configuration made or updated in the CDF application, for example a transformation, to your local machine.
  • Dump — to download the configuration of a CDF resource to your local machine.
注意

Plugins are only supported for Cognite Toolkit version 0.3.0 and later.

Enable and disable plugins

To enable or disable plugins, edit your cdf.toml file. This example enables the run and dump plugins, and disables the pull plugin:

...

[plugins]
run = true
dump = true
pull = false

...