I am trying to create a custom image from a VHD which I uploaded to the devtest lab.
I am using the following code to do that:
from azure.mgmt.storage import StorageManagementClient
....
credentials = ServicePrincipalCredentials( client_id = '##', tenant = '##', secret = "##")
resource_client = DevTestLabsClient(credentials, subscriptID)
....
custom_image_properties = CustomImagePropertiesCustom(CustomImageOsType.windows, config.CustomImage.Name, True)
custom_image = CustomImage(vhd = custom_image_properties)
resource_client.custom_images.create_or_update(rgName,labName, imageName, custom_image)
It throws me the following error : Failed to parse URI named ImageName with value of '##customImageName##'.
Let me know what I am doing wrong? And where am I suppossed to enter the path to the VHD in the API. I cannot find any argument which takes the path!
According to the error message, it seems the
imagename
value is a URI.The image name should be a string.
More information please refer to this link.
By the way, to troubleshoot this issue more efficiency, could you please post your whole script:)