plugin-azure-server/src/main/kotlin/jetbrains/buildServer/clouds/azure/arm/types/AzureImageHandler.kt [19:30]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Suppress("UselessCallOnNotNull") override suspend fun checkImage(image: AzureCloudImage) = coroutineScope { val exceptions = ArrayList() val details = image.imageDetails details.checkSourceId(exceptions) details.checkRegion(exceptions) details.checkOsType(exceptions) details.checkNetworkId(exceptions) details.checkCustomTags(exceptions) details.checkResourceGroup(connector, exceptions) details.checkServiceExistence("Microsoft.Compute", connector, exceptions) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plugin-azure-server/src/main/kotlin/jetbrains/buildServer/clouds/azure/arm/types/AzureVhdHandler.kt [17:28]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Suppress("UselessCallOnNotNull") override suspend fun checkImage(image: AzureCloudImage) = coroutineScope { val exceptions = ArrayList() val details = image.imageDetails details.checkSourceId(exceptions) details.checkRegion(exceptions) details.checkOsType(exceptions) details.checkNetworkId(exceptions) details.checkCustomTags(exceptions) details.checkResourceGroup(connector, exceptions) details.checkServiceExistence("Microsoft.Compute", connector, exceptions) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -