Add new commands for managing managed objects #467
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 PR adds new commands for managing individual managed object configurations:
frodo idm schema managed export
,frodo idm schema object export -a
: Exports all managed objects into a single file in the working directory.frodo idm schema object export -A
: Exports all managed objects into individual files in a new directory namedmanaged
.frodo idm schema object export -i user_role
: Exports the user_role managed object into its own file.-D
to specify a destination directory and-f
to specify a destination file.frodo idm schema managed import
frodo idm schema object import -D dirName
: Import managed objects that are saved in separate files from the specified directory.frodo idm schema object import -f fileName
: Import managed objects that are all contained in the same file from the specified file.frodo idm schema object import -i -f fileName
: Import the individual managed object from the specified file.This PR is dependent on these PRs:
#461
rockcarver/frodo-lib#483