-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
171 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## fmeflow projects delete | ||
|
||
Deletes an FME Flow Project | ||
|
||
### Synopsis | ||
|
||
Deletes an FME Flow Project from the FME Server. Can optionally also delete the project contents and its dependencies. | ||
|
||
``` | ||
fmeflow projects delete [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Delete a project by id | ||
fmeflow projects delete --id 123 | ||
# Delete a project by name | ||
fmeflow projects delete --name "My Project" | ||
# Delete a project by name and all its contents | ||
fmeflow projects delete --name "My Project" --all | ||
# Delete a project by name and all its contents and dependencies | ||
fmeflow projects delete --name "My Project" --all --dependencies | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--all Delete the project and its contents | ||
--dependencies Delete the project and its contents and dependencies. Can only be specified if all is also specified | ||
-h, --help help for delete | ||
--id string The id of the project to delete. Either id or name must be specified | ||
--name string The name of the project to delete. Either id or name must be specified | ||
-y, --no-prompt Do not prompt for confirmation. | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--config string config file (default is $HOME/.config/.fmeflow-cli.yaml) | ||
--json Output JSON | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [fmeflow projects](fmeflow_projects.md) - Lists projects on the FME Server | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## fmeflow projects items | ||
|
||
Lists the items for the specified project | ||
|
||
### Synopsis | ||
|
||
Lists the items contained in the specified project. | ||
|
||
``` | ||
fmeflow projects items [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Get all items for a project via id | ||
fmeflow projects items --id a64297e7-a119-4e10-ac37-5d0bba12194b | ||
# Get all items for a project via name | ||
fmeflow projects items --name test_project | ||
# Get items with type workspace for a project via name | ||
fmeflow projects items --name test_project --type workspace | ||
# Get all items for a project via name without dependencies | ||
fmeflow projects items --name test_project --include-dependencies=false | ||
# Get all items for a project via name with a filter on name | ||
fmeflow projects items --name test_project --filter-string "test_name" --filter-properties "name" | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--filter-property stringArray Property to filter by. Should be one of "name" or "owner". Can only be set if filter-string is also set | ||
--filter-string string String to filter items by | ||
-h, --help help for items | ||
--id string Id of project to get items for | ||
--include-dependencies Include dependencies in the output (default true) | ||
--name string Name of project to get items for | ||
--no-headers Don't print column headers | ||
-o, --output string Specify the output type. Should be one of table, json, or custom-columns (default "table") | ||
--type stringArray Type of items to get | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--config string config file (default is $HOME/.config/.fmeflow-cli.yaml) | ||
--json Output JSON | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [fmeflow projects](fmeflow_projects.md) - Lists projects on the FME Server | ||
|
This file contains 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