| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System.Collections.Generic; |
| | | 9 | | |
| | | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Describes a Virtual Machine Scale Set VM Reimage Parameters. </summary> |
| | | 13 | | public partial class VirtualMachineScaleSetReimageParameters : VirtualMachineReimageParameters |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetReimageParameters. </summary> |
| | 4 | 16 | | public VirtualMachineScaleSetReimageParameters() |
| | | 17 | | { |
| | 4 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetReimageParameters. </summary> |
| | | 21 | | /// <param name="tempDisk"> Specifies whether to reimage temp disk. Default value: false. Note: This temp disk r |
| | | 22 | | /// <param name="instanceIds"> The virtual machine scale set instance ids. Omitting the virtual machine scale se |
| | 0 | 23 | | internal VirtualMachineScaleSetReimageParameters(bool? tempDisk, IList<string> instanceIds) : base(tempDisk) |
| | | 24 | | { |
| | 0 | 25 | | InstanceIds = instanceIds; |
| | 0 | 26 | | } |
| | | 27 | | |
| | | 28 | | /// <summary> The virtual machine scale set instance ids. Omitting the virtual machine scale set instance ids wi |
| | 20 | 29 | | public IList<string> InstanceIds { get; set; } |
| | | 30 | | } |
| | | 31 | | } |