Hi,
is there any rule or something that Organization vDC name can’t have characters like space?
Let’s say I have organization named “Test vDC” and the name is accepted by vCD. But when I am using PowerCLI to get VMs in this vDC its not working because the field Organization vDC is empty. If I change the name to “Test_vDC” its working OK.
Example
PS C:userPowerShellvCD> get-civm -Org test | select Name, OrgVdc
Name OrgVdc
—- ——
Photon TestvDC
Server-2019 test2
SRV-2016-T… test
SRV-2016-T… TestvDC
SRV-2016-T… TestvDC
SRV-2019-t… TestvDC
PS C:userPowerShellvCD> get-civm -Org test | select Name, OrgVdc
Name OrgVdc
—- ——
Photon
Server-2019 test2
SRV-2016-T… test
SRV-2016-T…
SRV-2016-T…
SRV-2019-t…
Its that a bug in PowerCLI or documentation should have some more details about naming (I only noticed the length limit)?