enahncements to model import/export#47
Merged
privateip merged 1 commit intoitential:develfrom Mar 4, 2025
Merged
Conversation
This commit enhances the model import/export commands as well as the delete command. The import command now supports `--expand` which will cause the application to not only export the LCM model but also all dependent assets such as workflows and transformations. The export command will now introspect the exported model json file and properly reconstruct the model with all dependencies imported. Additionally, there is a new command line option for export `--skip-checks` which will skip checking for action dependencies and simply import the model. The delete command also has a new command line option `--all`. When used, ipctl will delete the model and delete all assoicated assets such as workflows and transformations tied to actions.
|
Thanks for adding support for this feature. It'll make managing LCM Model much, much easier. However, I think maybe you mean 'The export command now supports --expand...', rather than import? :-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit enhances the model import/export commands as well as the delete command.
The import command now supports
--expandwhich will cause the application to not only export the LCM model but also all dependent assets such as workflows and transformations.The export command will now introspect the exported model json file and properly reconstruct the model with all dependencies imported. Additionally, there is a new command line option for export
--skip-checkswhich will skip checking for action dependencies and simply import the model.The delete command also has a new command line option
--all. When used, ipctl will delete the model and delete all assoicated assets such as workflows and transformations tied to actions.