With a RegEX expression that uses negative lookbehind, you can filter out all clusters with a name that ends in 'Build'
Get-View-ViewType ClusterComputeResource -Filter @{'Name'='.*(?<!Build)$'}
With a RegEX expression that uses negative lookbehind, you can filter out all clusters with a name that ends in 'Build'