IotHubSkuInfo 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
IotHubSkuInfo() |
Initializes a new instance of the IotHubSkuInfo class. |
IotHubSkuInfo(String, Nullable<IotHubSkuTier>, Nullable<Int64>) |
Initializes a new instance of the IotHubSkuInfo class. |
IotHubSkuInfo()
Initializes a new instance of the IotHubSkuInfo class.
public IotHubSkuInfo ();
Public Sub New ()
Applies to
IotHubSkuInfo(String, Nullable<IotHubSkuTier>, Nullable<Int64>)
Initializes a new instance of the IotHubSkuInfo class.
public IotHubSkuInfo (string name, Microsoft.Azure.Management.IotHub.Models.IotHubSkuTier? tier = default, long? capacity = default);
new Microsoft.Azure.Management.IotHub.Models.IotHubSkuInfo : string * Nullable<Microsoft.Azure.Management.IotHub.Models.IotHubSkuTier> * Nullable<int64> -> Microsoft.Azure.Management.IotHub.Models.IotHubSkuInfo
Public Sub New (name As String, Optional tier As Nullable(Of IotHubSkuTier) = Nothing, Optional capacity As Nullable(Of Long) = Nothing)
Parameters
- name
- String
The name of the SKU. Possible values include: 'F1', 'S1', 'S2', 'S3', 'B1', 'B2', 'B3'
- tier
- Nullable<IotHubSkuTier>
The billing tier for the IoT hub. Possible values include: 'Free', 'Standard', 'Basic'
The number of provisioned IoT Hub units. See: https://docs.microsoft.com/azure/azure-subscription-service-limits#iot-hub-limits.
Applies to
Azure SDK for .NET