ResourceSku Constructors

Definition

Overloads

ResourceSku()

Initializes a new instance of the ResourceSku class.

ResourceSku(String, IList<ResourceSkuCapabilities>, IList<String>, IList<ResourceSkuLocationInfo>, String, IList<Restriction>)

Initializes a new instance of the ResourceSku class.

ResourceSku()

Initializes a new instance of the ResourceSku class.

public ResourceSku ();
Public Sub New ()

Applies to

ResourceSku(String, IList<ResourceSkuCapabilities>, IList<String>, IList<ResourceSkuLocationInfo>, String, IList<Restriction>)

Initializes a new instance of the ResourceSku class.

public ResourceSku (string resourceType = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.ResourceSkuCapabilities> capabilities = default, System.Collections.Generic.IList<string> locations = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.ResourceSkuLocationInfo> locationInfo = default, string name = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.Restriction> restrictions = default);
new Microsoft.Azure.Management.StorageCache.Models.ResourceSku : string * System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.ResourceSkuCapabilities> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.ResourceSkuLocationInfo> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.StorageCache.Models.Restriction> -> Microsoft.Azure.Management.StorageCache.Models.ResourceSku
Public Sub New (Optional resourceType As String = Nothing, Optional capabilities As IList(Of ResourceSkuCapabilities) = Nothing, Optional locations As IList(Of String) = Nothing, Optional locationInfo As IList(Of ResourceSkuLocationInfo) = Nothing, Optional name As String = Nothing, Optional restrictions As IList(Of Restriction) = Nothing)

Parameters

resourceType
String

The type of resource the SKU applies to.

capabilities
IList<ResourceSkuCapabilities>

A list of capabilities of this SKU, such as throughput or ops/sec.

locations
IList<String>

The set of locations where the SKU is available. This is the supported and registered Azure Geo Regions (e.g., West US, East US, Southeast Asia, etc.).

locationInfo
IList<ResourceSkuLocationInfo>

The set of locations where the SKU is available.

name
String

The name of this SKU.

restrictions
IList<Restriction>

The restrictions preventing this SKU from being used. This is empty if there are no restrictions.

Applies to