Disk type is not correctly discovered in cloud discovery for azure resourcesIssue Disk type is not correctly discovered in cloud discovery for azure resources. It's discovered always as Blob by default.OS Disk: w5034_OsDisk_1_40bd3022a6b6497096420c54eeb521c4 is of the storage type: Premium SSD in azure but here it is different.Cause1) The method "ListVolumes" is responsible to gather the information of the Disk and Disk types in the Datacentre.2) Looking at the payload we received for ""w5034_OsDisk_1_40bd3022a6b6497096420c54eeb521c4""https://xxxx.service-now.com/sn_capi_api_trail_log.do?sys_id=0156e816db166014774149ee3b9619a8 "name": "w5034_OsDisk_1_40bd3022a6b6497096420c54eeb521c4", "id": "/subscriptions/975cb004-1125-425f-99eb-e0d4f56fb429/resourceGroups/so99-nonprod-rg/providers/Microsoft.Compute/disks/w5034_OsDisk_1_40bd3022a6b6497096420c54eeb521c4", "diskSizeGB": 215.0, "state": "Attached", "creationData": { "createOption": "FromImage", "imageReference": { "id": "/Subscriptions/975cb004-1125-425f-99eb-e0d4f56fb429/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.1217.2005081535" } }, "ownerId": "/subscriptions/975cb004-1125-425f-99eb-e0d4f56fb429/resourceGroups/so99-nonprod-rg/providers/Microsoft.Compute/virtualMachines/w5034", "resourceGroup": "/subscriptions/975cb004-1125-425f-99eb-e0d4f56fb429/resourcegroups/so99-nonprod-rg" }, { "accountType": "Premium_LRS", >>>>>>>>>>> Type=Premium_LRS "location": "westeurope", "tags": { "BillingIdentifier": "DC_AD_IN_PL_RO", "loganalytics": "true", "backuplevel": "gold", "schedule": "", "timezone": "UTC+1", "description": "so99 app iis test" }, 3. The Payload we are receiving has the Type available, the Discovery updating by default ""PageBlob""4. This is happening because, the Response Processor which is responsible to update the Type is hard Coded with "PageBlob". Below code snippet. }, "attributes": { "object_id": volumeId, "volume_id": volumeId, "name": volume.name, "total_size_gb":volume.diskSizeGB, "size_bytes":volume.diskSizeGB*1024*1024*1024, "storage_type":"PageBlob", >>>>>> "storage_type":"PageBlob" "state":state, "volume_type":volume.accountType, "assigned_to":reqContext.userId, "assignment_group":reqContext.groupId ResolutionTo resolve this issue, Need to modify the response processor code and now the "Storage Type" is updating as expected with the values, please refer to the attached screenshot, please refer to the below URL of "Northeurope" having the updated values https://xxxx.service-now.com/cmdb_ci_azure_datacenter.do?sysparm_tiny=5eca49e2db922814774149ee3b961944&sysparm_nostack=true below process if needed to implement in any other instances. 1. Log in to the instance 2. Navigator >> "sn_cmp_rb_resourcescript_list.do" >> Search and Select "Azure_List_Managed_Disk_Response_Processor" https://[instane name].service-now.com/sn_cmp_rb_resourcescript.do?sys_id=011e41040b3532003969a387b6673aae&sysparm_view=rbUiView 3. In the above script, change the line number 66. FROM "storage_type":"PageBlob", TO "storage_type":volume.accountType,4. Execute a Discovery and you will see theStorage Type updating as expected. Below screenshot for reference..