Barbara 4bes
Results
2
comments of
Barbara 4bes
I talked about this with @irwins and found the following syntax does work: ```PowerShell param( [Parameter(Mandatory)] [string] $KeyVaultName, [Parameter()] [ValidateSet('WestEurope', 'NorthEurope', 'WestUs2')] [string] $Location = 'WestEurope' ) $azADGroup = Get-AzADGroup...
In the docs you linked I see _AccessPolicyEntry_, which is an object, and _accessPolicies_, which is an array. The PSARM syntax in this case looks like it is is creating...