| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.ResourceManager.Compute.Models |
| | 9 | | { |
| | 10 | | /// <summary> Parameters for Reimaging Virtual Machine. NOTE: Virtual Machine OS disk will always be reimaged. </sum |
| | 11 | | public partial class VirtualMachineReimageParameters |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of VirtualMachineReimageParameters. </summary> |
| 4 | 14 | | public VirtualMachineReimageParameters() |
| | 15 | | { |
| 4 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of VirtualMachineReimageParameters. </summary> |
| | 19 | | /// <param name="tempDisk"> Specifies whether to reimage temp disk. Default value: false. Note: This temp disk r |
| 0 | 20 | | internal VirtualMachineReimageParameters(bool? tempDisk) |
| | 21 | | { |
| 0 | 22 | | TempDisk = tempDisk; |
| 0 | 23 | | } |
| | 24 | |
|
| | 25 | | /// <summary> Specifies whether to reimage temp disk. Default value: false. Note: This temp disk reimage paramet |
| 0 | 26 | | public bool? TempDisk { get; set; } |
| | 27 | | } |
| | 28 | | } |