我正在尝试使用.Net的Azure管理SDK为我已创建但未找到方法的专用VM映像指定custom data。
CustomData
似乎WindowsProvisioningConfiguration
是LinuxProvisioningConfiguration
或Microsoft.WindowsAzure.Management.Compute.Models.Role
的一部分。但它也在 // Summary:
// Optional. Optional. The name of the VMImage from which this Role is to be
// created. If the OSDisk in the VMImage was Specialized, then no WindowsProvisioningConfigurationSet
// or LinuxProvisioningConfigurationSet should be provided. No OSVirtualHardDisk
// or DataVirtualHardDisk should be specified when using this argument.
public string VMImageName { get; set; }
中指定了
{{1}}
我不想使用通用的VM映像,因为我发现使用Sysprep后会丢失一些配置,所以我想尽可能使用专门的VM映像。有没有办法为专门的VM映像设置自定义数据?