Skip to content

map

Manage maps (geospatial)

Authentication scope: fabric

List maps in a workspace

Terminal window
fabio map list --workspace <value>
Flag Type Required Description
--workspace string Yes Workspace ID

Read-only · Returns list

Show details of a map

Terminal window
fabio map show --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Map ID

Read-only · Returns object

Create a new map

Terminal window
fabio map create --workspace <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Display name
--description string No Optional description
--sensitivity-label string No Sensitivity label ID to apply on creation

Mutates state · Returns object

Update map properties

Terminal window
fabio map update --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Map ID
--name string No New display name
--description string No New description

Mutates state · Returns object

Delete a map

Terminal window
fabio map delete --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Map ID
--hard-delete bool No Permanently delete (cannot be recovered)

Mutates state · Destructive · Returns void

Get the definition of a map

Terminal window
fabio map get-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Map ID
--decode bool No Decode base64 payloads inline (adds decodedPayload field)

Read-only · Long-running operation · Returns object

Update the definition of a map

Terminal window
fabio map update-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Map ID
--file string No Path to definition file
--content string No Inline definition content

Mutates state · Long-running operation · Returns void