0

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

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

我收到错误消息 - “ForbiddenError:此订阅不允许此操作。”

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)

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

4

1 回答 1

-1

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

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

任何建议将不胜感激。

于 2015-10-31T06:02:43.510 回答