Udostępnij za pośrednictwem


ServiceSku Constructors

Definition

Overloads

ServiceSku()

Initializes a new instance of the ServiceSku class.

ServiceSku(String, String, String, String, Nullable<Int32>)

Initializes a new instance of the ServiceSku class.

ServiceSku()

Initializes a new instance of the ServiceSku class.

public ServiceSku ();
Public Sub New ()

Applies to

ServiceSku(String, String, String, String, Nullable<Int32>)

Initializes a new instance of the ServiceSku class.

public ServiceSku (string name = default, string tier = default, string family = default, string size = default, int? capacity = default);
new Microsoft.Azure.Management.DataMigration.Models.ServiceSku : string * string * string * string * Nullable<int> -> Microsoft.Azure.Management.DataMigration.Models.ServiceSku
Public Sub New (Optional name As String = Nothing, Optional tier As String = Nothing, Optional family As String = Nothing, Optional size As String = Nothing, Optional capacity As Nullable(Of Integer) = Nothing)

Parameters

name
String

The unique name of the SKU, such as 'P3'

tier
String

The tier of the SKU, such as 'Basic', 'General Purpose', or 'Business Critical'

family
String

The SKU family, used when the service has multiple performance classes within a tier, such as 'A', 'D', etc. for virtual machines

size
String

The size of the SKU, used when the name alone does not denote a service size or when a SKU has multiple performance classes within a family, e.g. 'A1' for virtual machines

capacity
Nullable<Int32>

The capacity of the SKU, if it supports scaling

Applies to