ExportRtByDeepGraph
Schedules a job to export runtime model graph by providing RtId's and type as starting point. File is specified using -f argument. The file is downloaded in ZIP-format after job is finished.
Examples
Basic usage:
octo-cli -c ExportRtByDeepGraph `
-f "./export.zip" `
-id "rtId1;rtId2;rtId3" `
-t "MyNamespace/MyType-1"
Export a data permission with its policies and granting roles:
octo-cli -c ExportRtByDeepGraph `
-f "./permission-export.zip" `
-id "rtId1" `
-t "System.Identity/DataPermission" `
-far "System.Identity/PolicyPermission:Inbound;System.Identity/GrantsPermission:Inbound"
Options
| Short | Long | Required | Description |
|---|---|---|---|
-f | --file | yes | File to export |
-id | --runtime-identifiers | yes | A semicolon separated list of RtIds to be used as starting point. |
-t | --ckTypeId | yes | The construction kit type id to be used as starting point. |
-far | --follow-associations | no | Optional semicolon separated list of directed follow rules 'roleId:direction' the traversal applies (direction = Inbound or Outbound), e.g. 'System.Identity/PolicyPermission:Inbound;System.Identity/GrantsPermission:Inbound'. Default: hierarchical System/ParentChild traversal. |