SkuInformation 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
SkuInformation() |
Initializes a new instance of the SkuInformation class. |
SkuInformation(String, Nullable<SkuTier>, String, String, IList<String>, IList<SKUCapability>, IList<Restriction>) |
Initializes a new instance of the SkuInformation class. |
SkuInformation()
Initializes a new instance of the SkuInformation class.
public SkuInformation ();
Public Sub New ()
Applies to
SkuInformation(String, Nullable<SkuTier>, String, String, IList<String>, IList<SKUCapability>, IList<Restriction>)
Initializes a new instance of the SkuInformation class.
public SkuInformation (string name, Microsoft.Azure.Management.Storage.Models.SkuTier? tier = default, string resourceType = default, string kind = default, System.Collections.Generic.IList<string> locations = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.SKUCapability> capabilities = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.Restriction> restrictions = default);
new Microsoft.Azure.Management.Storage.Models.SkuInformation : string * Nullable<Microsoft.Azure.Management.Storage.Models.SkuTier> * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.SKUCapability> * System.Collections.Generic.IList<Microsoft.Azure.Management.Storage.Models.Restriction> -> Microsoft.Azure.Management.Storage.Models.SkuInformation
Public Sub New (name As String, Optional tier As Nullable(Of SkuTier) = Nothing, Optional resourceType As String = Nothing, Optional kind As String = Nothing, Optional locations As IList(Of String) = Nothing, Optional capabilities As IList(Of SKUCapability) = Nothing, Optional restrictions As IList(Of Restriction) = Nothing)
Parameters
- name
- String
Possible values include: 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
- resourceType
- String
The type of the resource, usually it is 'storageAccounts'.
- kind
- String
Indicates the type of storage account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage'
The set of locations that the SKU is available. This will be supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.).
- capabilities
- IList<SKUCapability>
The capability information in the specified SKU, including file encryption, network ACLs, change notification, etc.
- restrictions
- IList<Restriction>
The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.
Applies to
Azure SDK for .NET