我正在尝试使用PowerShell从JSON对象中提取值,我有以下JSON:
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"clusterName": {
"value": "hbasehd35"
},
"location": {
"value": "East US 2"
},
"clusterType": {
"value": "hbase"
},
"clusterVersion": {
"value": "3.5"
},
"clusterWorkerNodeCount": {
"value": 5
},
"subnetName": {
"value": "hbase-subnet"
},
"headNodeSize": {
"value": "Standard_D12_v2"
},
"workerNodeSize": {
"value": "Standard_D12_v2"
},
"zookeeperSize": {
"value": "Large"
},
"clusterStorageAccountName": {
"value": "hbasestorage"
},
"storageAccountType": {
"value": "Standard_GRS"
},
"Environment": {
"value": "test"
}
}
}
这里我想使用powershell从此文件中提取clusterStorageAccountName
,并将其分配给变量。
任何人都知道怎么做?
答案 0 :(得分:6)
使用Get-Content
cmdlet读取文件,使用ConvertFrom-Json
cmdlet进行转换,然后访问所需的属性:
$yourVariable = (Get-Content 'yourJsonFilePath.json' | ConvertFrom-Json).parameters.clusterStorageAccountName.value
答案 1 :(得分:0)
我不知道为什么,但是上面消息中的方法对我不起作用。但是仅在“ ConvertFrom-Json”命令后通过键获取所需的键即可,例如:
$yourVariable = (Get-Content 'yourJsonFilePath.json' | ConvertFrom-Json).clusterStorageAccountName