GoogleCloudPlatform / google-cloud-powershell

PowerShell cmdlets for the Google Cloud Platform
http://googlecloudplatform.github.io/google-cloud-powershell/
Apache License 2.0
135 stars 61 forks source link

Cannot filter Get-GcpProject using where-object #612

Closed idofl closed 6 years ago

idofl commented 6 years ago

Get-GcpProject supports -name, but when trying to run Get-GcpProject | where, filter returns all entries. Would be great if the command supports filtering, so we're not limited to the filters offered by the command

ILMTitan commented 6 years ago

It looks like there was an error with how the objects were being placed on the pipeline. An IEnumerable was being placed there, rather than the individual objects. I have opened PR #613 to fix this.