Delen via


SupportedCapabilities Constructors

Definition

Overloads

SupportedCapabilities()

Initializes a new instance of the SupportedCapabilities class.

SupportedCapabilities(Nullable<Boolean>, String)

Initializes a new instance of the SupportedCapabilities class.

SupportedCapabilities(String, Nullable<Boolean>, String)

Initializes a new instance of the SupportedCapabilities class.

SupportedCapabilities()

Initializes a new instance of the SupportedCapabilities class.

public SupportedCapabilities ();
Public Sub New ()

Applies to

SupportedCapabilities(Nullable<Boolean>, String)

Initializes a new instance of the SupportedCapabilities class.

public SupportedCapabilities (bool? acceleratedNetwork, string architecture = default);
new Microsoft.Azure.Management.Compute.Models.SupportedCapabilities : Nullable<bool> * string -> Microsoft.Azure.Management.Compute.Models.SupportedCapabilities
Public Sub New (acceleratedNetwork As Nullable(Of Boolean), Optional architecture As String = Nothing)

Parameters

acceleratedNetwork
Nullable<Boolean>

True if the image from which the OS disk is created supports accelerated networking.

architecture
String

CPU architecture supported by an OS disk. Possible values include: 'x64', 'Arm64'

Applies to

SupportedCapabilities(String, Nullable<Boolean>, String)

Initializes a new instance of the SupportedCapabilities class.

public SupportedCapabilities (string diskControllerTypes = default, bool? acceleratedNetwork = default, string architecture = default);
new Microsoft.Azure.Management.Compute.Models.SupportedCapabilities : string * Nullable<bool> * string -> Microsoft.Azure.Management.Compute.Models.SupportedCapabilities
Public Sub New (Optional diskControllerTypes As String = Nothing, Optional acceleratedNetwork As Nullable(Of Boolean) = Nothing, Optional architecture As String = Nothing)

Parameters

diskControllerTypes
String

The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.

acceleratedNetwork
Nullable<Boolean>

True if the image from which the OS disk is created supports accelerated networking.

architecture
String

CPU architecture supported by an OS disk. Possible values include: 'x64', 'Arm64'

Applies to