SupportedCapabilities 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
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
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.
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
Azure SDK for .NET