-
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.
Merge pull request #149 from peridio/ENG-1220
granular bundles
- Loading branch information
Showing
5 changed files
with
44 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
``` | ||
Usage: peridio artifacts create [OPTIONS] --name <NAME> --organization-prn <ORGANIZATION_PRN> | ||
Options: | ||
--description <DESCRIPTION> | ||
An arbitrary string attached to the resource. Often useful for displaying to users | ||
--name <NAME> | ||
The resource's name, meant to be displayable to users | ||
--organization-prn <ORGANIZATION_PRN> | ||
The PRN of the organization you wish to create the resource within | ||
-h, --help | ||
Print help | ||
``` |
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,8 @@ | ||
``` | ||
Usage: peridio artifacts get --prn <PRN> | ||
Options: | ||
--prn <PRN> The PRN of the resource to get | ||
-h, --help Print help | ||
``` |
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,11 @@ | ||
``` | ||
Usage: peridio artifacts list [OPTIONS] --search <SEARCH> | ||
Options: | ||
--limit <LIMIT> Limit the length of the page | ||
--order <ORDER> Specify whether the query is ordered ascending or descending | ||
--search <SEARCH> A search query per the Peridio API's search query language. It is recommended to quote the value of this option | ||
--page <PAGE> A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response (if not null) to request subsequent results | ||
-h, --help Print help | ||
``` |
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,10 @@ | ||
``` | ||
Usage: peridio artifacts update [OPTIONS] --prn <PRN> | ||
Options: | ||
--prn <PRN> The PRN of the resource to update | ||
--description <DESCRIPTION> An arbitrary string attached to the resource. Often useful for displaying to users | ||
--name <NAME> The resource's name, meant to be displayable to users | ||
-h, --help Print help | ||
``` |
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