In Powershell, how do I reduce an array of JSON objects, like this below, into a simple String array of "Name"? I am NOT encountering this issue with a normal Json-Object (non-array).
[
{
"Name":"Name1",
"Id": 3433
},
{
"Name":"Name2",
"Id": 5455
}
]
Into this:
[
"Name1",
"Name2"
]
Here is what I am trying to do. This code does NOT return an array; instead, it returns the value of the first item in the array.
function FindServiceBusNamespaces($ResourceGroup) {
$toExecute = "az servicebus namespace list --resource-group ${ResourceGroup}"
$response = GetAzResponseObject -Expression "$toExecute"
$namespaceArray = @()
foreach ($ns in $response)
{
$namespaceArray += $ns | Select-Object -ExpandProperty id
}
return $namespaceArray
}
And same result with this:
function FindServiceBusNamespaces($ResourceGroup) {
$toExecute = "az servicebus namespace list --resource-group ${ResourceGroup}"
$response = GetAzResponseObject -Expression "$toExecute"
$namespaceArray = @()
foreach ($ns in $response)
{
$namespaceArray += $ns.id
}
return $namespaceArray
}