/// <summary> /// Initializes a new instance of the GenericResourceExpanded class. /// </summary> /// <param name="plan">The plan of the resource.</param> /// <param name="properties">The resource properties.</param> /// <param name="kind">The kind of the resource.</param> /// <param name="managedBy">ID of the resource that manages this /// resource.</param> /// <param name="sku">The SKU of the resource.</param> /// <param name="identity">The identity of the resource.</param> /// <param name="extendedLocation">Resource extended location.</param> /// <param name="createdTime">The created time of the resource. This is /// only present if requested via the $expand query parameter.</param> /// <param name="changedTime">The changed time of the resource. This is /// only present if requested via the $expand query parameter.</param> /// <param name="provisioningState">The provisioning state of the /// resource. This is only present if requested via the $expand query /// parameter.</param> public GenericResourceExpanded(string location = default(string), string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), Plan plan = default(Plan), object properties = default(object), string kind = default(string), string managedBy = default(string), Sku sku = default(Sku), Identity identity = default(Identity), ExtendedLocation extendedLocation = default(ExtendedLocation), System.DateTime?createdTime = default(System.DateTime?), System.DateTime?changedTime = default(System.DateTime?), string provisioningState = default(string)) : base(location, id, name, type, tags, plan, properties, kind, managedBy, sku, identity, extendedLocation) { CreatedTime = createdTime; ChangedTime = changedTime; ProvisioningState = provisioningState; CustomInit(); }