0

我没有找到任何设置 VM 生成的选项,默认情况下为 1,但我需要将其更改为
2。Azure 门户创建磁盘

Disk managedDisk = azure.disks().define("myosdisk") .withRegion(Region.US_EAST2) .withExistingResourceGroup("test") .withWindowsFromVhd ("https://abcd.blob.core.windows.net/vm/‘laptop_vm’.vhd") .withSizeInGB(500).withSku(DiskSkuTypes.PREMIUM_LRS).create();

4

2 回答 2

0

您可以使用hyperVGeneration设置功能。虚拟机的管理程序生成。仅适用于操作系统磁盘。可能的值包括:'V1'、'V2'

可能的电话withHyperVGeneration('V2');

查看azure-sdk-java实现以了解详细信息。

您需要导入mgmt.compute库。它可以在下面的 Maven 工件中找到。

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>azure-resourcemanager</artifactId>
  <version>2.5.0</version>
</dependency>

您可以如下调用磁盘创建

List<String> diskNames = Arrays.asList("myosdisk", "myosdisk2");
List<Creatable<Disk>> creatableDisks = diskNames.stream()
    .map(diskName -> azure.disks()
        .define(diskName)
        .withRegion(Region.US_EAST2)
        .withExistingResourceGroup("test")
        .withWindowsFromVhd ("https://abcd.blob.core.windows.net/vm/‘laptop_vm’.vhd")
        .withHyperVGeneration('V2')
        .withData()
        .withSizeInGB(500)
        .withSku(DiskSkuTypes.PREMIUM_LRS)
    .collect(Collectors.toList());
Collection<Disk> disks = azure.disks().create(creatableDisks).values();
azure.disks().deleteByIds(disks.stream().map(Disk::id).collect(Collectors.toList()));

可以在 Github Azure/azure-sdk-for-java存储库中找到更多信息。

于 2021-06-02T07:03:31.387 回答
0

这是我找到解决此问题的解决方法,创建磁盘后,我只是将磁盘更新为 HyperVGeneration.V2

Disk managedDisk = azure.disks().define("myosdisk")
.withRegion(Region.US_EAST2)
.withExistingResourceGroup("umbc")
.withWindowsFromVhd("https://abcd.blob.core.windows.net
/vmimages/‘laptop_vm’.vhd")
.withStorageAccountName("abcd")
.withSku(DiskSkuTypes.PREMIUM_LRS)
.create();
            
             
managedDisk.inner().withHyperVGeneration(HyperVGeneration.V2);
managedDisk.update().apply();
于 2021-06-03T10:59:54.420 回答