Azure Service Management - "ForbiddenError: This operation is not allowed for this subscription."



我试图使用以下方式从getVirtualMachineVMImagesOperation检索操作系统数据。

ComputeManagementClient computeManagementClient = ComputeManagementService.create(config);
    System.out.println("OS Type"+computeManagementClient.getVirtualMachineVMImagesOperations().getDetails("WindowsRemoteServer").getOSDiskConfiguration().getOperatingSystem());

我得到了错误-"禁止错误:此订阅不允许此操作。"

Exception in thread "main" com.microsoft.windowsazure.exception.ServiceException: ForbiddenError: This operation is not allowed for this subscription.
    at com.microsoft.windowsazure.exception.ServiceException.createFromXml(ServiceException.java:208)
    at com.microsoft.windowsazure.management.compute.VirtualMachineVMImageOperationsImpl.getDetails(VirtualMachineVMImageOperationsImpl.java:1115)
    at com.microsoft.azure.auth.Program.main(Program.java:63)

看起来是某种权限错误。请分享你克服这个错误的想法。

我从下面得到了操作系统。但它仍然显示"ForbiddenError:此订阅不允许此操作。"当我尝试使用VirtualMachineVMImageOperations类时。

System.out.println("OS Type"+computeManagementClient.getVirtualMachinesOperations().get("WindowsRemoteServer", "WindowsRemoteServer", "WindowsRemoteServer").getOSVirtualHardDisk().getOperatingSystem());

任何建议都将不胜感激。

相关内容

最新更新