Problem
There is no kbagent config rename or kbagent config update command to rename an existing configuration.
Workaround used
Direct Storage API call:
curl -X PUT \
-H "X-StorageApi-Token: <token>" \
-d "name=New+Name" \
"https://connection.keboola.com/v2/storage/branch/{branch_id}/components/{component_id}/configs/{config_id}"
Expected behavior
kbagent config rename --project iterable --component keboola.python-transformation-v2 --config-id 1248470031 --name "New Name"
Or more generally:
kbagent config update --project iterable --component keboola.python-transformation-v2 --config-id 1248470031 --name "New Name" --description "New description"
With optional --branch flag to target a dev branch.
Problem
There is no
kbagent config renameorkbagent config updatecommand to rename an existing configuration.Workaround used
Direct Storage API call:
Expected behavior
kbagent config rename --project iterable --component keboola.python-transformation-v2 --config-id 1248470031 --name "New Name"Or more generally:
With optional
--branchflag to target a dev branch.