/// <summary>
 /// Initializes a new instance of the IotHubSkuDescription class.
 /// </summary>
 /// <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 IotHubDescriptionInner class.
 /// </summary>
 /// <param name="subscriptionid">The subscription identifier.</param>
 /// <param name="resourcegroup">The name of the resource group that
 /// contains the IoT hub. A resource group name uniquely identifies the
 /// resource group within the subscription.</param>
 /// <param name="etag">The Etag field is *not* required. If it is
 /// provided in the response body, it must also be provided as a header
 /// per the normal ETag convention.</param>
 public IotHubDescriptionInner(string subscriptionid, string resourcegroup, IotHubSkuInfo sku, string location = default(string), string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string etag = default(string), IotHubProperties properties = default(IotHubProperties))
     : base(location, id, name, type, tags)
 {
     Subscriptionid = subscriptionid;
     Resourcegroup  = resourcegroup;
     Etag           = etag;
     Properties     = properties;
     Sku            = sku;
     CustomInit();
 }