You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the command meraki -ddd organizations createOrganizationNetwork --organizationId xxxxxxxxx --name "Meraki-CLI Network" --productTypes appliance switch will only pass the first --productTypes argument value (appliance) instead of accepting multiple.
When building the argument, we should use something like nargs='+' to automatically create the list expected by the function.
The text was updated successfully, but these errors were encountered:
Currently, the command
meraki -ddd organizations createOrganizationNetwork --organizationId xxxxxxxxx --name "Meraki-CLI Network" --productTypes appliance switch
will only pass the first--productTypes
argument value (appliance
) instead of accepting multiple.When building the argument, we should use something like
nargs='+'
to automatically create the list expected by the function.The text was updated successfully, but these errors were encountered: