We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issuing a GET to /api/v1/aaa/AuditRecords returns a list for MoDisplayNames but the PowerShell SDK returns an empty field for that property.
/api/v1/aaa/AuditRecords
MoDisplayNames
To Reproduce
Get-IntersightAaaAuditRecord | select ObjectMoid,MoDisplayNames -First 20
Version used Intersight.PowerShell 1.0.9.6484 PowerShell 7.2.4
Expected behavior I would expect to see something similar to what the API returns:
"MoDisplayNames": { "Name": [ "BT-ntp-policy" ] }
The text was updated successfully, but these errors were encountered:
This is an issue from SDK side. As workaround you can use below code snippet
$result = (Get-IntersightAaaAuditRecord -Json | ConvertFrom-Json).Results $result[0].MoDisplayName
Sorry, something went wrong.
No branches or pull requests
Issuing a GET to
/api/v1/aaa/AuditRecords
returns a list forMoDisplayNames
but the PowerShell SDK returns an empty field for that property.To Reproduce
Version used
Intersight.PowerShell 1.0.9.6484
PowerShell 7.2.4
Expected behavior
I would expect to see something similar to what the API returns:
The text was updated successfully, but these errors were encountered: