-
From what I can tell, it doesn't appear that Do you have plans on supporting Pipeline in future releases? Is it on a roadmap, perhaps? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Several of the commands do support the pipeline, signified by The general issue with pipeline support is that many of the CrowdStrike Falcon APIs support multiple "ids" per request, and pipeline support by nature is dealing with single objects (e.g. single "ids"). For instance piping Whenever a particular API restricts to a single identifier, ( |
Beta Was this translation helpful? Give feedback.
-
The next release of PSFalcon will have full pipeline support. I'd appreciate your feedback and testing if you have the chance! You can download the current source from GitHub. |
Beta Was this translation helpful? Give feedback.
Several of the commands do support the pipeline, signified by
ValueFromPipeline
andValueFromPipelineByPropertyName
parameter properties defined at the beginning of the functions.The general issue with pipeline support is that many of the CrowdStrike Falcon APIs support multiple "ids" per request, and pipeline support by nature is dealing with single objects (e.g. single "ids"). For instance piping
Get-FalconHost
toInvoke-FalconHostAction
would performing actions on one host per request, instead of the 100 or 500 allowed by the API--leading to potentially hundreds or thousands of unneeded requests, rate limiting and drastically slower scripts.Whenever a particular API restricts to a si…