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
Additional context
If we do add the JSON flag "New-IntersightHclCompatibilityStatus -Profile $profile -Json" we can see Intersight is returning something but the powershell cmdlet is not formatting it.
The text was updated successfully, but these errors were encountered:
there is issue while de-serializing the response when RequestType other than CheckCompatibility , we are looking into it, there is a work around for it
$jsonResult=New-IntersightHclCompatibilityStatus-Profile $profile-RequestType FillSupportedVersions -JSON
$psObj=$jsonResult[1] |ConvertFrom-Json# $jsonResult returns list of json string the index 0 i.e $jsonResult[0] of the list contains request json string and index 1 i.e $jsonResult[1] contains Response json string
Describe the bug
New-IntersightHclCompatibilityStatus Not Returning Any Output
To Reproduce
$firmware = Initialize-IntersightHclFirmware -FirmwareVersion "4.3(3a)"
$product = Initialize-IntersightHclProduct -Firmwares $firmware -Model "UCSC-MLOM-C40Q-03"
$profile = Initialize-IntersightHclHardwareCompatibilityProfile -ServerModel "UCSC-C220-M5SX" -ProcessorModel "Intel(R) Xeon(R) Silver 4108 CPU @ 1.80GHz" -OsVendor "VMware" -OsVersion "ESXi 6.7 U3" -UcsVersion "4.0(4b)" -VersionType "IMC" -Products $product
New-IntersightHclCompatibilityStatus -Profile $profile
Version used
Expected behavior
Objects to be available
Screenshots
N/A
Additional context
If we do add the JSON flag "New-IntersightHclCompatibilityStatus -Profile $profile -Json" we can see Intersight is returning something but the powershell cmdlet is not formatting it.
The text was updated successfully, but these errors were encountered: