So, instead of having to specify the exact key like so:
$AdditionalConfiguration['network.dvsHostNic["key-vim-profile-host-DvsHostVnicProfile-SVD-VSM03-management-management"].ipConfig.IpAddressPolicy.address’] = “10.10.10.10″
I was wondering if you could do something like using a wildcard like this: $AdditionalConfiguration[*management*.address’] = “10.10.10.10″ to set the hash table value. I tried it but it just created a new key with like *management*.address with value 10.10.10.10
I was wondering if it was possible to just modify the existing hash table value with wildcards instead of creating a new hash table $var and using the switch statement.