InstancePool Constructors

Definition

Overloads

InstancePool()

Initializes a new instance of the InstancePool class.

InstancePool(String, String, Int32, String, String, String, String, IDictionary<String,String>, Sku)

Initializes a new instance of the InstancePool class.

InstancePool()

Initializes a new instance of the InstancePool class.

public InstancePool ();
Public Sub New ()

Applies to

InstancePool(String, String, Int32, String, String, String, String, IDictionary<String,String>, Sku)

Initializes a new instance of the InstancePool class.

public InstancePool (string location, string subnetId, int vCores, string licenseType, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.Sql.Models.Sku sku = default);
new Microsoft.Azure.Management.Sql.Models.InstancePool : string * string * int * string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Sql.Models.Sku -> Microsoft.Azure.Management.Sql.Models.InstancePool
Public Sub New (location As String, subnetId As String, vCores As Integer, licenseType As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional sku As Sku = Nothing)

Parameters

location
String

Resource location.

subnetId
String

Resource ID of the subnet to place this instance pool in.

vCores
Int32

Count of vCores belonging to this instance pool.

licenseType
String

The license type. Possible values are 'LicenseIncluded' (price for SQL license is included) and 'BasePrice' (without SQL license price). Possible values include: 'LicenseIncluded', 'BasePrice'

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

tags
IDictionary<String,String>

Resource tags.

sku
Sku

The name and tier of the SKU.

Applies to