/// <summary> /// Initializes a new instance of the IotHubSkuDescription class. /// </summary> /// <param name="sku">The type of the resource.</param> /// <param name="capacity">IotHub capacity</param> /// <param name="resourceType">The type of the resource.</param> public IotHubSkuDescription(IotHubSkuInfo sku, IotHubCapacity capacity, string resourceType = default(string)) { ResourceType = resourceType; Sku = sku; Capacity = capacity; CustomInit(); }
/// <summary> /// Initializes a new instance of the IotHubSkuDescription class. /// </summary> public IotHubSkuDescription(string resourceType = default(string), IotHubSkuInfo sku = default(IotHubSkuInfo), IotHubCapacity capacity = default(IotHubCapacity)) { ResourceType = resourceType; Sku = sku; Capacity = capacity; }