Skip to main content

Code Map Pseudo CLI

Generated from packages/codeboltjs/src/tools/pseudo-cli/commands.ts. Edit the registry or rerun node scripts/generate-pseudo-cli-docs.js instead of updating this file by hand.

The codemap pseudo CLI module currently exposes 5 commands.

Related SDK docs: Code Map

Commands At A Glance

ActionDescriptionRequired flags
listList codemapsNone
getGet codemap--id
createCreate codemap--data
updateUpdate codemap--id, --data
deleteDelete codemap--id

list

List codemaps

codebolt codemap list

This command takes no parameters.

get

Get codemap

codebolt codemap get --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

create

Create codemap

codebolt codemap create --data <json>
NameFlagTypeRequiredDescription
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

update

Update codemap

codebolt codemap update --id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

delete

Delete codemap

codebolt codemap delete --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.