Adding automatic filters #871
aaronparker
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've created a working solution for adding output filters for
Get-EvergreenApp. This should simplify returning details for a specific application by not requiring the use ofWhere-Object.The filters can be added to
/Evergreen/Filters, along side the cachedAppsandManifests. For example, adding/Evergreen/Filters/MicrosoftTeams.jsonwith the following content:{ "filters": [ { "property": "Release", "operator": "eq", "value": "Enterprise" }, { "property": "Architecture", "operator": "in", "value": ["x64", "ARM64"] } ], "logicalOperator": "and" }Will automatically filter the output from `Get-EvergreenApp -Name "MicrosoftTeams":
Beta Was this translation helpful? Give feedback.
All reactions