Created
February 19, 2019 16:13
-
-
Save gkohen/b86e79e51a42efe2d65e88c04061d6b6 to your computer and use it in GitHub Desktop.
JFrog Artifactory CLI delete example
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
{ | |
"files": [ | |
{ | |
"aql": { | |
"items.find": { | |
"type":"file", | |
"created_by":"jenkins-builder", | |
"size":{"$gt":"100000000"}, | |
"stat.downloads":{"$eq":null}, | |
"@qa":"approved", | |
"$or":[ | |
{"name":{"$match":"*.tar"}}, | |
{"name":{"$match":"*.zip"}}, | |
{"name":{"$match":"*.rpm"}} | |
] | |
} | |
}, | |
"sortBy": ["size","name"], | |
"sortOrder": "desc", | |
"limit": 100 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment