Hi
Hi can I know which parameters are required when creating entity with "New-SwisObject"
For example, how can I know this is fine:
New-SwisObject $swis -EntityType 'IPAM.Subnet' -Properties @{Address="10.195.0.0"; CIDR="16";}And also this line is fine:
New-SwisObject $swis -EntityType 'IPAM.Subnet' -Properties @{Address="10.194.0.0"; CIDR="16"; ParentID="7714";}But the following line returns an error:
New-SwisObject $swis -EntityType 'IPAM.Subnet' -Properties @{Address="10.196.0.0";}Is there any documentation for required\optional parameters for each entity?
*I checked the SWQL Studio and cannot find any clues there.