Example case ModuleVersion = 1.22.0:
Step1:
Script:
$objectTypes = "App", "ServerNodeConfiguration", "Stream"
$chouceValue = "DEVELOPING", "ISOLATED", "PRODUCTION", "TASK"
New-QlikCustomProperty -name "BALANCING_TYPE" -valueType "Text" -choiceValues $chouceValue -objectTypes $objectTypes
Result: customProperties added
Step2:
Script:
New-QlikNode -hostname qlik_dev.local -name DEV1 -nodePurpose Both -engineEnabled -printingEnabled -customProperties "BALANCING_TYPE=DEVELOPING"
Result: rim node added with out customProperties. Why with out customProperties?
Example case ModuleVersion = 1.22.0:
Step1:
Script:
$objectTypes = "App", "ServerNodeConfiguration", "Stream"
$chouceValue = "DEVELOPING", "ISOLATED", "PRODUCTION", "TASK"
New-QlikCustomProperty -name "BALANCING_TYPE" -valueType "Text" -choiceValues $chouceValue -objectTypes $objectTypes
Result: customProperties added
Step2:
Script:
New-QlikNode -hostname qlik_dev.local -name DEV1 -nodePurpose Both -engineEnabled -printingEnabled -customProperties "BALANCING_TYPE=DEVELOPING"
Result: rim node added with out customProperties. Why with out customProperties?