msgraph-sdk-powershell icon indicating copy to clipboard operation
msgraph-sdk-powershell copied to clipboard

Cmdlets should support both flattened and nested objects as parameters

Open peombwa opened this issue 4 years ago • 0 comments

Cmdlets should support both nested and flattened parameters. e.g.,

Flattened parameters (not supported)

New-MgApplication -WebRedirectUris = "MY_URI"

Nested parameters (currently supported)

New-MgApplication -Web @{ RedirectUris = "MY_URI" }

AB#10467

peombwa avatar Aug 02 '21 22:08 peombwa