NetworkInterfaceReference 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
NetworkInterfaceReference() |
Initializes a new instance of the NetworkInterfaceReference class. |
NetworkInterfaceReference(Nullable<Boolean>, String) |
Initializes a new instance of the NetworkInterfaceReference class. |
NetworkInterfaceReference(String, Nullable<Boolean>, String) |
Initializes a new instance of the NetworkInterfaceReference class. |
NetworkInterfaceReference()
Initializes a new instance of the NetworkInterfaceReference class.
public NetworkInterfaceReference ();
Public Sub New ()
Applies to
NetworkInterfaceReference(Nullable<Boolean>, String)
Initializes a new instance of the NetworkInterfaceReference class.
public NetworkInterfaceReference (bool? primary = default, string deleteOption = default);
new Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference : Nullable<bool> * string -> Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference
Public Sub New (Optional primary As Nullable(Of Boolean) = Nothing, Optional deleteOption As String = Nothing)
Parameters
Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption
- String
Specify what happens to the network interface when the VM is deleted. Possible values include: 'Delete', 'Detach'
Applies to
NetworkInterfaceReference(String, Nullable<Boolean>, String)
Initializes a new instance of the NetworkInterfaceReference class.
public NetworkInterfaceReference (string id = default, bool? primary = default, string deleteOption = default);
new Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference : string * Nullable<bool> * string -> Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference
Public Sub New (Optional id As String = Nothing, Optional primary As Nullable(Of Boolean) = Nothing, Optional deleteOption As String = Nothing)
Parameters
- id
- String
Resource Id
Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption
- String
Specify what happens to the network interface when the VM is deleted. Possible values include: 'Delete', 'Detach'
Applies to
Azure SDK for .NET