VirtualMachineScaleSetReimageParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VirtualMachineScaleSetReimageParameters() |
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class. |
VirtualMachineScaleSetReimageParameters(Nullable<Boolean>, IList<String>) |
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class. |
VirtualMachineScaleSetReimageParameters(Nullable<Boolean>, String, OSProfileProvisioningData, IList<String>) |
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class. |
VirtualMachineScaleSetReimageParameters()
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class.
public VirtualMachineScaleSetReimageParameters ();
Public Sub New ()
Applies to
VirtualMachineScaleSetReimageParameters(Nullable<Boolean>, IList<String>)
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class.
public VirtualMachineScaleSetReimageParameters (bool? tempDisk, System.Collections.Generic.IList<string> instanceIds);
new Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetReimageParameters : Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetReimageParameters
Public Sub New (tempDisk As Nullable(Of Boolean), instanceIds As IList(Of String))
Parameters
Specifies whether to reimage temp disk. Default value: false. Note: This temp disk reimage parameter is only supported for VM/VMSS with Ephemeral OS disk.
The virtual machine scale set instance ids. Omitting the virtual machine scale set instance ids will result in the operation being performed on all virtual machines in the virtual machine scale set.
Applies to
VirtualMachineScaleSetReimageParameters(Nullable<Boolean>, String, OSProfileProvisioningData, IList<String>)
Initializes a new instance of the VirtualMachineScaleSetReimageParameters class.
public VirtualMachineScaleSetReimageParameters (bool? tempDisk = default, string exactVersion = default, Microsoft.Azure.Management.Compute.Models.OSProfileProvisioningData osProfile = default, System.Collections.Generic.IList<string> instanceIds = default);
new Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetReimageParameters : Nullable<bool> * string * Microsoft.Azure.Management.Compute.Models.OSProfileProvisioningData * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetReimageParameters
Public Sub New (Optional tempDisk As Nullable(Of Boolean) = Nothing, Optional exactVersion As String = Nothing, Optional osProfile As OSProfileProvisioningData = Nothing, Optional instanceIds As IList(Of String) = Nothing)
Parameters
Specifies whether to reimage temp disk. Default value: false. Note: This temp disk reimage parameter is only supported for VM/VMSS with Ephemeral OS disk.
- exactVersion
- String
Specifies in decimal number, the version the OS disk should be reimaged to. If exact version is not provided, the OS disk is reimaged to the existing version of OS Disk.
- osProfile
- OSProfileProvisioningData
Specifies information required for reimaging the non-ephemeral OS disk.
The virtual machine scale set instance ids. Omitting the virtual machine scale set instance ids will result in the operation being performed on all virtual machines in the virtual machine scale set.
Applies to
Azure SDK for .NET