Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLI for Artifactory documentation: Show exclusions and sortBy as an array in schema paragraphs #146

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@ The file spec schema for the copy and move commands is as follows:
"excludeProps": "[Optional]",
"recursive": "[Optional, Default: 'true']",
"flat": "[Optional, Default: 'false']",
"exclusions": "[Optional, Applicable only when 'pattern' is specified]",
"exclusions": [
"Optional",
"Applicable only when 'pattern' is specified"
],
"archiveEntries": "[Optional]",
"build": "[Optional]",
"bundle": "[Optional]",
"validateSymlinks": "[Optional]",
"sortBy": "[Optional]",
"sortBy": [
"Optional"
],
"sortOrder": "[Optional, Default: 'asc']",
"limit": "[Optional],
"offset": [Optional] }
Expand All @@ -46,11 +51,16 @@ The file spec schema for the download command is as follows:
"excludeProps": "[Optional]",
"recursive": "[Optional, Default: 'true']",
"flat": "[Optional, Default: 'false']",
"exclusions": "[Optional, Applicable only when 'pattern' is specified]",
"exclusions": [
"Optional",
"Applicable only when 'pattern' is specified"
],
"archiveEntries": "[Optional]",
"build": "[Optional]",
"bundle": "[Optional]",
"sortBy": "[Optional]",
"sortBy": [
"Optional"
],
"sortOrder": "[Optional, Default: 'asc']",
"limit": [Optional],
"offset": [Optional] }
Expand All @@ -74,11 +84,16 @@ The file spec schema for the create and update release bundle v1 commands is as
"excludeProps": "[Optional]",
"recursive": "[Optional, Default: 'true']",
"flat": "[Optional, Default: 'false']",
"exclusions": "[Optional, Applicable only when 'pattern' is specified]",
"exclusions": [
"Optional",
"Applicable only when 'pattern' is specified"
],
"archiveEntries": "[Optional]",
"build": "[Optional]",
"bundle": "[Optional]",
"sortBy": "[Optional]",
"sortBy": [
"Optional"
],
"sortOrder": "[Optional, Default: 'asc']",
"limit": [Optional],
"offset": [Optional] }
Expand All @@ -102,7 +117,9 @@ The file spec schema for the upload command is as follows:
"regexp": "[Optional, Default: 'false']",
"ant": "[Optional, Default: 'false']",
"archive": "[Optional, Must be: 'zip']",
"exclusions": "[Optional]" }
"exclusions": [
"Optional"
] }
]
}
```
Expand All @@ -119,11 +136,16 @@ The file spec schema for the search and delete commands are as follows:
"props": "[Optional]",
"excludeProps": "[Optional]",
"recursive": "[Optional, Default: 'true']",
"exclusions": "[Optional, Applicable only when 'pattern' is specified]",
"exclusions": [
"Optional",
"Applicable only when 'pattern' is specified"
],
"archiveEntries": "[Optional]",
"build": "[Optional]",
"bundle": "[Optional]",
"sortBy": "[Optional]",
"sortBy": [
"Optional"
],
"sortOrder": "[Optional, Default: 'asc']",
"limit": [Optional],
"offset": [Optional] }
Expand Down
Loading